by Th0rgal
Type `ralph "prompt"` to start open code in a ralph loop. Also supports a prompt file & status check. Open Code, Claude Code, Codex, Copilot
# Add to your Claude Code skills
git clone https://github.com/Th0rgal/open-ralph-wiggumOpen Ralph Wiggum works with multiple AI coding agents. Switch between them using the --agent flag:
| Agent | Flag | Description |
|-------|------|-------------|
| Claude Code | --agent claude-code | Anthropic's Claude Code CLI for autonomous coding |
| | | OpenAI's Codex CLI for AI-powered development |
| | | GitHub Copilot CLI for agentic coding |
| | | Default agent, open-source AI coding assistant |
No comments yet. Be the first to share your thoughts!
--agent codex--agent copilot--agent opencode# Use Claude Code
ralph "Build a REST API" --agent claude-code --max-iterations 10
# Use OpenAI Codex
ralph "Create a CLI tool" --agent codex --max-iterations 10
# Use Copilot CLI
ralph "Refactor the auth module" --agent copilot --max-iterations 10
# Use OpenCode (default)
ralph "Fix the failing tests" --max-iterations 10
Open Ralph Wiggum implements the Ralph Wiggum technique — an autonomous agentic loop where an AI coding agent (Claude Code, Codex, or OpenCode) receives the same prompt repeatedly until it completes a task. Each iteration, the AI sees its previous work in files and git history, enabling self-correction and incremental progress.
This ...