jeeves-meta-monorepo
    Preparing search index...

    Interface MetaNode

    A discovered meta node in the ownership tree.

    interface MetaNode {
        children: MetaNode[];
        metaPath: string;
        ownerPath: string;
        parent: MetaNode | null;
        treeDepth: number;
    }
    Index

    Properties

    children: MetaNode[]

    Child meta nodes (subtrees with their own .meta/).

    metaPath: string

    Absolute path to the .meta directory.

    ownerPath: string

    Absolute path to the parent directory that this meta owns.

    parent: MetaNode | null

    Parent meta node, or null for roots.

    treeDepth: number

    Depth in the ownership tree (root = 0).