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 {
        spawn(
            task: string,
            options?: MetaSpawnOptions,
        ): Promise<MetaSpawnResult>;
    }

    Implemented by

    Index

    Methods

    Methods