Factory for creating IOrchestrator instances.
Provides a unified entry point for all orchestration strategies:
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/...' }); Copy
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/...' });
Optional
Create an orchestrator instance.
Orchestrator type
New orchestrator instance
List available orchestrator types.
Factory for creating IOrchestrator instances.
Provides a unified entry point for all orchestration strategies:
Example