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 produces a Postman-compatible API collection for a set of Rails REST endpoints, following the api-rest-collection skill: correct format version, file location, use of base_url variable, complete endpoint coverage, and valid JSON.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Postman v2.1 schema",
"description": "The collection JSON includes a 'info' object with a 'schema' field containing the Postman Collection v2.1 schema URL (postman.com/schemas/collection/v2.1.0/collection.json)",
"max_score": 12
},
{
"name": "Correct file location",
"description": "The collection file is saved at docs/api-collections/<name>.json OR spec/fixtures/api-collections/<name>.json — NOT in any other location",
"max_score": 12
},
{
"name": "base_url variable used",
"description": "Every request URL in the collection uses {{base_url}} as the host/base rather than a hardcoded URL or hostname",
"max_score": 12
},
{
"name": "All endpoints present",
"description": "The collection contains a request entry for every endpoint defined in the provided routes/controller code — no endpoint is omitted",
"max_score": 12
},
{
"name": "HTTP methods correct",
"description": "Each request entry specifies the correct HTTP method (GET, POST, PUT/PATCH, DELETE) matching the route definition",
"max_score": 10
},
{
"name": "Headers included",
"description": "Each request entry includes at least one header (e.g. Content-Type, Authorization, or Accept)",
"max_score": 10
},
{
"name": "Body examples for POST/PUT",
"description": "Requests using POST or PUT/PATCH include a body example with representative field values",
"max_score": 10
},
{
"name": "Syntactically valid JSON",
"description": "The collection file is valid JSON (no trailing commas, unmatched brackets, or syntax errors)",
"max_score": 12
},
{
"name": "URL path parameters",
"description": "Requests with path parameters (e.g. /orders/:id) use the Postman path variable syntax (:id or {{id}}) rather than hardcoded example IDs",
"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