Agent Skills
› iii-experimental/agentos
› tasks
tasks
GitHub用于任务分解、分配工人和跟踪进度,支持将功能拆解为子任务并通过API进行状态更新和调度。
触发场景
需要将大型功能拆分为子任务
需要分配工作给多个代理或工人
需要跟踪任务执行进度
安装
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>"}'
版本历史
- caca2b4 当前 2026-07-25 09:41


