jeeves-meta-monorepo
    Preparing search index...

    Interface MetaExecutor

    Interface for spawning synthesis subprocesses.

    The executor abstracts the LLM invocation mechanism. The orchestrator calls spawn() sequentially for architect, builder, and critic steps. Each call blocks until the subprocess completes and returns its result.

    interface MetaExecutor {
        aborted?: boolean;
        spawn(task: string, options?: MetaSpawnOptions): Promise<MetaSpawnResult>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    aborted?: boolean

    Whether the executor has been aborted by the operator. When true, runPhase catch blocks should skip persisting _error because the abort route has already written the correct state.

    Methods