Agent Skills
› iii-experimental/agentos
› orchestrate
orchestrate
GitHub该技能用于利用 AgentOS 编排器分解复杂任务,通过规划、执行和状态监控接口协调多智能体工作流,自动派生子任务并监控进度。
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


