Curated library of AI agent skills for Ruby on Rails development. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and workflow automation.
98
99%
Does it follow best practices?
Impact
98%
1.38xAverage score across 26 eval scenarios
Passed
No known issues
{
"context": "Tests whether the agent follows the refactor-safely protocol: writing characterization tests that pass on the existing code before any structural change, explicitly stating stable behavior, proposing a minimal step-by-step sequence, verifying tests after each step with concrete evidence, and avoiding mixing behavior changes with structural work.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Stable behavior statement",
"description": "A written statement declaring which behaviors must not change is present before or alongside the refactoring plan — not implied, but explicitly stated",
"max_score": 10
},
{
"name": "Characterization tests before refactoring",
"description": "Spec or test file content appears in the process log or workspace before any implementation-level structural change is described — test code is NOT introduced after the new service file",
"max_score": 15
},
{
"name": "Characterization tests target current code",
"description": "The characterization tests are written against the existing code (the fat controller or original structure), not the extracted service — they protect existing behavior, not new behavior",
"max_score": 10
},
{
"name": "Smallest safe sequence proposed",
"description": "The refactoring plan lists discrete steps in sequence (numbered or ordered), extracting one boundary per step, not a single all-at-once rewrite",
"max_score": 10
},
{
"name": "Test run evidence per step",
"description": "The process log contains at least two entries that report concrete test run results (e.g. pass count, zero failures, exit code) at different points in the sequence — NOT just a final result",
"max_score": 15
},
{
"name": "No behavior mixed with structure",
"description": "The refactoring does NOT alter application logic (add discount rules, change tax calculation, add validations) in the same commit or step as the structural extraction",
"max_score": 12
},
{
"name": "Temporary compatibility noted",
"description": "If the public interface changes (e.g. the controller action delegates to a new class), the process log or plan explicitly identifies any interim shim or compatibility wrapper and states when it will be removed",
"max_score": 8
},
{
"name": "No forbidden confidence claims",
"description": "The process log does NOT contain any of the following unsupported claims without accompanying test evidence: 'should work', 'looks correct', 'I'm confident', or 'this is fine'",
"max_score": 10
},
{
"name": "One boundary extracted per step",
"description": "Each numbered step in the plan/log touches a single extraction target (e.g. only the pricing logic, or only the notification dispatch) — not multiple unrelated concerns in one step",
"max_score": 10
}
]
}api-rest-collection
create-prd
ddd-boundaries-review
ddd-rails-modeling
ddd-ubiquitous-language
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
generate-tasks
mcp_server
rails-architecture-review
rails-background-jobs
rails-bug-triage
rails-code-conventions
rails-code-review
rails-engine-compatibility
rails-engine-docs
rails-engine-extraction
rails-engine-installers
rails-engine-release
rails-engine-reviewer
rails-engine-testing
rails-graphql-best-practices
rails-migration-safety
rails-review-response
rails-security-review
rails-skills-orchestrator
rails-stack-conventions
rails-tdd-slices
refactor-safely
rspec-best-practices
rspec-service-testing
ruby-service-objects
strategy-factory-null-calculator
ticket-planning
yard-documentation