From superpowers-iterate
Check current phase and progress of iteration workflow
How this command is triggered — by the user, by Claude, or both
Slash command
/superpowers-iterate:iterate-statusThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Iteration Status Check the current iteration state from `.agents/iteration-state.json`. ## Actions 1. Read the state file: 2. If an iteration is active, report: - **Task:** What is being worked on - **Current Phase:** Which of the 9 phases (with name and integration) - **Started:** When the iteration began - **Completed Phases:** List of finished phases - **Next Steps:** What needs to happen to advance 3. If no iteration is active: - Report "No active iteration" - Suggest: "Use `/superpowers-iterate:iterate <task>` to start a new iteration" ## Phase Referen...
Check the current iteration state from .agents/iteration-state.json.
Read the state file:
cat .agents/iteration-state.json 2>/dev/null || echo '{"status": "no active iteration"}'
If an iteration is active, report:
If no iteration is active:
/superpowers-iterate:iterate <task> to start a new iteration"| Phase | Name | Integration |
|---|---|---|
| 1 | Brainstorm | superpowers:brainstorming + N parallel subagents |
| 2 | Plan | superpowers:writing-plans + N parallel subagents |
| 3 | Plan Review | mcp__codex-high__codex (validates plan) |
| 4 | Implement | superpowers:subagent-driven-development + LSP |
| 5 | Review | superpowers:requesting-code-review (1 round) |
| 6 | Test | make lint && make test |
| 7 | Simplify | code-simplifier:code-simplifier plugin |
| 8 | Final Review | mcp__codex-high__codex (decision point) |
| 9 | Codex Final | mcp__codex-xhigh__codex (full mode only) |
npx claudepluginhub kenkenmain/ken-cc-plugins --plugin superpowers-iterate/iterateRuns autonomous iteration loop: reads memory-bank/progress.md, selects next task via full/lite mode, executes with PM/Lead/Designer/Dev/QA roles or Dev/Verify/Commit, verifies, commits, updates progress, loops immediately to next.
/loop-pulseChecks active loop status from .loophaus/state.json or legacy file, displaying iteration, promise, PRD stories progress if prd.json exists, and last 5 lines of progress.txt.
/statusDisplays current workflow status and progress including phase details, completion percentage, deliverables count, time tracking, active agents, and next actions. Supports --detailed flag.