Curated library of AI agent skills for Ruby on Rails development. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and workflow automation.
98
99%
Does it follow best practices?
Impact
98%
1.38xAverage score across 26 eval scenarios
Passed
No known issues
Step-by-step install and verification for the rails-agent-skills repository on each supported platform.
There are two primary methods for making skills available to your AI assistant:
Claude Code discovers skills from ~/.claude/skills/ and loads ~/.claude/CLAUDE.md automatically in every session. Two symlinks are required.
# 1. Clone the repo (once per machine)
git clone git@github.com:igmarin/rails-agent-skills.git ~/skills/rails-agent-skills
# 2. Global instructions (loaded in every session, across all projects)
ln -sf ~/skills/rails-agent-skills/CLAUDE.md ~/.claude/CLAUDE.md
# 3. Skills (adds each skill individually — safe, preserves any existing skills)
mkdir -p ~/.claude/skills
for dir in ~/skills/rails-agent-skills/*/; do
ln -sf "$dir" ~/.claude/skills/
doneOpen a new session and run /skills — all skills will appear.
cd ~/skills/rails-agent-skills && git pull
# Add any new skills that were added to the repo
for dir in ~/skills/rails-agent-skills/*/; do
ln -sf "$dir" ~/.claude/skills/
doneRepeat the installation steps above.
# Clone the repo (once per machine)
git clone git@github.com:igmarin/rails-agent-skills.git ~/skills/rails-agent-skills
# Cursor
ln -s ~/skills/rails-agent-skills ~/.cursor/skills/rails-agent-skills
# Windsurf
ln -s ~/skills/rails-agent-skills ~/.windsurf/skills/rails-agent-skillsRestart your IDE for changes to take effect.
Updating: git pull in the repo — symlinks reflect changes immediately.
Cmd+,) → search "Model Context Protocol Servers".ruby ~/skills/rails-agent-skills/mcp_server/server.rb# Clone the repo (once per machine)
git clone git@github.com:igmarin/rails-agent-skills.git ~/skills/rails-agent-skills
# Symlink GEMINI.md to the Gemini CLI global config directory
ln -s ~/skills/rails-agent-skills/GEMINI.md ~/.gemini/GEMINI.mdRequires starting a new session to pick up changes.
# Clone directly into Codex skills
mkdir -p ~/.codex/skills
git clone git@github.com:igmarin/rails-agent-skills.git ~/.codex/skills/rails-agent-skills
# Or symlink if you already have the repo cloned
ln -s ~/skills/rails-agent-skills ~/.codex/skills/rails-agent-skillsWindows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.codex\skills"
git clone git@github.com:igmarin/rails-agent-skills.git "$env:USERPROFILE\.codex\skills\rails-agent-skills"Updating: cd ~/.codex/skills/rails-agent-skills && git pull
The MCP Server is the recommended method for RubyMine. The symlink approach is not reliably supported for custom skill injection.
Cmd+,) → navigate to Tools → AI Assistant → Model Context Protocol.ruby ~/skills/rails-agent-skills/mcp_server/server.rbThe session-start hook automatically injects the rails-skills-orchestrator bootstrap skill at the beginning of each session. Defined in hooks/hooks.json, executed by hooks/session-start.
For Claude Code, ~/.claude/CLAUDE.md (symlinked from this repo) is the primary mechanism. The session-start hook is retained for completeness and future marketplace support, but is not required for local installs.
| Platform | Context injection field |
|---|---|
| Claude Code | hookSpecificOutput.additionalContext |
| Cursor / Others | additional_context |
| Issue | Solution |
|---|---|
/skills shows "No skills found" (Claude Code) | Re-run the for dir loop to create per-skill symlinks in ~/.claude/skills/ |
| Skills not available (Claude Code) | Verify symlink: ls -la ~/.claude/CLAUDE.md |
| Skills not discovered (Cursor/Codex) | Check symlink/path and restart the platform |
| Hook not firing | Verify hooks/session-start is executable: chmod +x hooks/session-start |
| Changes not picked up (Claude Code) | Run git pull in the repo and start a new session |
| Changes not picked up (Cursor) | Run git pull in the repo; symlinks reflect changes immediately |
| Wrong platform behavior | Verify the correct plugin config for your platform (.claude-plugin/ vs .cursor-plugin/) |
api-rest-collection
create-prd
ddd-boundaries-review
ddd-rails-modeling
ddd-ubiquitous-language
docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10
scenario-11
scenario-12
scenario-13
scenario-14
scenario-15
scenario-16
scenario-17
scenario-18
scenario-19
scenario-20
scenario-21
scenario-22
scenario-23
scenario-24
scenario-25
scenario-26
generate-tasks
mcp_server
rails-architecture-review
rails-background-jobs
rails-bug-triage
rails-code-conventions
rails-code-review
rails-engine-compatibility
rails-engine-docs
rails-engine-extraction
rails-engine-installers
rails-engine-release
rails-engine-reviewer
rails-engine-testing
rails-graphql-best-practices
rails-migration-safety
rails-review-response
rails-security-review
rails-skills-orchestrator
rails-stack-conventions
rails-tdd-slices
refactor-safely
rspec-best-practices
rspec-service-testing
ruby-service-objects
strategy-factory-null-calculator
ticket-planning
yard-documentation