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 implements the full 5-layer Auth→Client→Fetcher→Builder→DomainEntity pattern with correct file placement, class structure, and constants as prescribed for Ruby API client integrations.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Auth file exists",
"description": "app/services/weather_service/auth.rb exists and defines a class named Auth within a module namespace",
"max_score": 5
},
{
"name": "Client file exists",
"description": "app/services/weather_service/client.rb exists and defines a class named Client within the same module namespace",
"max_score": 5
},
{
"name": "Fetcher file exists",
"description": "app/services/weather_service/fetcher.rb exists and defines a class named Fetcher within the same module namespace",
"max_score": 5
},
{
"name": "Builder file exists",
"description": "app/services/weather_service/builder.rb exists and defines a class named Builder within the same module namespace",
"max_score": 5
},
{
"name": "Domain entity file exists",
"description": "A domain entity file (e.g. reading.rb) exists in app/services/weather_service/ and defines a class within the module namespace",
"max_score": 5
},
{
"name": "Auth self.default",
"description": "Auth class defines a self.default class method that reads credentials from configuration (not hardcoded values)",
"max_score": 8
},
{
"name": "Auth token caching",
"description": "Auth#token method caches the token in an instance variable (pattern: return @token if @token)",
"max_score": 8
},
{
"name": "Client::Error class",
"description": "Client class defines a nested Error class inheriting from StandardError",
"max_score": 8
},
{
"name": "Client constants",
"description": "Client class defines MISSING_CONFIGURATION_ERROR string constant, DEFAULT_TIMEOUT, and DEFAULT_RETRIES numeric constants",
"max_score": 8
},
{
"name": "Fetcher DI constructor",
"description": "Fetcher initializer accepts client as positional argument and data_builder and default_query as keyword arguments",
"max_score": 8
},
{
"name": "Fetcher constants",
"description": "Fetcher class defines MAX_RETRIES and RETRY_DELAY_IN_SECONDS constants",
"max_score": 7
},
{
"name": "Builder attribute filtering",
"description": "Builder#build method uses slice (or select/filter) to restrict output fields to a whitelist — does NOT return all raw API fields",
"max_score": 8
},
{
"name": "Entity ATTRIBUTES constant",
"description": "Domain entity defines an ATTRIBUTES frozen array constant listing the whitelisted field names",
"max_score": 8
},
{
"name": "Entity DEFAULT_QUERY constant",
"description": "Domain entity defines a DEFAULT_QUERY string constant containing a SQL or query string",
"max_score": 7
},
{
"name": "README present",
"description": "A README.md file is present in the module directory",
"max_score": 5
}
]
}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