nexus-agents - v2.80.0
    Preparing search index...

    Class OrchestratorFactory

    Factory for creating IOrchestrator instances.

    Provides a unified entry point for all orchestration strategies:

    • workflow: Static template-based execution
    • tech_lead: LLM-based task decomposition and orchestration (OrchestratorAdapter)
    • puppeteer: Policy-based step execution (PuppeteerAdapter)
    const factory = await createOrchestratorFactory();
    const orchestrator = factory.create('workflow');

    const result = await orchestrator.execute(
    { type: 'workflow', templatePath: './templates/code-review.yaml' },
    { url: 'https://github.com/...' }
    );

    Implements

    Index

    Constructors

    Methods

    Constructors

    Methods