원클릭으로
orchestrate
Plan and execute multi-agent work — decompose features, spawn workers, monitor progress
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Plan and execute multi-agent work — decompose features, spawn workers, monitor progress
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create, test, and improve functions at runtime — agents write their own code
Session lifecycle management — transitions, state tracking, reactions
Persistent agent memory — store, recall, search across sessions
Scan agent health and auto-recover stale or dead sessions
Security scanning — injection detection, capability checks, audit trails
Multi-agent swarm coordination — create swarms, broadcast tasks, reach consensus
| name | orchestrate |
| description | Plan and execute multi-agent work — decompose features, spawn workers, monitor progress |
| toolScope | ["Bash","Read","Write","Agent"] |
| effort | extended |
Use AgentOS orchestrator to break down complex tasks:
curl -X POST http://localhost:3111/api/orchestrator/plan -H 'Content-Type: application/json' -d '{"description": "<task>"}'curl -X POST http://localhost:3111/api/orchestrator/execute -H 'Content-Type: application/json' -d '{"planId": "<id>"}'curl -X POST http://localhost:3111/api/orchestrator/status -H 'Content-Type: application/json' -d '{"planId": "<id>"}'The orchestrator decomposes tasks into subtasks with hierarchical IDs, spawns workers for each leaf task, and monitors progress with lifecycle reactions.