jeeves-meta-monorepo
    Preparing search index...

    Interface OrchestrateResult

    Result of a single orchestration cycle.

    interface OrchestrateResult {
        error?: {
            code: string;
            message: string;
            step: "architect" | "builder" | "critic";
        };
        metaPath?: string;
        synthesized: boolean;
    }
    Index

    Properties

    error?: {
        code: string;
        message: string;
        step: "architect" | "builder" | "critic";
    }

    Error if synthesis failed.

    Type Declaration

    • code: string

      Error classification code.

    • message: string

      Human-readable error message.

    • step: "architect" | "builder" | "critic"

      Which step failed: 'architect', 'builder', or 'critic'.

    metaPath?: string

    Path to the meta that was synthesized, if any.

    synthesized: boolean

    Whether a synthesis was performed.