一键导入
task-orchestrator
Autonomous agent loop for executing, validating, and completing tasks. Handles state transitions, subtask management, and review cycles.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Autonomous agent loop for executing, validating, and completing tasks. Handles state transitions, subtask management, and review cycles.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Product Manager agent. Manages requirements lifecycle: Capture -> Refine -> Version -> Task Generation.
Expert code review agent. Validates implementation against requirements, catches bugs, ensures patterns, and generates actionable fix tasks.
AI-powered task management CLI for project initialization, PRD parsing, task breakdown, and execution with multi-provider AI support
| name | task-orchestrator |
| description | Autonomous agent loop for executing, validating, and completing tasks. Handles state transitions, subtask management, and review cycles. |
Goal: Drive tasks from todo to completed with strict quality gates.
in-progress when starting).Find work and lock it.
# Find next task
npx task-o-matic tasks get-next --status todo
# Set status (replace <ID> with the ID found above)
npx task-o-matic tasks status --id <ID> --status in-progress
# Load Context (Check for prdFile/prdRequirement)
npx task-o-matic tasks show --id <ID>
Perform the work. Use available tools (opencode, edit, bash).
If task is complex, split it: npx task-o-matic tasks split --id $TASK_ID
Run project-specific checks.
# Example validation cycle
bun run check-types && bun run build && bun test
Triggers code-reviewer skill if validation passes.
If Review Fails: Create fix subtasks.
npx task-o-matic tasks create --parent-id $TASK_ID --title "Fix: <issue>" --effort small
Loop back to Step 1 for the fix subtask.
If Review Passes: Proceed to completion.
Only when:
npx task-o-matic tasks status --id $TASK_ID --status completed
scripts/check-status.sh <id>: View task status and subtask tree.