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 uses Ruby constants for error messages and defaults, writes YARD documentation on public methods, creates class-only (static) services when no instance state is needed, and produces a README for the module.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Error message constants",
"description": "At least two error messages or default values are defined as Ruby constants (ALL_CAPS names) rather than inline string or numeric literals",
"max_score": 12
},
{
"name": "YARD on self.call",
"description": "The `.call` class method has a YARD comment block (starts with `# @param` or `# @return` or `##`)",
"max_score": 10
},
{
"name": "YARD on other public methods",
"description": "At least one other public method (besides `.call`) has a YARD comment block",
"max_score": 8
},
{
"name": "Class-only service used",
"description": "At least one helper or validator class uses only class methods (no instance variables, no `new`) for stateless operations",
"max_score": 12
},
{
"name": "No instance state in class-only service",
"description": "The class-only service does NOT define `initialize`, `attr_reader`, or instance variables",
"max_score": 10
},
{
"name": "README present",
"description": "A `README.md` file is created that documents the module's purpose and public interface",
"max_score": 10
},
{
"name": "Frozen string literal",
"description": "Every service file begins with `# frozen_string_literal: true`",
"max_score": 8
},
{
"name": "Response format",
"description": "The main service returns `{ success: true/false, response: { ... } }` for both success and failure",
"max_score": 10
},
{
"name": "Module namespace matches directory",
"description": "Service file is under `app/services/<module>/` and the Ruby module name matches that directory",
"max_score": 8
},
{
"name": "Constants not duplicated inline",
"description": "The defined constants are actually used in the code — no same string/number appears as both a constant definition AND a duplicated literal elsewhere in the same file",
"max_score": 12
}
]
}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