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


