一键导入
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.