workflows/rails-engines-flow/SKILL.md
Complete Rails engine development workflow. Orchestrates scaffolding engine structure and generating mountable namespaces → testing → code review and dependency auditing → release. Use when creating, extracting, or maintaining Rails engines. Trigger: create engine, extract engine, engine release, engine testing, mountable engine, gem extraction.
npx skillsauth add igmarin/rails-agent-skills rails-engines-flowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
Security scan pending...
This skill is queued for security scanning. Results will appear when the scan completes.
Orchestrates the full lifecycle of Rails engine development from scaffolding to release.
Scaffold and structure the engine:
Kickoff command:
rails plugin new my_engine --mountable --skip-test
Expected directory structure after scaffolding:
my_engine/
app/
config/routes.rb
lib/my_engine/engine.rb
lib/my_engine/version.rb
lib/my_engine.rb
my_engine.gemspec
test/dummy/
HARD GATE — Engine Structure Check:
# Verify namespace isolation
grep -r 'module MyEngine' lib/my_engine/engine.rb
# Verify gemspec metadata is complete
ruby -e "require 'rubygems'; spec = Gem::Specification.load('my_engine.gemspec'); puts spec.validate"
# Verify isolated migrations declared
grep 'isolate_namespace\|engine.config.isolate_namespace' lib/my_engine/engine.rb
MyEngine:: not ::)gem specification validationIf structure check FAILS: Return to rails-engine-author and fix.
Proceed only after structure check passes.
skills/engines/rails-engine-testing — Set up dummy app, spec helpers, factory isolation, and test database
Write initial characterization tests:
Run tests from engine root:
cd my_engine && bundle exec rspec
HARD GATE — Tests Run:
bundle exec rspec --format progress 2>&1 | tail -5
# Must show: no load errors, exit 0 or partial pass
Build engine features with quality gates:
Implement features using:
skills/engines/rails-engine-reviewer — Coupling assessment, API surface design, host app integration points
skills/engines/rails-engine-compatibility — Rails/Ruby version matrix and dependency constraints
Check gem dependencies:
bundle exec rake dependencies
bundle exec bundler-audit check --update
Prepare for publication:
skills/engines/rails-engine-docs — Installation, configuration, usage examples, changelog
skills/engines/rails-engine-release — Version bump (SemVer), changelog, upgrade notes, git tag
Release commands:
gem build my_engine.gemspec
gem push my_engine-1.0.0.gem
git tag v1.0.0 && git push origin v1.0.0
Optional:
3. skills/engines/rails-engine-installers — Idempotent rails g my_engine:install generator for host app configuration
Output: Published gem or releasable GitHub repository.
New engine? → rails-engine-author → rails-engine-testing
Extract from app? → rails-engine-extraction → rails-engine-author
Release engine? → rails-engine-reviewer → rails-engine-release
Not sure? → rails-skills-orchestrator
NEVER integrate engine into host app before:
Engine Release Checklist (abbreviated):
# Engine Release — v1.0.0
- [x] Namespace isolation: MyEngine::
- [x] Test suite: passing
- [x] README and Changelog updated
- [x] Git tag: v1.0.0
| Predecessor | This Skill | Successor | |-------------|------------|-----------| | create-prd (engine requirements) | rails-engines-flow | rails-tdd-loop (engine features) | | None (extract existing) | rails-engines-flow | Host app integration |
From AGENTS.md: This is the engine development workflow. Chain to rails-tdd-loop for feature development within the engine.
development
Entry point for Rails development workflows covering TDD, RSpec, Service Objects, DDD, GraphQL, Engines, and Code Quality. Use when the user asks about Ruby on Rails development patterns, needs RSpec test suites generated, wants service objects scaffolded, is setting up GraphQL schemas, performing Rails code review, refactoring .rb files, working with domain-driven design, implementing background jobs, conducting Rails security checks, or building Rails engines. Generates RSpec tests, structures service objects, enforces TDD workflows, configures GraphQL schemas, and coordinates domain-driven design patterns. Trigger keywords: Rails, RSpec, TDD, Rails testing, Rails refactor, Rails API, Rails code review, domain driven design, service objects, GraphQL, Rails engine, Ruby, .rb, background jobs, Rails migrations, Rails security check.
development
Use when shipping a Rails engine gem — FIRST run full test suite (`bundle exec rspec`) and fix ALL failures, verify gemspec metadata and dependencies match tested Rails/Ruby versions, dry-run: `gem build *.gemspec && gem push --dry-run *.gem` and verify contents, generate CHANGELOG.md organized by category (added/changed/deprecated/removed/fixed), produce step-by-step upgrade notes with before/after code, set semantic version in `lib/[engine_name]/version.rb`, document deprecations with migration paths, load release assets conditionally and state which one informed the output. Trigger words: version bump, changelog, deprecation, gemspec, upgrade, release, publish gem, ship gem.
development
Orchestrates the full Rails TDD cycle with hard gates: test MUST exist, be run, and FAIL for the correct reason (e.g. undefined method, not syntax error) before any implementation code — propose minimal implementation and wait for user approval → verify test PASSES → run full suite with rubocop, brakeman, rspec all green → produce YARD documentation and self-reviewed PR; phases context/test design→implementation→iterate→finish. Use when practicing test-driven development, red-green-refactor, TDD workflow, writing tests before code, adding tests first, or building a Rails feature where specs must gate implementation.
development
Complete Rails project setup loop with hard gates: verify Ruby version matches .ruby-version, Bundler installed, database connection successful, all env vars loaded, and ALL external CI actions pinned to immutable commit SHAs (never mutable tags like @v4) → configure CI/CD pipeline with linting, testing, and security scanning → validate end-to-end with bundle install, db:create, db:migrate, rspec, and write SETUP_CHECKLIST.md; phases context/onboarding→CI/CD configuration→environment validation. Use when starting a new Rails project, running `rails new`, configuring a Gemfile or .ruby-version, setting up a development environment, or wiring up CI/CD for a Ruby on Rails app. Trigger: setup project, new Rails app, configure CI/CD, dev environment setup, rails new, Gemfile setup, .ruby-version, Ruby on Rails project bootstrap.