Help us improve
Share bugs, ideas, or general feedback.
From rails-deps
Checks for and configures recommended Rails dev gems: strong_migrations for safe migrations, herb for ERB linting, bullet for N+1 detection, letter_opener for email previews.
npx claudepluginhub iuhoay/skills --plugin rails-depsHow this skill is triggered — by the user, by Claude, or both
Slash command
/rails-deps:rails-depsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Configure recommended Rails development dependencies for better developer experience and code quality.
Delivers Ruby on Rails expertise: assesses projects, enforces conventions, optimizes ActiveRecord queries, implements Hotwire/Turbo/Stimulus, handles Sidekiq/Solid Queue jobs, and guides RSpec/FactoryBot testing.
Analyzes Rails app structure and dependencies to produce targeted upgrade guidance, diff summaries, and checklist for version jumps.
Provides Ruby on Rails patterns and best practices for Active Record database models, Devise/Pundit security, API controllers/serializers, RSpec testing, and Sidekiq performance. Auto-activates on projects with Gemfile rails, routes.rb, ApplicationController.
Share bugs, ideas, or general feedback.
Configure recommended Rails development dependencies for better developer experience and code quality.
Run /rails-deps:check to see which recommended gems are installed in your project.
| Gem | Category | Purpose |
|---|---|---|
| strong_migrations | Safety | Catch unsafe migrations in development |
| herb | Tooling | HTML+ERB parsing, formatting, and linting |
| bullet | Performance | Detect N+1 queries |
| letter_opener | Development | Preview emails in browser |
| Command | Description |
|---|---|
/rails-deps:check | Check which recommended gems are installed |
/rails-deps:install [gem] | Install and configure a specific gem |
/rails-deps:setup | Interactive setup for all recommended gems |
For detailed installation and configuration guides, see:
| Gem | Reference |
|---|---|
strong_migrations | strong_migrations.md - Catch unsafe migrations |
herb | herb.md - HTML+ERB parsing and tooling |
bullet | bullet.md - N+1 query detection |
letter_opener | letter_opener.md - Email preview |
# strong_migrations
gem "strong_migrations"
bundle install && rails generate strong_migrations:install
# herb
gem "herb", group: :development
bundle install && bundle exec herb analyze .
# bullet
gem "bullet", group: :development
# Add configuration to config/environments/development.rb
# letter_opener
gem "letter_opener", group: :development
# Set delivery_method to :letter_opener in development.rb
This skill activates when you mention: