From devflow
Use when the active DevFlow flow is in 'in_progress' state. Guides implementing the approved plan with tasks, commits, and TDD discipline.
npx claudepluginhub klausfreiberufler/devflow-mcp --plugin devflowThis skill uses the workspace's default tool permissions.
You are in `in_progress`. The plan has been approved. Your job: implement it task by task, tracking progress via `task_list` / `task_update`, then submit for review.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
You are in in_progress. The plan has been approved. Your job: implement it task by task, tracking progress via task_list / task_update, then submit for review.
If superpowers:subagent-driven-development is available, invoke it for subagent-per-task execution.
If superpowers:executing-plans is available, invoke it for inline batch execution with checkpoints.
If superpowers:test-driven-development is available, use it for test-first discipline.
If none are available, follow the inline loop below.
task_list to get the current task statein_progress via task_update
b. Write failing test
c. Implement minimal code
d. Run test, verify pass
e. Commit with Gitmoji prefix
f. Mark completed via task_updateflow_update({
flowId: <current>,
currentState: 'review',
agentSummary: <what was implemented>,
testingInstructions: <how to verify>
})
Attach each commit to the flow via flow_update({ commits: [...] }) so the DevFlow UI links them.
Use Gitmoji prefixes:
task_list must be completedThen use /devflow-review to submit cleanly.