Invoked as /agiflow:run-work. In hosts without slash-prompts, this skill is triggered by matching intent and drives AgiFlow via its MCP tools.
Usage:
/agiflow:run-work <work-unit-slug-or-id> - Execute specific work unit
/agiflow:run-work - List and select from available work units
Examples:
/agiflow:run-work DXX-WU-1 (using slug)
/agiflow:run-work 01K8FABMNEJG1XTA9JGHSNFV40 (using ID)
/agiflow:run-work (interactive selection)
Guardrails
- Favor straightforward, minimal implementations first and add complexity only when it is requested or clearly required.
- Keep changes tightly scoped to the requested outcome within the work unit scope.
- A work unit represents a cohesive feature/epic that can be completed in one Claude Code session.
If a work unit slug/id is provided, load it with get_work_unit; otherwise list available work units with list_work_units for selection.
AgiFlow Project Management Guidelines
Follow the shared AgiFlow project-management guidelines in references/agiflow-agents.md — agent assignment, the task status workflow and transitions, work-unit best practices, and the tags strategy apply to this workflow.
Task Status Workflow (per task)
Each task moves individually through: Todo → In Progress → Testing → Review
The work unit stays in_progress until all tasks reach Review or Done.
If any task hits Blocked, consider setting the work unit to blocked too.
IMPORTANT: Planning Status Guard
This skill ONLY executes tasks in "Todo" or later status. Tasks in "Planning" have NOT been groomed and are NOT ready for execution. Use backlog-grooming to promote Planning tasks to Todo first.
Steps
Track these steps as TODOs and complete them one by one.
1. Work Unit Selection & Loading
If work unit slug/id NOT provided:
- Use
list_work_units MCP tool to show available work units:
- Filter by
status: "in_progress" for active work, or work units with tasks in "Todo"
- Do NOT pick up work units where all tasks are still in "Planning" status
- Display: slug, title, type, priority, task count, status
- Ask user to select which work unit to work on.
- Once user selects, proceed with the selected work unit slug/id.
If work unit slug/id IS provided: 4. Use get_work_unit MCP tool with the provided slug/id to retrieve:
- Work unit: title, description, goals, type, priority, status, dates, devInfo
- Tasks: All tasks associated with this work unit (already included in response)
- Note:
get_work_unit returns tasks automatically - no separate list_tasks call needed
- Review the work unit and all its tasks to understand:
- Complete feature scope and deliverables
- Task dependencies and execution order
- Acceptance criteria across all tasks
5b. PLANNING STATUS GUARD (MANDATORY):
- Check all tasks in the work unit
- If ANY task has status "Planning": REFUSE to execute
- Report: "Cannot execute: N task(s) are still in Planning status. Use backlog-grooming to promote them to Todo first."
- List the Planning tasks by title
- STOP execution — do not proceed
2. Start Work Unit Execution
- If work unit status is "planning":
- First verify ALL tasks are in "Todo" or later status (not "Planning")
- If verified, use
update_work_unit MCP tool to set status to "in_progress"
- If any tasks are in "Planning", REFUSE and suggest
backlog-grooming
- Create a TODO list of all tasks in execution order (use TodoWrite tool).
- Document execution plan in work unit via
update_work_unit devInfo:devInfo: {
executionPlan: "Backend API → Frontend UI → Tests → Documentation",
sessionId: "<current-session-id>",
startedAt: "<timestamp>"
}
3. Execute Tasks Sequentially
For each task in the work unit (in dependency order from the tasks array):
- Review task details: title, description, acceptance criteria, assignee
- Use
update_task MCP tool to set status to "In Progress"
- BEFORE editing any code: Use
architect MCP get_file_design_pattern (MANDATORY)
- Implement the task following acceptance criteria
- AFTER editing code: Use
architect MCP review_code_change (MANDATORY)
- Update task
devInfo with implementation notes:devInfo: {
filesChanged: ["path/to/file.ts:42"],
testResults: { passed: true, coverage: "85%" },
notes: "Implementation notes here"
}
- Mark acceptance criteria as checked via
update_task
Testing phase for each task:
Use update_task to move status to "Testing"
Run unit tests, integration tests, type check and lint for affected code
If tests PASS: proceed to move task to "Review"
If tests FAIL:
- Increment
retryCount in devInfo
- If
retryCount >= maxRetries (default: 2): move task to "Blocked", set work unit to "blocked", stop
- If
retryCount < maxRetries: move task back to "Todo", document failure, continue to next task or stop session
Use update_task to set status to "Review" when tests pass
Update your TODO list (mark task as completed)
Between tasks:
- Commit changes with meaningful commit messages
- Run tests to ensure no regressions
- Update work unit progress in devInfo
4. Work Unit Progress Tracking
The work unit tasks array automatically updates as tasks are completed.
- Use
get_work_unit to check current state and task statuses
- Track: How many tasks in Review or Done vs. total?
- Monitor: Are we on track for target date?
- Work unit stays
in_progress until all tasks reach Review or Done
Update work unit devInfo as you progress via update_work_unit:
devInfo: {
executionPlan: "...",
sessionId: "<session-id>",
startedAt: "<timestamp>",
progress: {
completedTasks: 3,
totalTasks: 8,
lastTaskCompleted: "Implement cart API",
currentTask: "Add cart UI component"
},
testResults: {
unitTests: "passing",
integrationTests: "passing",
coverage: "85%"
},
blockers: [] // or list any blockers encountered
}
5. Work Unit Completion
When ALL tasks in work unit are in "Review" or "Done":
- Verify all tasks have status "Review" or "Done"
- Verify all acceptance criteria across all tasks are met
- Run full test suite for the feature
- Review all files changed (use git diff)
Draft a PR description for the work unit (DO NOT create the PR yet - just draft the text):
- Title format:
[WORK-UNIT-SLUG] Work unit title (e.g., [DXX-WU-1] Shopping cart feature)
- Body should include:
- Work unit reference and summary
- List of tasks completed
- Summary of all changes across tasks
- Files modified (use
file.ts:42 format)
- Test results
Use update_work_unit to set status to "completed" and save draft PR text and commit message:
{
status: "completed",
completedAt: new Date(),
devInfo: {
...existing,
draftCommitMessage: "feat(cart): implement shopping cart feature\n\n- Add cart API endpoints\n- Add cart UI components\n- Add integration tests\n\nCloses: DXX-WU-1",
draftPr: {
title: "[DXX-WU-1] Shopping cart feature",
body: "## Summary\n\nImplemented shopping cart feature.\n\n## Tasks Completed\n\n- [DXX-1] Add cart API\n- [DXX-2] Add cart UI\n- [DXX-3] Add cart tests\n\n## Changes\n\n- Added cart endpoints\n- Added cart components\n- Added integration tests\n\n## Files Modified\n\n- src/api/cart.ts:42\n- src/components/Cart.tsx:15\n- tests/cart.test.ts:1\n\n## Test Results\n\nAll tests passing. Coverage: 85%"
},
finalNotes: "All tasks completed. Files changed: [...]. Tests passing.",
completedBy: "<member-id>",
totalDuration: "3.5 hours"
}
}
Note on draftCommitMessage: Write a conventional commit message that will be used for the final git commit. Format: type(scope): description with optional body listing changes.
Create final summary comment documenting:
- Work unit scope and goals achieved
- All files created/modified (use
file.ts:42 format)
- Test coverage and results
- Any follow-up work needed
- Performance or architectural notes
6. Handle Blockers or Scope Changes
If blocked on a task:
- Use
update_task to set task status to "Blocked"
- Use
update_work_unit to set status to "blocked"
- Document blocker in work unit devInfo
- Use
create_task_comment on blocked task with details explaining what human intervention is needed
- Consider creating follow-up tasks for blockers
If scope changes during execution:
- Use
create_task to add new tasks to work unit
- Update work unit description/goals if needed
- Communicate scope change in work unit comments
Common Mistakes to Avoid
- ❌ Starting without reviewing all tasks in work unit (lack of context)
- ❌ Working on tasks in wrong order (missing dependencies)
- ❌ Skipping vibe-lint MCP validation (MANDATORY for every file)
- ❌ Not tracking work unit-level progress in devInfo
- ❌ Completing tasks in isolation without considering work unit goals
- ❌ Not running integration tests between tasks
- ❌ Moving task to "Review" without first going through "Testing"
- ❌ Marking work unit complete when tasks are still in "In Progress" or "Testing"
- ❌ Not documenting scope changes or blockers
- ❌ Forgetting to commit between tasks (losing incremental progress)
- ❌ Not updating work unit status when blocked
- ❌ Setting work unit to "completed" before all tasks reach "Review" or "Done"
- ❌ Executing tasks that are still in "Planning" status (must be promoted to "Todo" via
backlog-grooming first)
1---2name: run-work3description: Execute a work unit end-to-end: sequence tasks by dependency, implement, test between tasks, commit, and track progress. Use to deliver a complete feature in one session. Invoked as /agiflow:run-work <work-unit>. Uses get_work_unit, list_tasks, update_task, get_work_unit_progress.4---56> Invoked as `/agiflow:run-work`. In hosts without slash-prompts, this skill is triggered by matching intent and drives AgiFlow via its MCP tools.78**Usage**:910- `/agiflow:run-work <work-unit-slug-or-id>` - Execute specific work unit11- `/agiflow:run-work` - List and select from available work units1213**Examples**:1415- `/agiflow:run-work DXX-WU-1` (using slug)16- `/agiflow:run-work 01K8FABMNEJG1XTA9JGHSNFV40` (using ID)17- `/agiflow:run-work` (interactive selection)1819---2021**Guardrails**2223- Favor straightforward, minimal implementations first and add complexity only when it is requested or clearly required.24- Keep changes tightly scoped to the requested outcome within the work unit scope.25- A work unit represents a cohesive feature/epic that can be completed in one Claude Code session.2627If a work unit slug/id is provided, load it with `get_work_unit`; otherwise list available work units with `list_work_units` for selection.2829---3031## AgiFlow Project Management Guidelines3233Follow the shared AgiFlow project-management guidelines in [`references/agiflow-agents.md`](../../references/agiflow-agents.md) — agent assignment, the task status workflow and transitions, work-unit best practices, and the tags strategy apply to this workflow.343536---3738**Task Status Workflow (per task)**39Each task moves individually through: `Todo → In Progress → Testing → Review`40The work unit stays `in_progress` until all tasks reach `Review` or `Done`.41If any task hits `Blocked`, consider setting the work unit to `blocked` too.4243**IMPORTANT: Planning Status Guard**44This skill ONLY executes tasks in "Todo" or later status. Tasks in "Planning" have NOT been groomed and are NOT ready for execution. Use `backlog-grooming` to promote Planning tasks to Todo first.4546**Steps**47Track these steps as TODOs and complete them one by one.4849## 1. Work Unit Selection & Loading5051**If work unit slug/id NOT provided:**52531. Use `list_work_units` MCP tool to show available work units:54 - Filter by `status: "in_progress"` for active work, or work units with tasks in "Todo"55 - Do NOT pick up work units where all tasks are still in "Planning" status56 - Display: slug, title, type, priority, task count, status572. Ask user to select which work unit to work on.583. Once user selects, proceed with the selected work unit slug/id.5960**If work unit slug/id IS provided:** 4. Use `get_work_unit` MCP tool with the provided slug/id to retrieve:6162- Work unit: title, description, goals, type, priority, status, dates, devInfo63- Tasks: All tasks associated with this work unit (already included in response)64- Note: `get_work_unit` returns tasks automatically - no separate `list_tasks` call needed65665. Review the work unit and all its tasks to understand:67 - Complete feature scope and deliverables68 - Task dependencies and execution order69 - Acceptance criteria across all tasks7071**5b. PLANNING STATUS GUARD (MANDATORY):**7273- Check all tasks in the work unit74- If ANY task has status "Planning": **REFUSE to execute**75- Report: "Cannot execute: N task(s) are still in Planning status. Use **backlog-grooming** to promote them to Todo first."76- List the Planning tasks by title77- **STOP execution** — do not proceed7879## 2. Start Work Unit Execution80816. If work unit status is "planning":82 - First verify ALL tasks are in "Todo" or later status (not "Planning")83 - If verified, use `update_work_unit` MCP tool to set status to "in_progress"84 - If any tasks are in "Planning", REFUSE and suggest `backlog-grooming`857. Create a TODO list of all tasks in execution order (use TodoWrite tool).868. Document execution plan in work unit via `update_work_unit` devInfo:87 ```typescript88 devInfo: {89 executionPlan: "Backend API → Frontend UI → Tests → Documentation",90 sessionId: "<current-session-id>",91 startedAt: "<timestamp>"92 }93 ```9495## 3. Execute Tasks Sequentially96979. For each task in the work unit (in dependency order from the tasks array):98 - Review task details: title, description, acceptance criteria, assignee99 - Use `update_task` MCP tool to set status to "In Progress"100 - **BEFORE editing any code**: Use `architect` MCP `get_file_design_pattern` (MANDATORY)101 - Implement the task following acceptance criteria102 - **AFTER editing code**: Use `architect` MCP `review_code_change` (MANDATORY)103 - Update task `devInfo` with implementation notes:104 ```typescript105 devInfo: {106 filesChanged: ["path/to/file.ts:42"],107 testResults: { passed: true, coverage: "85%" },108 notes: "Implementation notes here"109 }110 ```111 - Mark acceptance criteria as checked via `update_task`112113 **Testing phase for each task:**114 - Use `update_task` to move status to "Testing"115 - Run unit tests, integration tests, type check and lint for affected code116 - **If tests PASS**: proceed to move task to "Review"117 - **If tests FAIL**:118 - Increment `retryCount` in devInfo119 - If `retryCount >= maxRetries` (default: 2): move task to "Blocked", set work unit to "blocked", stop120 - If `retryCount < maxRetries`: move task back to "Todo", document failure, continue to next task or stop session121 - Use `update_task` to set status to "Review" when tests pass122123 - Update your TODO list (mark task as completed)12412510. Between tasks:126 - Commit changes with meaningful commit messages127 - Run tests to ensure no regressions128 - Update work unit progress in devInfo129130## 4. Work Unit Progress Tracking13113211. The work unit tasks array automatically updates as tasks are completed.133 - Use `get_work_unit` to check current state and task statuses134 - Track: How many tasks in Review or Done vs. total?135 - Monitor: Are we on track for target date?136 - Work unit stays `in_progress` until all tasks reach `Review` or `Done`13713812. Update work unit `devInfo` as you progress via `update_work_unit`:139 ```typescript140 devInfo: {141 executionPlan: "...",142 sessionId: "<session-id>",143 startedAt: "<timestamp>",144 progress: {145 completedTasks: 3,146 totalTasks: 8,147 lastTaskCompleted: "Implement cart API",148 currentTask: "Add cart UI component"149 },150 testResults: {151 unitTests: "passing",152 integrationTests: "passing",153 coverage: "85%"154 },155 blockers: [] // or list any blockers encountered156 }157 ```158159## 5. Work Unit Completion16016113. When ALL tasks in work unit are in "Review" or "Done":162 - Verify all tasks have status "Review" or "Done"163 - Verify all acceptance criteria across all tasks are met164 - Run full test suite for the feature165 - Review all files changed (use git diff)16616714. Draft a PR description for the work unit (DO NOT create the PR yet - just draft the text):168 - Title format: `[WORK-UNIT-SLUG] Work unit title` (e.g., `[DXX-WU-1] Shopping cart feature`)169 - Body should include:170 - Work unit reference and summary171 - List of tasks completed172 - Summary of all changes across tasks173 - Files modified (use `file.ts:42` format)174 - Test results17517615. Use `update_work_unit` to set status to "completed" and save draft PR text and commit message:177178 ```typescript179 {180 status: "completed",181 completedAt: new Date(),182 devInfo: {183 ...existing,184 draftCommitMessage: "feat(cart): implement shopping cart feature\n\n- Add cart API endpoints\n- Add cart UI components\n- Add integration tests\n\nCloses: DXX-WU-1",185 draftPr: {186 title: "[DXX-WU-1] Shopping cart feature",187 body: "## Summary\n\nImplemented shopping cart feature.\n\n## Tasks Completed\n\n- [DXX-1] Add cart API\n- [DXX-2] Add cart UI\n- [DXX-3] Add cart tests\n\n## Changes\n\n- Added cart endpoints\n- Added cart components\n- Added integration tests\n\n## Files Modified\n\n- src/api/cart.ts:42\n- src/components/Cart.tsx:15\n- tests/cart.test.ts:1\n\n## Test Results\n\nAll tests passing. Coverage: 85%"188 },189 finalNotes: "All tasks completed. Files changed: [...]. Tests passing.",190 completedBy: "<member-id>",191 totalDuration: "3.5 hours"192 }193 }194 ```195196 **Note on draftCommitMessage**: Write a conventional commit message that will be used for the final git commit. Format: `type(scope): description` with optional body listing changes.19719816. Create final summary comment documenting:199 - Work unit scope and goals achieved200 - All files created/modified (use `file.ts:42` format)201 - Test coverage and results202 - Any follow-up work needed203 - Performance or architectural notes204205## 6. Handle Blockers or Scope Changes20620717. If blocked on a task:208 - Use `update_task` to set task status to "Blocked"209 - Use `update_work_unit` to set status to "blocked"210 - Document blocker in work unit devInfo211 - Use `create_task_comment` on blocked task with details explaining what human intervention is needed212 - Consider creating follow-up tasks for blockers21321418. If scope changes during execution:215 - Use `create_task` to add new tasks to work unit216 - Update work unit description/goals if needed217 - Communicate scope change in work unit comments218219**Common Mistakes to Avoid**220221- ❌ Starting without reviewing all tasks in work unit (lack of context)222- ❌ Working on tasks in wrong order (missing dependencies)223- ❌ Skipping vibe-lint MCP validation (MANDATORY for every file)224- ❌ Not tracking work unit-level progress in devInfo225- ❌ Completing tasks in isolation without considering work unit goals226- ❌ Not running integration tests between tasks227- ❌ Moving task to "Review" without first going through "Testing"228- ❌ Marking work unit complete when tasks are still in "In Progress" or "Testing"229- ❌ Not documenting scope changes or blockers230- ❌ Forgetting to commit between tasks (losing incremental progress)231- ❌ Not updating work unit status when blocked232- ❌ Setting work unit to "completed" before all tasks reach "Review" or "Done"233- ❌ Executing tasks that are still in "Planning" status (must be promoted to "Todo" via `backlog-grooming` first)