Curated library of 42 public AI agent skills for Ruby on Rails development, plus 5 callable workflow skills. Organized by category: planning, testing, code-quality, ddd, engines, infrastructure, api, patterns, context, orchestration, and workflows. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and TDD automation.
96
96%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Risky
Do not use without reviewing
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 review-migration").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.build
docs
mcp_server
skills
api
generate-api-collection
implement-graphql
code-quality
apply-code-conventions
apply-stack-conventions
assets
snippets
code-review
refactor-code
respond-to-review
review-architecture
security-check
context
load-context
setup-environment
ddd
define-domain-language
model-domain
review-domain-boundaries
engines
create-engine
create-engine-installer
document-engine
extract-engine
release-engine
review-engine
test-engine
upgrade-engine
infrastructure
implement-background-job
implement-hotwire
optimize-performance
review-migration
seed-database
version-api
orchestration
skill-router
patterns
create-service-object
implement-calculator-pattern
write-yard-docs
planning
create-prd
generate-tasks
plan-tickets
testing
plan-tests
test-service
triage-bug
write-tests
workflows