Stop prompting.
Start looping.
Stop manually baby-sitting your IDE. soloopx. is an open directory of closed-loop recipes for coding agents. Provide a goal, lock in verification shell commands, and let Cursor or Claude Code loop autonomously until the exit checks pass.
npm testnpm testThe Anatomy of a Loop
Most developers manually prompt coding agents step-by-step. Loops replace this slow hand-holding with a strict state-machine that operates autonomously until your criteria are fully satisfied.
Standard Prompts
A prompt is a single ingredient. It provides goals but lacks checking gates. The agent acts once and stops, waiting for a human to check the output, write edits, and manually guide the next move.
Curated Loop Recipes
A loop is a system. It wraps goals in automatic check commands and strict exit conditions. The agent executes, evaluates its work via actual terminal outputs, and self-corrects until the checks pass.
// loop_lifecycle_flow
Trigger
Booted manually by pasting our kickoff template, or automatically hooked into git events or save triggers.
Act
The agent iterates on your codebase—writing code, refactoring directories, and editing files to meet the goal.
Check
The agent runs a designated verification command (such as `npm test`) to read real status check results.
Exit
If the check fails, the agent restarts. When the exit check succeeds, the loop halts with absolute safety.
Executing loops in your workspace.
Every loop recipe is built to run on top of standard modern CLIs. Zero custom server installs required.
Open a loop detail page in our catalog and find the structured kickoff.
Click Copy prompt to grab the complete instructions with checking gates.
Paste the prompt directly into your coding chat environment (Cursor / Claude Code).
For hook-based loops, check the install file JSON configs on the loop detail view.