Agent Skills
› iii-experimental/agentos
› tasks
tasks
GitHub用于任务分解、子任务分配及进度跟踪的 Skill,支持将功能拆解为子任务并生成 Worker。
Trigger Scenarios
需要分解复杂功能
分配子任务给代理
跟踪任务进度
Install
npx skills add iii-experimental/agentos --skill tasks -g -y
SKILL.md
Frontmatter
{
"name": "tasks",
"effort": "normal",
"toolScope": [
"Bash",
"Read",
"Write"
],
"description": "Task decomposition — break features into subtasks, assign workers, track progress"
}
Task management:
- Decompose:
curl -X POST http://localhost:3111/api/tasks/decompose -H 'Content-Type: application/json' -d '{"description": "<feature>", "maxDepth": 3}' - List:
curl http://localhost:3111/api/tasks/list?agentId=claude-code - Update:
curl -X POST http://localhost:3111/api/tasks/update -H 'Content-Type: application/json' -d '{"taskId": "<id>", "status": "completed"}' - Spawn workers:
curl -X POST http://localhost:3111/api/tasks/spawn -H 'Content-Type: application/json' -d '{"taskId": "<id>"}'
Version History
- caca2b4 Current 2026-07-25 09:41


