Agent Skills
› iii-experimental/agentos
› orchestrate
orchestrate
GitHub用于规划和执行多智能体协作任务。通过分解复杂需求、生成子任务、启动工作节点并监控进度,实现自动化工作流编排。
Trigger Scenarios
需要分解复杂功能或任务
需要协调多个智能体协同工作
需要监控多步骤任务的执行状态
Install
npx skills add iii-experimental/agentos --skill orchestrate -g -y
SKILL.md
Frontmatter
{
"name": "orchestrate",
"effort": "extended",
"toolScope": [
"Bash",
"Read",
"Write",
"Agent"
],
"description": "Plan and execute multi-agent work — decompose features, spawn workers, monitor progress"
}
Use AgentOS orchestrator to break down complex tasks:
- Plan:
curl -X POST http://localhost:3111/api/orchestrator/plan -H 'Content-Type: application/json' -d '{"description": "<task>"}' - Execute:
curl -X POST http://localhost:3111/api/orchestrator/execute -H 'Content-Type: application/json' -d '{"planId": "<id>"}' - Status:
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.
Version History
- caca2b4 Current 2026-07-25 09:41


