jeeves-meta-monorepo
    Preparing search index...

    Interface OrchestratePhaseResult

    Result of a single phase-aware orchestration tick.

    interface OrchestratePhaseResult {
        cycleComplete?: boolean;
        executed: boolean;
        metaPath?: string;
        phase?: "architect" | "builder" | "critic";
        phaseResult?: PhaseResult;
    }
    Index

    Properties

    cycleComplete?: boolean

    Whether a full synthesis cycle completed (all phases fresh).

    executed: boolean

    Whether a phase was executed.

    metaPath?: string

    Path to the meta that was selected.

    phase?: "architect" | "builder" | "critic"

    Which phase was run.

    phaseResult?: PhaseResult

    The phase result (if executed).