Adaptive Orchestrator
Adaptive Orchestrator. 이 페이지는 Commander 아키텍처 구성 요소를 설명합니다. monorepo 구조에 맞춘 한국어 운영 문서이며, 코드 블록은 영어 그대로입니다.
제품 지표: 25 프로바이더 · 5 토폴로지 · 18 tools · 6700+ 테스트.
CLI monorepo: npx tsx packages/core/src/cliEntry.ts · 빌드 후: commander
주요 내용
Types
운영 시 Types 는 품질 게이트·DLQ·서킷 브레이커와 함께 씁니다. 소스는 monorepo, 전체 명세는 영문 레퍼런스를 보세요.
API
운영 시 API 는 품질 게이트·DLQ·서킷 브레이커와 함께 씁니다. 소스는 monorepo, 전체 명세는 영문 레퍼런스를 보세요.
예제 (코드는 영어 유지)
typescript
interface Agent {
id: string;
name: string;
role: string;
capabilities: string[];
load: number; // 0-1
successRate: number; // 0-1
isAvailable: boolean;
}
interface OrchestrationPlan {
id: string;
mode: OrchestrationMode;
tasks: Task[];
agents: Agent[];
resourceAllocation: ResourceAllocation;
estimatedDuration: number;
}
interface ResourceAllocation {
leadAgentId?: string;
specialistAgentIds: string[];
maxConcurrent: number;
tokenBudget: {
lead: number;
specialists: number;
evaluation: number;
overhead: number;
};
}typescript
const orchestrator = new AdaptiveOrchestrator();
// Register agents
const agentId = orchestrator.registerAgent(
agent: Omit<Agent, 'load' | 'successRate' | 'isAvailable'>
): string;
// Create plan
const plan = orchestrator.createPlan(
tasks: Task[],
suggestedMode?: OrchestrationMode
): OrchestrationPlan;
// Execute plan
const results = await orchestrator.execute(plan): Map<string, Task>;
// Get metrics
const metrics = orchestrator.getMetrics(): ExecutionMetrics;
// Adapt plan based on metrics
const adaptedPlan = orchestrator.adapt(plan: OrchestrationPlan): OrchestrationPlan;운영
bash
npx tsx packages/core/src/cliEntry.ts doctor
npx tsx packages/core/src/cliEntry.ts status
curl -s http://localhost:4000/health/detailed || true