Agent Skills
› iii-experimental/agentos
› tasks
tasks
GitHub提供任务分解、列表管理、状态更新及子任务生成等功能的技能,用于将复杂特性拆解为子任务并协调执行。
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


