Curated library of 39 AI agent skills for Ruby on Rails development. Organized by category: planning, testing, code-quality, ddd, engines, infrastructure, api, patterns, context, orchestration, and workflows. Includes 5 callable workflow skills (rails-tdd-loop, rails-review-flow, rails-setup-flow, rails-quality-flow, rails-engines-flow) for complete development cycles. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and TDD automation.
95
98%
Does it follow best practices?
Impact
95%
1.20xAverage score across 35 eval scenarios
Passed
No known issues
When to use: New to a project, need to understand the codebase, or setting up development environment.
graph TB
subgraph Context [🔍 Phase 1: Understand]
direction TB
A[New to project] --> B[rails-context-engineering]
B --> C{Understood?}
C -- No --> B
end
subgraph Setup [⚙️ Phase 2: Setup]
direction TB
C -- Yes --> D[rails-project-onboarding]
D --> E{Ready?}
E -- No --> D
end
E -- Yes --> F((Start Development))
%% Styling
style Context fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
style Setup fill:#e1f5fe,stroke:#01579b
style C fill:#ffd54f
style E fill:#ffd54f
style F fill:#e8f5e9,stroke:#1b5e20,stroke-width:3pxGoal: Load the minimum context needed before writing code, tests, or PRDs.
What it does:
db/schema.rb — data structureconfig/routes.rb — HTTP surfaceOutput: Context Summary posted before any code proposal.
When to invoke:
Goal: Complete development environment setup.
app/
├── controllers/ # HTTP layer, thin
├── models/ # Domain logic + persistence
├── services/ # Business operations
├── jobs/ # Background processing
├── views/ # ERB/HAML + Hotwire
└── helpers/ # View utilities
config/
├── routes.rb # Routing table
└── initializers/ # Gem configs
spec/ or test/
├── models/ # Unit tests
├── requests/ # Integration tests
├── services/ # Service tests
└── system/ # E2E tests
docs/
├── architecture.md # System design
├── api/ # API documentation
└── workflows/ # This directory# Standard setup
bin/rails db:create
bin/rails db:migrate
bin/rails db:seed
# Test environment
RAILS_ENV=test bin/rails db:create db:migrate
# With Docker
docker-compose up -d db
docker-compose run web bin/rails db:create db:migrate db:seed| Variable | Purpose | Where to define |
|---|---|---|
DATABASE_URL | DB connection | .env / env vars |
REDIS_URL | Cache/Sidekiq | .env |
RAILS_MASTER_KEY | Encrypted credentials | env var only (never in repo) |
AWS_* / S3_* | Storage | credentials.yml.enc |
SENDGRID_* | credentials.yml.enc | |
STRIPE_* | Payments | credentials.yml.enc |
| If you need... | Next skill |
|---|---|
| To plan a feature | create-prd → planning |
| To start coding | rails-tdd-slices → development |
| To fix a bug | rails-bug-triage → development#bug-fix |
| To configure CI/CD | (roadmap — rails-ci-cd-setup, see setup) |
DO NOT write implementation code before running rails-context-engineering.
ALWAYS post the Context Summary and resolve any ambiguities first.| Skill | Description | Trigger words |
|---|---|---|
| rails-context-engineering | Load context before coding | "load context", "before I code", "match existing style" |
| rails-project-onboarding | Dev environment setup | "onboarding", "new dev", "setup project", "Docker" |
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
scenario-27
scenario-28
scenario-29
scenario-30
scenario-31
scenario-32
scenario-33
scenario-34
scenario-35
mcp_server
skills
api
api-rest-collection
rails-graphql-best-practices
code-quality
rails-architecture-review
rails-code-conventions
rails-code-review
rails-review-response
rails-security-review
rails-stack-conventions
assets
snippets
refactor-safely
context
rails-context-engineering
rails-project-onboarding
ddd
ddd-boundaries-review
ddd-rails-modeling
ddd-ubiquitous-language
engines
rails-engine-compatibility
rails-engine-docs
rails-engine-extraction
rails-engine-installers
rails-engine-release
rails-engine-reviewer
rails-engine-testing
infrastructure
rails-api-versioning
rails-background-jobs
rails-database-seeding
rails-frontend-hotwire
rails-migration-safety
rails-performance-optimization
orchestration
rails-skills-orchestrator
patterns
ruby-service-objects
strategy-factory-null-calculator
yard-documentation
planning
create-prd
generate-tasks
ticket-planning
testing
rails-bug-triage
rails-tdd-slices
rspec-best-practices
rspec-service-testing