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
Roadmap notice: the
rails-ci-cd-setupskill referenced below is not yet implemented (see skill-catalog Roadmap). The templates on this page are kept as reference material so a maintainer can lift them when the skill ships. Until then, treat this workflow as informational, not as an active skill chain.
When to use: Configure CI/CD, deploy environment, or development infrastructure.
graph TB
subgraph Configure [⚙️ Phase 1: Configure]
direction TB
A[Need CI/CD] --> B[rails-ci-cd-setup]
B --> C{GitHub or GitLab?}
C --> D[Configure workflow]
end
subgraph Build [🔨 Phase 2: Build]
direction TB
D --> E[Parallel tests]
E --> F[Security scanning]
F --> G[Deploy strategy]
end
subgraph Verify [✅ Phase 3: Verify]
direction TB
G --> H{Working?}
H -- No --> D
end
H -- Yes --> I((Start Development))
%% Styling
style Configure fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
style Build fill:#e1f5fe,stroke:#01579b
style Verify fill:#fff3e0,stroke:#e65100
style C fill:#ffd54f
style H fill:#ffd54f
style I fill:#e8f5e9,stroke:#1b5e20,stroke-width:3pxGoal: Configure continuous integration pipeline for Rails.
bundle exec rspec on each PRrubocop, erb-lintbrakeman, bundle-audit# .github/workflows/ci.yml
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Setup Database
env:
RAILS_ENV: test
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test
run: |
bin/rails db:create db:migrate
- name: Run Tests
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test
run: bundle exec rspec
- name: Run Linters
run: |
bundle exec rubocop
bundle exec erb-lint app/views# Security job
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Brakeman
run: bundle exec brakeman -q -w2 --no-pager
- name: Bundle Audit
run: bundle exec bundle-audit check --update| Strategy | When to use | Complexity |
|---|---|---|
| Basic | Simple apps, low traffic | Low |
| Blue-Green | Zero-downtime required | Medium |
| Canary | Gradual rollout, high traffic | High |
| If setup is done... | Next step |
|---|---|
| CI/CD ready | rails-tdd-slices → development |
| Need new feature | create-prd → planning |
| Skill | Description | Trigger words |
|---|---|---|
| rails-ci-cd-setup (roadmap) | Configure CI/CD pipeline | "CI/CD", "GitHub Actions", "GitLab CI", "deploy" |
| rails-project-onboarding | Dev environment setup | "onboarding", "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