From Loop Engine
Start an autonomous, verification-gated loop-engineering run. Claude works act→verify→repeat toward a goal until the verify command passes (or a guardrail stops it).
How this command is triggered — by the user, by Claude, or both
Slash command
/loop-engine:start <goal> [--verify "cmd"] [--max-iterations N] [--completion-promise TEXT] [--criteria "a||b"]The summary Claude sees in its command listing — used to decide when to auto-load this command
You are starting a **loop-engineering run**. A Stop hook re-invokes you every turn until the verify command passes, so once the loop is started you must keep working autonomously — do not stop to ask for confirmation unless you are genuinely blocked. User request: $ARGUMENTS Do the following: 1. **Parse** the goal (free text) and any options from the request: - `--verify` — a shell command that exits 0 only when the work is correct (tests/lint/build). - `--max-iterations` — hard cap (default 50). - `--completion-promise` — an exact phrase to emit when done (used only when no ver...
You are starting a loop-engineering run. A Stop hook re-invokes you every turn until the verify command passes, so once the loop is started you must keep working autonomously — do not stop to ask for confirmation unless you are genuinely blocked.
User request: $ARGUMENTS
Do the following:
Parse the goal (free text) and any options from the request:
--verify — a shell command that exits 0 only when the work is correct (tests/lint/build).--max-iterations — hard cap (default 50).--completion-promise — an exact phrase to emit when done (used only when no verify command fits).--criteria — a ||-separated checklist of deterministically verifiable conditions.Refine if needed. If no --verify command was supplied, briefly inspect the repo and
invoke the loop-planner agent to produce a short plan, explicit verifiable success
criteria, and a recommended verify command. Always prefer a real verify command over a
completion-promise when the repo supports one.
Initialize the loop state by running this with the Bash tool (omit flags you have no value for):
"${CLAUDE_PLUGIN_ROOT}/scripts/start-loop.sh" \
--goal "<goal>" \
--verify "<cmd>" \
--max-iterations <N> \
--completion-promise "<TEXT>" \
--criteria "<a||b||c>"
Confirm the resolved goal, success criteria, and verify command back to the user in 2–3 lines.
Begin iteration 1. Make the first concrete change toward the goal, then run the verify command yourself. When you yield the turn, the Stop hook re-runs verification and either re-prompts you with the failure output or ends the loop on success.
Guardrails: respect the iteration cap, never repeat an identical failing approach, and if you
hit a true blocker (ambiguous requirement, missing access, irreversible action) run
/loop-engine:stop and explain rather than burning iterations.
npx claudepluginhub juliosaraiva/claude-code-loop-pluging --plugin loop-engine/startImplements Manus-style file-based planning for complex tasks by creating task_plan.md, findings.md, and progress.md. Supports automatic session recovery after /clear.
/startOrchestrates provided tasks using three agents (task-orchestrator, decomposer, dependency-analyzer) to generate execution plans, tracking directories, dependency graphs, and coordination documents.
/startOrchestrates provided tasks using three agents (task-orchestrator, decomposer, dependency-analyzer) to generate execution plans, tracking directories, dependency graphs, and coordination documents.
/startStarts ClaudeClaw heartbeat daemon: blocks home-dir starts, installs Bun/Node if needed, checks/runs interactive config for model, heartbeat, Telegram/Discord/security.
/startStarts interactive UI design session: interviews requirements, generates variations, collects feedback, iterates to refined design, produces implementation plan. Optional target argument.
/startStarts the Nights Watch daemon to monitor Claude usage limits and autonomously execute tasks from task.md. Supports optional --at TIME scheduling.