Browse recipes.
[ 27 templates compiled ]Curated, closed-loop developer recipes for coding agents. Select a domain or keyword to filter the active catalog.
27 visible · sorted by top rated
Ship PR Until Green
Implement on a branch, run tests, push, open a PR, wait for CI, and loop until checks pass and the PR is ready to merge.
Tom Osman's app testing automation
This "loop" automation is nuts inside of Codex.
Autoloop TDD
Test-first loop: write a failing test, implement the minimum code to pass, refactor, and repeat.
Post-Merge Regression Guard
Hook that runs smoke tests after git merge or rebase to catch integration regressions immediately.
Deploy Verification Loop
On an interval, hit health and smoke endpoints after a deploy until all checks return healthy responses.
Dependency Upgrade One-by-One
Upgrade a single outdated package per iteration, fix breakages, and commit — safer than bulk npm update.
Test Until Green
Run your test suite, fix the smallest root cause on failure, and repeat until every test passes.
Coverage Until Threshold
Add focused tests until coverage meets your threshold (e.g. 80%), without changing production behavior unnecessarily.
Independent Verifier Pass
When implementation claims done, a separate verifier pass runs build, lint, and tests with no access to the implementer's rationale.
Post-Edit Test Guard
Hook-based loop that runs related tests after file edits to catch regressions early.
Flaky Test Triage
Run failing tests repeatedly, classify each failure as flaky or real, and fix only confirmed regressions.
npm Audit Fix Loop
Fix high/critical npm audit findings one at a time with test verification — not a blind npm audit fix --force.
Showing 12 of 27 recipes