From asynkron-devtools
Automatically iterates on the next logical step in a project until a stop condition is reached. Useful for open-ended cleanup, refactoring, polish, and debt burn-down.
How this skill is triggered — by the user, by Claude, or both
Slash command
/asynkron-devtools:continue-loopThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to keep making progress without waiting for the user to spell out every step. Treat the loop as a sequence of small, verified passes, not a license to thrash.
Use this skill to keep making progress without waiting for the user to spell out every step. Treat the loop as a sequence of small, verified passes, not a license to thrash.
SKILL_DIR to the directory containing this SKILL.md.python3 "$SKILL_DIR/scripts/continue_loop.py" start --cwd "$PWD"
--goal "..." when the user gave a concrete objective worth preserving.python3 "$SKILL_DIR/scripts/continue_loop.py" next --cwd "$PWD"
What is the next logical step to focus on next?python3 "$SKILL_DIR/scripts/continue_loop.py" record \
--cwd "$PWD" \
--focus "Short name of the step you just completed" \
--summary "What changed and why" \
--verification "Exact command(s) or checks you ran"
--next-hint "..." if the current pass revealed an obvious follow-up.--status blocked only when you truly cannot proceed safely.python3 "$SKILL_DIR/scripts/continue_loop.py" stop \
--cwd "$PWD" \
--reason "Why the loop should stop here"
Rank candidate steps against:
Prefer:
Avoid:
$CODEX_HOME/state/continue-loop by default so the repo stays clean.--state-file /path/to/state.json when you want an explicit shared log.status to inspect the current loop summary:python3 "$SKILL_DIR/scripts/continue_loop.py" status --cwd "$PWD"
npx claudepluginhub asynkron/asynkron-skills --plugin asynkron-devtoolsOrchestrates implement-analyze-fix loops: implements code, AI-reviews changes, fixes issues, repeats until clean or max iterations. For iterative development with quality checks.
Automates iterative coding task execution with fresh-context sub-agents, PRD.md/PROGRESS.md tracking, and git commits until completion.
Conducts interactive interview to gather task details, generates PRD, and outputs optimized loop commands with phase tracking for Loop plugin.