Agent Skills
› iii-experimental/agentos
› orchestrate
orchestrate
GitHub利用 AgentOS 编排器分解复杂任务,通过计划、执行和状态监控接口协调多智能体协作,自动拆分子任务并派发生成工作节点以完成整体目标。
触发场景
需要分解复杂功能或任务
协调多个智能体协同工作
安装
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.
版本历史
- caca2b4 当前 2026-07-25 09:41


