jeeves-meta-monorepo
    Preparing search index...

    Interface MetaContext

    Context package for a single synthesis cycle.

    The orchestrator computes this once per cycle from the meta path, ownership tree, watcher walk results, and filesystem reads.

    interface MetaContext {
        archives: string[];
        childMetas: Record<string, unknown>;
        crossRefMetas: Record<string, unknown>;
        deltaFiles: string[];
        path: string;
        previousContent: string | null;
        previousFeedback: string | null;
        previousState: unknown;
        scopeFiles: string[];
        steer: string | null;
    }
    Index

    Properties

    archives: string[]

    Archive snapshot file paths (for steer change detection, etc.).

    childMetas: Record<string, unknown>

    Child _content outputs, keyed by relative path.

    crossRefMetas: Record<string, unknown>

    Cross-referenced meta _content outputs, keyed by owner path.

    deltaFiles: string[]

    Files changed since _generatedAt (absolute paths).

    path: string

    Absolute path to the .meta directory.

    previousContent: string | null

    _content from the last cycle, or null on first run.

    previousFeedback: string | null

    _feedback from the last cycle, or null on first run.

    previousState: unknown

    _state from the last cycle, or null on first run.

    scopeFiles: string[]

    All files in scope (absolute paths).

    steer: string | null

    Current _steer value, or null if unset.