Curated library of 39 AI agent skills for Ruby on Rails development. Organized by category: planning, testing, code-quality, ddd, engines, infrastructure, api, patterns, context, orchestration, and workflows. Includes 5 callable workflow skills (rails-tdd-loop, rails-review-flow, rails-setup-flow, rails-quality-flow, rails-engines-flow) for complete development cycles. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and TDD automation.
95
98%
Does it follow best practices?
Impact
95%
1.20xAverage score across 35 eval scenarios
Passed
No known issues
The shape every SKILL.md in this library must converge on. The post-eval reinforcement pass uses this document as the audit checklist — if a skill is missing one of these sections, it is under-specified and will be brought into line.
This is the structural spec. For content principles (when to write a skill, how it should change model behavior), see skill-design-principles.md. For the eval-driven loop that decides which skills to reinforce next, see skill-optimization-guide.md.
1. Frontmatter (YAML)
2. Quick Reference — the bare minimum a model needs to act now
3. HARD-GATE — non-negotiable blocking rules (always tests-first when code is produced)
4. Core Process — step-by-step procedure with checkpoints
5. Output Style — exact shape of artifacts the skill produces
6. Integration — predecessor / successor skills, doc cross-linksOrder matters: Quick Reference comes before HARD-GATE so the model sees "what to do" before "what not to do." Output Style comes before Integration so the model knows the deliverable's shape before being handed off downstream.
Every SKILL.md begins with YAML frontmatter:
---
name: rails-something
description: >
One paragraph. Lead with what the skill does, follow with when to use it,
end with **trigger words / phrases** the model should pattern-match on.
This field is the discoverability surface — Tessl, Claude Code, Cursor,
and Windsurf all use it to route requests.
---Rules:
name MUST equal the directory name (validator enforces this).description is single-paragraph, ≤ ~120 words, ends with a comma-separated list of trigger phrases.A short block — usually a fenced code block or 3–7 bullet points — that lets the model act immediately if it reads nothing else. Examples of what belongs here:
rails g, bundle exec, etc.){ success:, response: }.")If a skill has no Quick Reference, the model often skips ahead to Core Process and misses the shortest path.
A boxed, blocking statement of what must hold before the model writes any code or returns its final artifact. For every code-producing skill the gate is:
HARD-GATE: Tests Gate Implementation
Implementation code CANNOT be written until:
1. The test EXISTS
2. The test has been RUN
3. The test FAILS for the right reason (feature missing, not a typo)Non-code-producing skills (review skills, planning skills, doc skills) still have a HARD-GATE — usually "do not skip the prior context skill" or "do not output until the deliverable matches Output Style exactly."
The HARD-GATE section must be scannable: a 3–6 line block, fenced or quoted, that the model cannot miss while skimming.
The numbered procedure. Includes:
db/schema.rb, also load rails-migration-safety").Keep steps imperative ("Write the spec", "Run bundle exec rspec path/to/spec") rather than declarative — the skill is an instruction sheet, not documentation of behavior.
The exact shape of every artifact this skill produces. This is the section most often missing today, and it is the biggest baseline-vs-context lever per the optimization guide. Include:
A skill without Output Style produces wildly different artifacts run-to-run; the eval cannot give it a stable score on the with-context axis.
Closes the loop with the rest of the library:
| Field | Content |
|---|---|
| Comes after | The skill(s) typically invoked before this one. |
| Comes before | The next skill in the chain (named, not described). |
| See also | Related skills the model should consider but not auto-load. |
| Workflow refs | Links to docs/workflow-guide.md and the relevant docs/workflows/NN-*.md page. |
scripts/validate-plugins.sh checks the structural pieces the validator can verify deterministically:
name matches directory namename and description keystile.json.skillstile.json ↔ disk inventory is bidirectionally in syncThe validator does not yet enforce the presence of HARD-GATE, Output Style, or Integration sections. Tessl evals catch the behavioural consequences of missing those sections — that is the loop the optimization guide describes.
SKILL.md mechanical conventions.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
scenario-27
scenario-28
scenario-29
scenario-30
scenario-31
scenario-32
scenario-33
scenario-34
scenario-35
mcp_server
skills
api
api-rest-collection
rails-graphql-best-practices
code-quality
rails-architecture-review
rails-code-conventions
rails-code-review
rails-review-response
rails-security-review
rails-stack-conventions
assets
snippets
refactor-safely
context
rails-context-engineering
rails-project-onboarding
ddd
ddd-boundaries-review
ddd-rails-modeling
ddd-ubiquitous-language
engines
rails-engine-compatibility
rails-engine-docs
rails-engine-extraction
rails-engine-installers
rails-engine-release
rails-engine-reviewer
rails-engine-testing
infrastructure
rails-api-versioning
rails-background-jobs
rails-database-seeding
rails-frontend-hotwire
rails-migration-safety
rails-performance-optimization
orchestration
rails-skills-orchestrator
patterns
ruby-service-objects
strategy-factory-null-calculator
yard-documentation
planning
create-prd
generate-tasks
ticket-planning
testing
rails-bug-triage
rails-tdd-slices
rspec-best-practices
rspec-service-testing