Ever spent 20 minutes crafting the perfect prompt for an AI coding agent, gotten great results, then realized you’d have to reconstruct the whole thing from scratch next time? Yeah, me too.
So that’s one of the hardest things about agent-assisted coding — every task starts from a blank conversation. But you solve a problem once, the agent does brilliant work, and then that workflow vanishes into session history. But Loopy changes that. Now at 2,603 GitHub stars in under a month, I’m clearly not the only one feeling this pain.
TL;DR
Loopy is two things in one: a live catalog of published, reusable agent loops, and an installable skill that gives Claude Code, Cursor, and Codex a guided 9-path system for discovering, crafting, running, and publishing those loops. So install it with a single npx skills add command, and your agent suddenly understands the difference between “do this once” and “keep doing this until it’s right.”
What surprised me most? Yet it’s not another CLI tool. It’s a conversational skill. You tell your agent what you want, and it walks you through the process.
What Is a Loop, Actually?
Most prompts ask an agent to do something once:
“Make this website faster.”
A loop adds feedback that makes the work repeatable:
“Find the slowest page, make one focused improvement, and measure it again. Keep the change only if it helps. Repeat until every page meets the target or another pass stops producing meaningful improvement.”
So a good loop answers four questions: What is the agent trying to accomplish? How will it know whether the latest attempt worked? What should it do with what it learned? When should it finish or ask for help?
But I’ve been coding with agents for over a year, and I never had good answers to the third and fourth questions until I started using loops. Without a stopping condition, the agent either runs forever or stops too early.
Installing Loopy — About 30 Seconds
Now the install process is refreshingly simple.
| Platform | Install Command |
|---|---|
| Codex | npx skills add Forward-Future/loopy --skill loopy --agent codex -g -y |
| Cursor | npx skills add Forward-Future/loopy --skill loopy --agent cursor -g -y |
| Claude Code | npx skills add Forward-Future/loopy --skill loopy --agent claude-code -g -y |
To install for all three at once:
npx skills add Forward-Future/loopy \
--skill loopy \
--agent codex \
--agent cursor \
--agent claude-code \
-g -y
I ran this on my Ryzen 9 workstation and it took about 20 seconds per agent. Then after restarting each one, /loopy was live. Also worth noting: the previous loop-library package name remains as a compatibility alias — the new install uses loopy. They coexist fine, so don’t bother uninstalling the old one.
I Ran “Find” on a Real Codebase
The skill exposes nine paths. But here’s the quick menu:
| Path | What It Does |
|---|---|
| Discover | Finds repeated work in your codebase or threads, turns a strong candidate into a loop |
| Find | Searches the live catalog, recommends up to 3 published loops |
| Loop Doctor | Audits a loop you paste in, explains material weaknesses |
| Adapt | Tailors a loop to your actual tools and limits |
| Craft | Interviews you step by step, builds a fresh loop from your answers |
| Run | Executes a loop in bounded passes, returns an evidence-backed receipt |
| Debrief | Analyzes run receipts, recommends one small improvement |
| Save | Writes a loop to your project’s LOOPS.md for reuse |
| Publish | Checks quality and catalog overlap, prepares a publication draft |
But the real test is running one of these on an actual problem. So I opened Claude Code in a Golang API project that’s been accumulating tech debt for months and typed:
/loopy Find a loop for improving test reliability.
Yet Loopy came back within about 8 seconds with three published loops: “Overnight Test Sweep,” “Flaky Test Hunter,” and “Coverage Gap Builder.” Each came with a summary and a direct link to its full prompt in the Loop Library catalog.
The “Flaky Test Hunter” caught my attention. Here’s the loop’s core structure:
Objective: Identify tests that pass inconsistently across runs.
Check: Run the full test suite 3 times. Flag any test that fails at least once but not always.
Action: For each flagged test, isolate the flaky assertion, capture the failing input,
and add deterministic retry logic or fixture cleanup.
Stop: When no test has failed in 3 consecutive suite runs.
So I ran it. It found three flaky tests I’d been ignoring for weeks. I fixed two of them in about 15 minutes. The third needed a deeper fixture refactor, so I saved that loop to the project’s LOOPS.md and moved on. Honestly, even fixing just two tests made a noticeable difference in my next CI run.
Then I tried the Craft path on a Python data pipeline. Loopy walked me through a 4-question interview — outcome, success criteria, tools/permissions, and stopping condition — and generated a “Data Pipeline Health Check” loop. That conversation took maybe three minutes. The loop wasn’t polished enough to publish, but it was immediately useful for internal monitoring. Though for serious work, you’d want to iterate on it a few times.
The Live Catalog
As of July 10, 2026, the catalog had 47 published loops — everything from “Documentation Overnight Sweep” to “API Version Migration” to “Dead Code Remover.” I browsed through about a dozen manually. Some were genuinely battle-tested (Security Patch Integrator, Dependency Upkeep Runner), and a few felt like demonstrations. Still, even the generic ones were well-structured — clear objectives, measurable checks, explicit stopping conditions.
The catalog is also available in multiple formats: interactive website, agent-optimized guide, llms.txt, JSON catalog, and plain-text. So your agent can consume it however suits it best.
How Loopy Stacks Up
Loopy isn’t the only player here. Yet two other projects cover adjacent ground, and they take very different approaches:
| Dimension | Loopy | Loop Engineering | Self-Learning-Skills |
|---|---|---|---|
| Core approach | Catalog + conversational skill | CLI toolkit (7 patterns) | Meta-skill auto-captures golden paths |
| Installation | npx skills add |
npm install -g |
Python pip |
| Main features | Discover, Find, Craft, Run, Audit, Publish, Save | loop-audit, loop-init, loop-cost, loop-mcp-server | Auto-capture skills from coding sessions |
| Community sharing | Live catalog of published loops | CLI-first, no shared catalog | Project-local only |
| Kill feature | 9-path conversational skill — tell agent what you want, it guides you | Loop-MCP Server for production debugging | Zero-config auto-capture |
Loop Engineering gives you low-level CLI control with an MCP Server that’s genuinely useful for production debugging — I covered that in the Loop Engineering review. Self-Learning-Skills wins on zero-config auto-capture, which I dug into in the self-learning-skills review. So Loopy’s differentiator is the shared catalog plus the conversational interface — you don’t need to know any loop terminology to use it.
When You’d Want Loopy on a VPS
Now most loop work runs locally. But some scenarios call for a persistent runtime:
- Overnight batch runs — loops like “Documentation Sweep” run unattended on a schedule
- CI/CD integration — diagnostic loops as part of your build pipeline
- Multi-repo monitoring — same loop across multiple repos in parallel
Even so, a $6/month DigitalOcean Droplet (affiliate link) is more than enough. Install Node.js, run the same npx skills add command, and set up a cron job to execute your saved loops nightly:
# On a fresh Ubuntu Droplet
apt update && apt install -y nodejs npm git
npx skills add Forward-Future/loopy --skill loopy --agent claude-code -g -y
# Nightly test sweep
crontab -e
# Add: 0 2 * * * cd /opt/my-project && claude code --skill loopy "Run the Overnight Test Sweep loop"
Still, you don’t need a VPS to get value from Loopy — it works great locally too. But if you’re running overnight sweeps across multiple repos, that $6/month Droplet pays for itself fast. Vultr offers a similar deal with $100 in free credit for new users if you prefer an alternative platform.
Who Should Use Loopy
- Solo developers — you benefit here. Every loop you save is hours you never re-spend.
- Teams using AI coding agents — shared loops become team assets with consistent stopping criteria.
- Anyone tired of typing the same prompt twice — if you’ve ever copy-pasted from a previous session, this is for you.
Skip it if you don’t use AI coding agents or all your work is one-shot scripts. Loopy is built for the “I do this every week” workflow. And honestly, it’s risk-free to try — the install takes 30 seconds.
What to Watch Out For
Loopy is young. 47 loops in the catalog is usable but not vast. Still, quality varies — some feel battle-tested, others clearly demonstrate the concept. Also, the skill requires Node.js and npx. In a locked-down environment (no network, restricted CI), the install could fail. Because it’s a conversational skill, it only works inside supported coding agents — no direct terminal usage.
The Loop Engineering project has a head start on production features (the MCP Server is genuinely solid), and Self-Learning-Skills captures workflows without you thinking about it. So Loopy’s value depends on whether the shared catalog matters to you. But given the catalog is growing and the conversational interface is genuinely pleasant, I’d say it’s worth a shot.
The Bottom Line
Now Loopy takes an abstract idea — “agent loops” — and makes it immediately practical. Install it, type /loopy, and your agent can find a published loop, craft a new one, or audit an existing workflow in seconds. The live catalog means you’re not reinventing the wheel.
I went in skeptical (another “workflow” tool?), and came out with three flaky tests found and two fixed in 15 minutes. That’s the kind of concrete outcome that makes a tool worth keeping around.
Now if you use Claude Code, Cursor, or Codex, spend 30 seconds installing Loopy. You’ll probably find a loop worth running before lunch. Need a cloud machine to run loops overnight? Sign up for DigitalOcean and get $200 in credit to start.
Disclosure: Some links below are affiliate links. If you sign up through them, I may earn a commission at no extra cost to you.
- DigitalOcean — $200 credit for new users
- Vultr — starts at $6/mo, $100 free credit