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-depsThis skill is limited to using the following tools:
Configure recommended Rails development dependencies for better developer experience and code quality.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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: