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 adds complete and correct YARD documentation to a Ruby service class, including class-level summaries, @param, @option tags for hash arguments, @return shapes, @raise for raised exceptions, and English-only text.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Class-level summary",
"description": "The Billing::SubscriptionBillingService class has a one-line YARD summary comment directly above the class definition",
"max_score": 8
},
{
"name": "self.call @param",
"description": "self.call has a @param tag documenting the params argument with its type (e.g. [Hash])",
"max_score": 8
},
{
"name": "@option for hash keys",
"description": "self.call uses @option tags (not just @param) to enumerate the valid hash keys: at minimum :plan, :customer_id, and :action",
"max_score": 12
},
{
"name": "self.call @return",
"description": "self.call has a @return tag documenting the return shape (Hash with :success and :response keys)",
"max_score": 10
},
{
"name": "@raise for InvalidPlanError",
"description": "self.call or call documents @raise [Billing::InvalidPlanError] (or InvalidPlanError) as a possible exception",
"max_score": 10
},
{
"name": "@raise for PaymentGatewayError",
"description": "self.call or call documents @raise [Billing::PaymentGatewayError] (or PaymentGatewayError) as a possible exception",
"max_score": 8
},
{
"name": "supported_plans @return",
"description": "self.supported_plans has a @return tag documenting its return type (e.g. [Array<String>])",
"max_score": 8
},
{
"name": "English only",
"description": "All YARD comment text (summaries, descriptions, tag descriptions) is written in English — no other language used",
"max_score": 8
},
{
"name": "No logic changes",
"description": "The Ruby implementation logic is unchanged — only YARD comments were added (the method bodies remain identical to the input)",
"max_score": 10
},
{
"name": "initialize documented",
"description": "The initialize method has at least a @param tag for the params argument",
"max_score": 8
},
{
"name": "@example present",
"description": "At least one public method (self.call recommended) has a @example tag showing sample usage",
"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