
Ralph Loop Workflow
- 357 installs
- 18 repo stars
- Updated June 8, 2026
- andrelandgraf/fullstackrecipes
Run a coding agent in a long autonomous loop from one wide outcome prompt, with preflight CLI checks and built-in verify-and-iterate gates.
About
Ralph Loop Workflow is an agent skill for solo and indie builders who want sustained autonomous development from a single broad prompt instead of hand-feeding tasks. It wires a /ralph-style command through a preflight check that confirms CLIs are installed, linked, and authenticated, then lets the agent harness own task decomposition while producing tests as executable acceptance criteria, user-facing documentation, and library changelogs. The loop emphasizes maximize time without human intervention: plan, build, verify, and iterate until checks pass. Verification spans typecheck, formatting, fallow, browser checks, tests, deploy, and production validation. It fits builders already using agent-first workflows and the Fullstack Recipes stack; it is not a substitute for missing test or lint setup—those recipes should be in place first.
- Preflight gate: every required CLI installed, linked, and authenticated before the loop starts
- Wide outcome-focused prompt with agent-managed todo breakdown—no separate user-story file to author
- Iteration loop: code, user-facing docs, changelog, tests, then verification (typecheck, fmt, fallow, browser, tests, dep
- Stops and asks for a prompt if none is given—outcome must be stated up front
- Prerequisite recipes: AI Coding Agent Configuration, Code Health/Linting/Formatting, Testing
Ralph Loop Workflow by the numbers
- 357 all-time installs (skills.sh)
- Ranked #467 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/andrelandgraf/fullstackrecipes --skill ralph-loop-workflowAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 357 |
|---|---|
| repo stars | ★ 18 |
| Last updated | June 8, 2026 |
| Repository | andrelandgraf/fullstackrecipes ↗ |
What it does
Run a coding agent in a long autonomous loop from one wide outcome prompt, with preflight CLI checks and built-in verify-and-iterate gates.
Files
Ralph Loop Workflow
Run a coding agent in an autonomous loop that breaks a wide prompt into tasks and builds, tests, and ships each one.
Prerequisites
Complete these setup recipes first:
- AI Coding Agent Configuration
- Code Health, Linting & Formatting
- Testing
The Loop
Ralph maximizes how long the agent runs without human intervention. The goal is not a file format — it is keeping the agent able to plan, build, and verify on its own. The durable record of intent lives in the artifacts the agent produces: tests (executable acceptance criteria), user-facing docs, and a changelog for published libraries.
input prompt
-> preflight check (CLIs installed, linked, authenticated)
-> agent harness managed todo list (first-principles task breakdown)
-> code + user-facing docs + changelog + tests
-> verification (typecheck, fmt, fallow, browser, tests, deploy, prod check)
-> iterateGive the agent a wide, outcome-focused prompt and let its own harness manage the todo list — there is no separate user-story file to author or check off.
If no prompt is given, STOP and ask the user: "What outcome do you want the Ralph loop to drive toward? Give me a wide, outcome-focused prompt and I'll break it into tasks." Wait for their answer before continuing.
Run the preflight check once. If anything is missing or unauthenticated, report the exact fix commands and STOP — the loop does not start until everything is green. Then each iteration:
1. Read the current state of the codebase and any prior progress. 2. Break remaining work into tasks with first-principles thinking. 3. Pick the highest-priority task. 4. Implement it through the dev workflow: write tests, build, generate and migrate DB schema if needed, format. 5. Verify: typecheck, build, tests, and browser interaction at http://localhost:3000. 6. Debug and fix until verification passes. 7. Update user-facing docs and the changelog for any published artifacts. 8. Commit with a descriptive message and move to the next task.
Keep the dev server running (bun run dev). The agent works against a test database, so it can migrate freely. The loop ends when no tasks remain and all verification passes.
What the Agent Needs
Nothing Ralph-specific to install — the loop depends on three things being in place:
- Context — how to work in this codebase (patterns, dev workflow, conventions), via
AGENTS.md, configured MCP servers, and installed skills. - Tools — to provision resources, run migrations, pull logs, and inspect deployments, via the project's MCP servers and CLIs. Give the agent the same tools you use.
- Verification — what extends autonomous runway. The agent must check its own work locally and in production:
- Code health —
bun run typecheck,bun run fmt,bun run fallow - Tests —
bun run testagainst an isolated database branch (Playwright, integration, unit) - Browser —
agent-browserto interact with the running app like a user - Logs & deploys — pull deployment and runtime logs to confirm changes shipped and work in production
When verification is trustworthy and self-serve, the agent catches and fixes its own regressions without a human in the loop.
Preflight Check
Confirm the agent has everything before the first iteration, rather than discovering a missing credential halfway through. Don't assume a fixed list — infer the active infrastructure from the codebase, then check each tool:
1. Discover the infra in use. Read the MCP config (.cursor/mcp.json), the better-env configSchema declarations, and package.json scripts. Each configured service implies a CLI or token: Neon (DATABASE_URL), Vercel, Resend, Sentry, GitHub, Better Auth, etc. 2. For each tool, verify install + link + auth with a non-destructive command. 3. Report a checklist with a fix command for every red item.
Example checks (run only the ones the codebase uses):
agent-browser -v # browser automation
vercel --version && vercel whoami && vercel project ls # installed + linked + auth
neonctl me # Neon CLI authenticated
sentry-cli info # token present and valid
gh auth status # GitHub CLI for PRs, logs
bun run env:validate # env vars match the schemaStop if anything is red:
Preflight check
[ok] agent-browser v1.4.2
[ok] vercel linked to acme/app, logged in as andre
[fail] neon not authenticated
[fail] DATABASE_URL not set in .env.local
[ok] gh authenticated
2 issues block the loop. Run these, then re-run /ralph:
neonctl auth # opens browser for OAuth
bun run env:pull # pull DATABASE_URL from VercelFor interactive OAuth (Vercel, Neon, GitHub), give the user the exact command to run themselves — don't attempt a browser login on their behalf. For anything fixable non-interactively (pulling env vars, setting a token), offer to run it. Start the loop only once every item is green.
Steering the Loop
Keep the prompt wide and outcome-focused, then let the agent decompose it. Add direction by sharpening inputs, not micromanaging steps:
- Sharper prompt — state the outcome and constraints, not the steps.
- Stronger tests — failing tests are the most reliable signal that more work remains.
- Better tools — when the agent keeps getting stuck, it usually lacks a tool (an MCP server, CLI, or log access), not instructions.
Background & References
- Ralph - Geoffrey Huntley - Original concept and implementation
- Effective Harnesses for Long-Running Agents - Anthropic - Engineering patterns for agent loops
- Matt Pocock on Ralph - Video walkthrough