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
Use this skill when the domain language is fuzzy, overloaded, or inconsistent.
Core principle: Agree on business language before choosing models, services, or boundaries.
| Topic | Rule |
|---|---|
| Canonical term | Pick one business term for one concept |
| Synonyms | Capture them, then choose one preferred term |
| Overloaded words | Flag them early; split meanings explicitly |
| Naming | Prefer business meaning over technical shorthand |
| Output | Return a usable glossary, not abstract theory |
DO NOT introduce DDD terminology without grounding it in the user's real domain language.
DO NOT rename code concepts until the glossary is explicit enough to justify the change.
ALWAYS flag overloaded or conflicting terms before recommending modeling changes.review-domain-boundaries when the glossary reveals multiple contexts, or to model-domain when the main problem is tactical modeling in Rails.grep -rh "^class \|^module " app/models app/controllers app/services --include="*.rb" | sortreview-domain-boundaries, model-domain, or create-prd / generate-tasks depending on the workflow stage.When using this skill, return:
Minimal example (one row):
| Canonical term | Aliases | Definition | Invariant | Context |
|---|---|---|---|---|
| Shipment | Parcel, Package | Physical goods sent to a customer address | Must reference a valid Order | Fulfillment |
Open questions: Does "Parcel" ever mean an internal warehouse bin ID? If yes, split into two glossary entries.
See assets/examples.md for a full worked glossary example and common mistakes.
| Skill | When to chain |
|---|---|
| create-prd | When a PRD needs cleaner business language before approval |
| review-domain-boundaries | When the glossary suggests multiple bounded contexts or language leakage |
| model-domain | When the terms are clear enough to decide entities, value objects, and services |
| review-architecture | When naming confusion already appears in the code structure |
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