Entry point for Rails development workflows covering TDD, RSpec, Service Objects, DDD, GraphQL, Engines, and Code Quality...
This skill coordinates disciplined Rails development by sequencing atomic skills for each task. It defines what to run, in what order, and how to validate each step.
Core principle: Atomic, task-specific instructions that turn AI coding assistants into reliable Rails collaborators through TDD and idiomatic patterns.
To activate an atomic skill, read its corresponding Markdown file from the skills bundle and follow its instructions as the operative prompt for that step. If a skill file is unavailable, use the inline fallback guidance in the Skill Catalog below rather than halting entirely — note any gaps in output and proceed with best-effort idiomatic Rails conventions.
load-context.bundle exec rspec <spec_file> before implementation begins.load-context. Confirm schema, routes, and patterns are loaded before any other step.plan-tests. Output: a list of pending test cases with descriptions.write-tests. Run bundle exec rspec <spec_file> — confirm output shows red (failure for the right reason). Then activate implement. Run bundle exec rspec <spec_file> — confirm green. Then activate apply-code-conventions.write-yard-docs and code-review.Output Style checklist before proceeding to the next step. If a step produces unexpected failures, re-run load-context before retrying.Step 1 — load-context
Input: project root directory
Action: Read schema.rb, routes.rb, and existing service objects
Output: Confirmed patterns (e.g., services inherit ApplicationService, use call)
Step 2 — plan-tests
Input: "Create an OrderFulfillmentService"
Output: [
"returns success when inventory is available",
"returns failure when inventory is insufficient",
"enqueues FulfillmentJob on success"
]
Step 3 — write-tests
Input: test plan above
Output: spec/services/order_fulfillment_service_spec.rb (written, not passing)
Validate: bundle exec rspec spec/services/order_fulfillment_service_spec.rb
→ Expect: 3 examples, 3 failures (NameError or similar — feature missing)
Step 4 — implement
Input: failing spec
Output: app/services/order_fulfillment_service.rb
Validate: bundle exec rspec spec/services/order_fulfillment_service_spec.rb
→ Expect: 3 examples, 0 failures
Step 5 — apply-code-conventions + write-yard-docs + code-review
Output: Linted file with YARD docs and review comments resolved
| Category | Skill | Fallback Guidance (if file unavailable) |
|---|---|---|
| Context | load-context |
Read schema.rb, routes.rb, and a sample service/model; note conventions manually |
| Testing | plan-tests |
List expected behaviours as RSpec it descriptions before writing code |
| Testing | write-tests |
Write RSpec examples using described_class, let, expect, have_received idioms |
| Testing | test-service, triage-bug |
Follow standard RSpec unit-test patterns; isolate dependencies with doubles |
| DDD | define-domain-language, model-domain, review-domain-boundaries |
Apply standard DDD vocabulary; group by bounded context |
| Quality | code-review, security-check, apply-code-conventions, refactor-code |
Apply Rails best practices, Brakeman findings, and RuboCop rules inline |
| API/Infra | implement-graphql, integrate-api-client, implement-background-job, review-migration |
Follow graphql-ruby conventions, ActiveJob patterns, and strong-migration rules |
| Engines | create-engine, test-engine, release-engine, document-engine |
Use rails plugin new --mountable; isolate specs under spec/ inside the engine root |
| Patterns | create-service-object, write-yard-docs |
Inherit ApplicationService, expose .call, document with @param/@return YARD tags |
| Setup | setup-environment |
Verify Ruby version, bundle install, and bin/rails db:setup |
The complete list of all 28 local atomic skills and 9 personas is defined in directory.json at the project root. This repository also depends on igmarin/ruby-core-skills for 15 additional core skills (Process, Code Quality, Orchestration, DDD, and Ruby patterns).
directory.json (project root): Canonical registry of all 28 local atomic skills and 9 personas — names, file paths, and metadata. This is the source of truth for skill discovery.docs/reference/skill-catalog.md: Human-readable reference with usage notes for each skill; useful for manual lookup when directory.json is unavailable.skill-router: Orchestration layer that maps incoming tasks to the correct atomic skill sequence; invoked automatically when this entry-point skill is activated.This repository depends on igmarin/ruby-core-skills for foundational DDD and Ruby pattern skills. The following 15 core skills are auto-detected and available when this plugin is installed alongside ruby-core-skills:
DDD Skills (3):
define-domain-language — Domain terms glossaryreview-domain-boundaries — Review bounded contexts and language leakagemodel-domain — Map DDD to Rails (models, services, value objects)Ruby Pattern Skills (4):
create-service-object — .call pattern, response contract, YARDintegrate-api-client — Layered architecture for external APIsimplement-calculator-pattern — Variant-based calculatorswrite-yard-docs — Inline documentation with YARDProcess Skills (5):
tdd-process — TDD discipline and workflowrefactor-process — Refactor preserving behaviorreview-process — Systematic code reviewsecurity-review-process — Security audit workflowtest-planning-process — Test planning and selectionCode Quality Skills (2):
triage-bug — Bug diagnosis and reproductionrespond-to-review — Respond to review feedbackOrchestration Skills (1):
skill-router — Routes to correct specialized skill