Curated library of 42 public AI agent skills for Ruby on Rails development, plus 5 callable workflow skills. Organized by category: planning, testing, code-quality, ddd, engines, infrastructure, api, patterns, context, orchestration, and workflows. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and TDD automation.
96
96%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Risky
Do not use without reviewing
When to use: Review your own or others' code, respond to feedback, or audit security/architecture.
graph TB
subgraph Review [👁️ Phase 1: Review]
direction TB
A[PR ready] --> B[code-review]
B --> C{Security concerns?}
C -- Yes --> D[security-check]
end
subgraph DeepDive [🔍 Phase 2: Deep Dive - Optional]
direction TB
C -- No --> E{Architecture issues?}
E -- Yes --> F[review-architecture]
D --> F
end
subgraph Respond [📝 Phase 3: Respond]
direction TB
E -- No --> G{Findings?}
F --> G
G -- Critical --> H[respond-to-review]
H --> I[Implement fixes]
I --> J{Critical fixed?}
J -- No --> K[Re-review]
J -- Yes --> L((Merge))
end
G -- None/minor --> L
K --> B
%% Styling
style Review fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
style DeepDive fill:#f3e5f5,stroke:#4a148c
style Respond fill:#e1f5fe,stroke:#01579b
style C fill:#ffd54f
style E fill:#ffd54f
style G fill:#ffd54f
style J fill:#ffd54f
style L fill:#e8f5e9,stroke:#1b5e20,stroke-width:3pxGoal: Systematic Rails PR review.
| Area | What to review |
|---|---|
| Routing | RESTful routes, shallow nesting, route helpers |
| Controllers | Thin, 1-line actions, strong params, callbacks audit |
| Models | Validations, scopes, callbacks, N+1 queries |
| Queries | Eager loading, pluck vs map, exists? vs present? |
| Migrations | Reversible, index names, null constraints |
| Security | Strong params, auth checks, output encoding |
| Testing | Correct spec type, minimal factories, no internal mocks |
| Jobs | Idempotency, retry config, log context |
| Level | Action |
|---|---|
| Critical | Blocks merge — fix before merging |
| Suggestion | Fix in this PR or separate ticket |
| Nice to have | Optional, does not block |
Goal: Deep security dive.
Goal: Structural review of boundaries and abstractions.
Goal: Respond to received feedback.
Anti-pattern: "LGTM! Will address in follow-up" — no performative agreement
| Skill | Description | Trigger words |
|---|---|---|
| code-review | Systematic PR review | "review PR", "code review", "check this code" |
| security-check | Security audit | "security", "audit", "vulnerability", "XSS", "SQL injection" |
| review-architecture | Structural review | "architecture", "structure", "boundaries", "extract" |
| respond-to-review | Respond to feedback | "feedback", "review comments", "address feedback" |
| generate-api-collection | API testing docs | "Postman", "API collection", "REST endpoints" |
build
docs
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