Open-Source Ralph Loop Toolkit for Claude Code: Pickle Rick and Mr. Meeseeks Agents

Open-Source Ralph Loop Implementation for Claude Code
An open-source extension for Claude Code provides what the creator calls "the most complete Ralph Loop implementation out there." The toolkit implements the Ralph Wiggum technique — blocking exit, re-injecting context, and repeating — with two distinct autonomous agents.
Pickle Rick: PRD-Driven Development Loop
The /pickle command runs full PRD-driven development loops that take tasks through this sequence: PRD → Breakdown → Research → Plan → Implement → Refactor. It uses isolated Morty worker subprocesses per ticket, with a stop hook that blocks Claude from exiting until the task is genuinely done.
The /pickle-tmux mode spawns a fresh claude -p per iteration to eliminate context drift on long epics. It includes PRD refinement with 3 parallel analysts and a Pickle Jar feature for batch queuing.
Mr. Meeseeks: Autonomous Code Review Loop
The /meeseeks command runs an autonomous code review loop that executes tests first on every pass, then scans with escalating focus:
- Passes 1-3: Security scanning
- Passes 4-5: Logic bug detection
- Passes 6-7: Dead code removal
- Passes 8-9: Consistency checking
- Pass 10+: Polish and refinement
Mr. Meeseeks fixes everything it finds and commits after every pass. It requires a minimum of 10 clean passes before accepting the codebase is clean and ceasing to exist.
Shared Infrastructure
Both agents use tmux with a live 3-pane dashboard showing monitor + log stream + runner log. They provide macOS notifications on completion and perform full context clearing between iterations. The project is ported from galz10's Pickle Rick Gemini CLI extension and extended significantly.
The source is available at github.com/gregorydickson/pickle-rick-claude.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Desktop + Blender via MCP: Real-Time 3D Workflow Closes the Feedback Loop
An open-source Blender add-on runs an MCP server inside Blender, letting Claude Desktop inspect scenes, create objects, render images, and read results—closing the script-paste feedback loop.

Open Source AI Context Packs for Legal, Compliance, and Finance Questions
A developer used Claude to research and build 32 free, open source context packs that provide specific answers to legal, compliance, and finance questions instead of generic 'consult a lawyer' responses. The packs cover GDPR, contracts, SaaS billing, EU AI Act, and more.

Claude Academy: A Free Coding Bootcamp That Runs Inside Claude Desktop
A developer has built Claude Academy, a free coding bootcamp that operates entirely within Claude Desktop's Code tab. The system uses three commands to deliver 64 structured lessons across web development fundamentals, with progress tracking and real project building.

Reflect MCP Server Implements Reflexion Paper for Persistent Coding Agent Memory
A developer implemented the Reflexion paper (Shinn et al., NeurIPS 2023) as an MCP server to give local coding agents persistent memory of their mistakes. The system uses regex-based pattern matching on error messages and stores lessons in SQLite with FTS5.