Curated library of 28 public AI agent skills for Ruby on Rails development. Organized by category: testing, code-quality, engines, infrastructure, api, and context. Covers code review, architecture, security, testing (RSpec), engines, Hotwire, and TDD automation. Shared Ruby skills (YARD docs, DDD, service objects) have moved to ruby-core-skills. Repository agents remain documented in GitHub but are intentionally excluded from the Tessl tile.
93
95%
Does it follow best practices?
Impact
93%
1.78xAverage score across 28 eval scenarios
Passed
No known issues
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" |
agents
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
skills
api
generate-api-collection
implement-graphql
code-quality
apply-code-conventions
apply-stack-conventions
assets
snippets
code-review
refactor-code
review-architecture
security-check
context
load-context
setup-environment
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
testing
plan-tests
test-service
write-tests