← All profiles

loops!

@loops · org

A directory of reusable agent loops — recipes that tell a coding agent to run a task, check an exit condition, and iterate until done. Built and curated by elorm (elorm.xyz, @elorm_elom).

Sort

15 results

Publishes 15

Autoloop TDD
Loop

Test-first loop: write a failing test, implement the minimum code to pass, refactor, and repeat.

Technical @loops
Build Until Green
Loop

Run the production build, fix compile and bundling errors, and loop until the build succeeds.

DevOps @loops
Changelog Sync After Ship
Loop

After shipping a feature, loop until CHANGELOG.md has a user-facing entry and conventional commits are reflected.

DevOps @loops
Coverage Until Threshold
Loop

Add focused tests until coverage meets your threshold (e.g. 80%), without changing production behavior unnecessarily.

Technical @loops
De-Sloppify Pass
Loop

After implementation, run a cleanup pass: remove debug code, tighten naming, delete dead branches, and align with project conventions.

Technical @loops
Deploy Verification Loop
Loop

On an interval, hit health and smoke endpoints after a deploy until all checks return healthy responses.

DevOps @loops
Fix CI Until Green
Loop

Fetch the latest failed CI run, reproduce the failure locally, fix it, and repeat until checks pass.

DevOps @loops
Format Until Clean
Loop

Run the formatter, fix any remaining style issues, and loop until the codebase formats cleanly with no diffs.

DevOps @loops
Independent Verifier Pass
Loop

When implementation claims done, a separate verifier pass runs build, lint, and tests with no access to the implementer's rationale.

Technical @loops
Lint and Typecheck Fix
Loop

Run lint and typecheck, fix reported issues, and loop until the codebase is clean.

DevOps @loops
Migration Until Applied
Loop

Run database migrations, fix schema issues, and loop until migrations apply cleanly in dev.

Data @loops
PR Self-Review
Loop

Review your own diff like a senior reviewer, fix issues, and repeat for three passes before opening the PR.

Technical @loops
Ship PR Until Green
Loop

Implement on a branch, run tests, push, open a PR, and loop until checks pass and the PR is ready to merge.

DevOps @loops
Spec-First Ship
Loop

Implement from a written spec.md checklist — each iteration completes one unchecked requirement with verification.

Technical @loops
Test Until Green
Loop

Run your test suite, fix the smallest root cause on failure, and repeat until every test passes.

DevOps @loops