Stack:
Ruby on Rails
Ruby on Rails preset
A reasoning guide the onboard flow uses for Ruby on Rails applications. It is a checklist, not a template — detected reality wins.
Signals
- A
Gemfilewithrails, thebin/railsexecutable, and theapp/{models,controllers,views}MVC layout. config/routes.rb,db/migrate/migrations, anddb/schema.rb.- Test framework inferred from what exists: RSpec (
spec/,.rspec) or Minitest (test/).
What to reason about
- The real test command (
bin/rails testorbundle exec rspec) and the lint gate (rubocop) — captured verbatim. - Request → route → controller → model → view flow, the migration workflow, and where credentials and config live.
- Stack-appropriate skills for models, controllers, migrations, and (if present) jobs and mailers.
Notes
Capture whether Active Job/Sidekiq and Hotwire/Turbo are in use, and how encrypted credentials (config/credentials) are managed.