Start a devloop for iterative development
Starts an iterative development loop for building features with automatic verification and early exit on completion promise.
/plugin marketplace add Ilm-Alan/claude-devloop/plugin install devloop@claude-devloopPROMPT [-m N] [-c 'TEXT']DEVLOOP_ARGS="${ARGUMENTS}" "${CLAUDE_PLUGIN_ROOT}/scripts/setup-loop.sh"
Work on the task above. This is an iterative development loop that will repeat until max iterations or completion.
After each response, the Stop hook will:
<promise>TEXT</promise> matching the completion promiseIf -c / --completion-promise was set, you can exit early by outputting:
<promise>EXACT PROMISE TEXT HERE</promise>
CRITICAL RULES FOR PROMISES:
<promise> tag when the completion criteria is genuinely metStart a loop that runs for 5 iterations max:
/devloop:start Refactor the auth module -m 5
Start a loop with early exit condition:
/devloop:start Fix all type errors -c 'Zero TypeScript errors in build'
Full example with both options:
/devloop:start Build user registration --max-iterations 10 --completion-promise 'Registration flow complete with tests'
/startInitiates the task orchestration workflow using the three-agent system (task-orchestrator, task-decomposer, and dependency-analyzer) to create a comprehensive execution plan.