<h1 align="center">
<a href="https://prompts.chat">
Claude Code skills with RLM (Recursive Language Model) enhancements for autonomous coding and codebase analysis.
Sign in to like and favorite skills
Claude Code skills with RLM (Recursive Language Model) enhancements for autonomous coding and codebase analysis.
This repository contains production-ready skills for Claude Code, implementing MIT's Recursive Language Model patterns for:
Based on MIT RLM Research (December 2025).
RLM-enhanced autonomous coding agent
Location:
ralph-rlm/
Usage:
~/.claude/skills/ralph-rlm/scripts/ralph-rlm.sh 20 5 PRD.md
RLM-enhanced analysis pipeline
Location:
orchestrator/
Usage:
# Run full analysis pipeline claude -p "Run the analysis pipeline on /path/to/project" # Or use RLM scripts directly python3 orchestrator/scripts/rlm_inspector.py --action plan
Security vulnerability analysis
Analyzes codebases for:
Location:
security-analyst/
Code quality analysis
Reviews code for:
Location:
code-review/
Product Requirements Document generator
Creates detailed, actionable PRDs:
Location:
prd/
Ralph-RLM:
Orchestrator:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β SKILLS ECOSYSTEM β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€ β β β ββββββββββββββββ ββββββββββββββββ β β β Ralph-RLM ββββββββββΆβ Orchestrator β β β β (Execute) β β (Analyze) β β β ββββββββββββββββ ββββββββββββββββ β β β β β β β βΌ β β β ββββββββββββββββββββ β β β β Security Analyst β β β β β Code Review β β β β β PRD Generator β β β β ββββββββββββββββββββ β β β β β β ββββββββββββββββββββββββββ β β β β β ββββββββββΌββββββββββ β β β Implementation β β β β Complete β β β ββββββββββββββββββββ β β β β Flow: β β 1. Orchestrator analyzes codebase β PRD β β 2. Ralph-RLM executes PRD tasks β Implementation β β 3. Both use RLM patterns for efficiency β β 4. Both learn and improve over time β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Clone repository git clone [email protected]:georgesonk/claude-skills.git ~/.claude/skills # Or as a subdirectory git clone [email protected]:georgesonk/claude-skills.git ~/claude-skills ln -s ~/claude-skills ~/.claude/skills
After installation, restart Claude Code or run
/reset to load skills.
cd /path/to/your-project claude -p "Create a PRD for adding user authentication"
cd /path/to/your-project claude -p "Run the analysis pipeline on this project"
cd /path/to/your-project ~/.claude/skills/ralph-rlm/scripts/ralph-rlm.sh 20 5 PRD.md
cd /path/to/large-project python3 ~/.claude/skills/orchestrator/scripts/rlm_inspector.py --action plan > plan.json python3 ~/.claude/skills/orchestrator/scripts/rlm_parallel.py --action script --modules-json plan.json --output run.sh ./run.sh
Create
.ralph-rlm.json in project root:
{ "rlm_enabled": true, "decomposition_threshold": "medium", "verification_strictness": "high", "pattern_learning": { "enabled": true, "confidence_threshold": 0.30 } }
Automatically created in
.analysis/config.json:
{ "skills": ["security-analyst", "code-review", "prd"], "rlm": { "enabled": true, "module_size": 10, "parallel": { "enabled": true, "max_parallel": 4 } } }
Each skill includes comprehensive documentation:
Ralph-RLM:
ralph-rlm/SKILL.md - Complete usage guideralph-rlm/references/rlm-patterns.md - RLM patterns referenceralph-rlm/references/pattern-learning-guide.md - Pattern learning detailsOrchestrator:
orchestrator/SKILL.md - Complete usage guideorchestrator/references/parallel-analysis-guide.md - Parallel execution guideOverview:
RLM-IMPLEMENTATION-SUMMARY.md - Complete implementation summaryrg) for faster code searchingThis is a personal skills repository. If you'd like to adapt these skills for your own use:
Private repository - All rights reserved.
Kent Georgeson - GitLab
Status: Production Ready β Implementation Date: January 19, 2026 Based on: MIT RLM Research (arxiv.org/abs/2512.24601)