
Ralph Wiggum
- 1.2k installs
- 281 repo stars
- Updated May 11, 2026
- fstandhartinger/ralph-wiggum
ralph-wiggum provides documented workflows for Autonomous AI coding with spec-driven development. Implements Geoffrey Huntley's iterative bash loop methodology where agents work through specs one at a time,
About
The ralph-wiggum skill autonomous AI coding with spec-driven development. Implements Geoffrey Huntley's iterative bash loop methodology where agents work through specs one at a time, outputting a completion signal only when acceptance criteria are 100% met. # Ralph Wiggum > Autonomous AI coding with spec-driven development ## What is Ralph Wiggum? Ralph Wiggum combines **Geoffrey Huntley's iterative bash loop** with **spec-driven development** for fully autonomous AI-assisted software development. The key insight: **Fresh context each iteration**. Each loop starts a new agent process with a clean context window, preventing context overflow and degradation. ## When to Use This Skill Use Ralph Wiggum when: - You have multiple specifications/features to implement - You want the AI to work autonomously through tasks - You need consistent, verifiable completion of acceptance criteria - You want to avoid context window problems in long sessions ## How It Works ``` ┌─────────────────────────────────────────────────────────────┐ │ RALPH LOOP │ ├─────────────────────────────────────────────────────────────┤ │ Loop 1: Pick spec A → Implement → Test → Commit → DONE │ │ Loop 2: Pick spec B →.
- You have multiple specifications/features to implement
- You want the AI to work autonomously through tasks
- You need consistent, verifiable completion of acceptance criteria
- You want to avoid context window problems in long sessions
- **Quick Setup** (~1 min) - Create directories, download scripts
Ralph Wiggum by the numbers
- 1,181 all-time installs (skills.sh)
- +24 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #260 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Security screen: HIGH risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
ralph-wiggum capabilities & compatibility
- Capabilities
- you have multiple specifications/features to imp · you want the ai to work autonomously through tas · you need consistent, verifiable completion of ac · you want to avoid context window problems in lon · **quick setup** (~1 min) create directories, d
- Use cases
- documentation
What ralph-wiggum says it does
# Ralph Wiggum > Autonomous AI coding with spec-driven development ## What is Ralph Wiggum?
Ralph Wiggum combines **Geoffrey Huntley's iterative bash loop** with **spec-driven development** for fully autonomous AI-assisted software development.
npx skills add https://github.com/fstandhartinger/ralph-wiggum --skill ralph-wiggumAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.2k |
|---|---|
| repo stars | ★ 281 |
| Security audit | 0 / 3 scanners passed |
| Last updated | May 11, 2026 |
| Repository | fstandhartinger/ralph-wiggum ↗ |
How do I use ralph-wiggum for the task described in its SKILL.md triggers?
Autonomous AI coding with spec-driven development. Implements Geoffrey Huntley's iterative bash loop methodology where agents work through specs one at a time, outputting a completion signal only whe.
Who is it for?
Teams invoking ralph-wiggum when the user request matches documented triggers and prerequisites.
Skip if: Skip when cached docs are missing, the request is a negative trigger, or another sibling skill owns the workflow.
When should I use this skill?
Autonomous AI coding with spec-driven development. Implements Geoffrey Huntley's iterative bash loop methodology where agents work through specs one at a time, outputting a completion signal only when acceptance criteria
What you get
Step-by-step guidance grounded in ralph-wiggum documentation and reference files.
- Verified spec implementations
- Loop iteration logs
By the numbers
- Skill metadata version 1.0
- Requires 100% acceptance-criteria verification before completion signals
Files
Ralph Wiggum
Autonomous AI coding with spec-driven development
What is Ralph Wiggum?
Ralph Wiggum combines Geoffrey Huntley's iterative bash loop with spec-driven development for fully autonomous AI-assisted software development.
The key insight: Fresh context each iteration. Each loop starts a new agent process with a clean context window, preventing context overflow and degradation.
When to Use This Skill
Use Ralph Wiggum when:
- You have multiple specifications/features to implement
- You want the AI to work autonomously through tasks
- You need consistent, verifiable completion of acceptance criteria
- You want to avoid context window problems in long sessions
How It Works
┌─────────────────────────────────────────────────────────────┐
│ RALPH LOOP │
├─────────────────────────────────────────────────────────────┤
│ Loop 1: Pick spec A → Implement → Test → Commit → DONE │
│ Loop 2: Pick spec B → Implement → Test → Commit → DONE │
│ Loop 3: Pick spec C → Implement → Test → Commit → DONE │
│ ... │
│ │
│ Each iteration = Fresh context window │
│ Shared state = Files on disk (specs, plan, history) │
└─────────────────────────────────────────────────────────────┘Installation
Quick Install (via Skill Installers)
# Using Vercel's add-skill
npx add-skill fstandhartinger/ralph-wiggum
# Using OpenSkills
openskills install fstandhartinger/ralph-wiggumFull Setup (Recommended)
For full Ralph Wiggum setup with constitution and interview:
# Tell your AI agent:
"Set up Ralph Wiggum using https://github.com/fstandhartinger/ralph-wiggum"The agent will guide you through a lightweight, pleasant setup:
1. Quick Setup (~1 min) — Create directories, download scripts 2. Project Interview — Focus on your vision and goals (not tech details) 3. Constitution — Create a guiding document for all sessions 4. Next Steps — Clear guidance on creating specs and starting Ralph
For existing projects, the agent detects your tech stack automatically. The interview prioritizes understanding what you're building and why.
Core Concepts
1. Fresh Context Each Loop
Each iteration of the Ralph loop starts a new AI agent process. This means:
- No context window overflow
- No degradation over time
- Clean slate for each task
2. Shared State on Disk
State persists between loops via files:
specs/— Feature specifications with acceptance criteriaralph_history.txt— Log of breakthroughs, blockers, learningsIMPLEMENTATION_PLAN.md— Optional detailed task breakdown
3. Completion Signal
The agent outputs <promise>DONE</promise> ONLY when:
- All acceptance criteria are verified
- Tests pass
- Changes are committed and pushed
The bash loop checks for this phrase. If not found, it retries.
4. Backpressure via Tests
Tests, lints, and builds act as guardrails. The agent must fix issues before outputting the completion signal.
Usage
Creating Specifications
The key to success: Each spec needs clear, testable acceptance criteria. This is what tells Ralph when a task is truly "done."
# Feature: User Authentication
## Requirements
- OAuth login with Google
- Session management
- Logout functionality
## Acceptance Criteria
- [ ] User can log in with Google
- [ ] Session persists across page reloads
- [ ] User can log out
- [ ] Tests pass
**Output when complete:** `<promise>DONE</promise>`Good criteria: "User can log in with Google and session persists" Bad criteria: "Auth works correctly"
The more specific your acceptance criteria, the better Ralph performs.
Running the Loop
# Start building (Claude Code)
./scripts/ralph-loop.sh
# With max iterations
./scripts/ralph-loop.sh 20
# Using Codex CLI
./scripts/ralph-loop-codex.shLogging (All Output Captured)
Every loop run writes all output to log files in logs/:
- Session log:
logs/ralph_*_session_YYYYMMDD_HHMMSS.log(entire run, including CLI output) - Iteration logs:
logs/ralph_*_iter_N_YYYYMMDD_HHMMSS.log(per-iteration CLI output) - Codex last message:
logs/ralph_codex_output_iter_N_*.txt
Two Modes
| Mode | Purpose | Command |
|---|---|---|
| build (default) | Pick spec, implement, test, commit | ./scripts/ralph-loop.sh |
| plan (optional) | Create detailed task breakdown | ./scripts/ralph-loop.sh plan |
Key Principles
Let Ralph Ralph
Trust the AI to self-identify, self-correct, and self-improve. Observe patterns and adjust prompts.
YOLO Mode
For Ralph to work effectively, enable full autonomy:
- Claude Code:
--dangerously-skip-permissions - Codex:
--dangerously-bypass-approvals-and-sandbox
⚠️ Use at your own risk. Only in sandboxed environments.
Links
- GitHub: https://github.com/fstandhartinger/ralph-wiggum
- Website: https://ralph-wiggum.ai
- Original methodology: Geoffrey Huntley's how-to-ralph-wiggum
Related skills
FAQ
What does ralph-wiggum do?
Autonomous AI coding with spec-driven development. Implements Geoffrey Huntley's iterative bash loop methodology where agents work through specs one at a time, outputting a completion signal only when acceptance criteria
When should I use ralph-wiggum?
Autonomous AI coding with spec-driven development. Implements Geoffrey Huntley's iterative bash loop methodology where agents work through specs one at a time, outputting a completion signal only when acceptance criteria
What are common prerequisites?
--- name: ralph-wiggum description: Autonomous AI coding with spec-driven development.
Is Ralph Wiggum safe to install?
skills.sh reports 0 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.