Curated library of 41 public AI agent skills for Ruby on Rails development. Organized by category: planning, testing, code-quality, ddd, engines, infrastructure, api, patterns, context, and orchestration. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and TDD automation. Repository workflows remain documented in GitHub but are intentionally excluded from the Tessl tile.
95
93%
Does it follow best practices?
Impact
96%
1.77xAverage score across 41 eval scenarios
Passed
No known issues
Roadmap notice: the
setup-ci-cdskill 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[setup-ci-cd]
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@34e114876b0b11c390a56381ad16ebd13914f8d5
- name: Setup Ruby
uses: ruby/setup-ruby@ff740bc00a01b3a50fffc55a1071b1060eeae9dc
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@34e114876b0b11c390a56381ad16ebd13914f8d5
- name: Setup Ruby
uses: ruby/setup-ruby@ff740bc00a01b3a50fffc55a1071b1060eeae9dc
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 | plan-tests → development |
| Need new feature | create-prd → planning |
| Skill | Description | Trigger words |
|---|---|---|
| setup-ci-cd (roadmap) | Configure CI/CD pipeline | "CI/CD", "GitHub Actions", "GitLab CI", "deploy" |
| setup-environment | 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
scenario-36
scenario-37
scenario-38
scenario-39
scenario-40
scenario-41
mcp_server
skills
api
generate-api-collection
implement-graphql
code-quality
apply-code-conventions
apply-stack-conventions
assets
snippets
code-review
refactor-code
respond-to-review
review-architecture
security-check
context
load-context
setup-environment
ddd
define-domain-language
model-domain
review-domain-boundaries
engines
create-engine
create-engine-installer
document-engine
extract-engine
release-engine
review-engine
test-engine
upgrade-engine
infrastructure
implement-background-job
implement-hotwire
optimize-performance
review-migration
seed-database
version-api
orchestration
skill-router
patterns
create-service-object
implement-calculator-pattern
write-yard-docs
planning
create-prd
generate-tasks
plan-tickets
testing
plan-tests
test-service
triage-bug
write-tests
workflows