rails-conventions

Installation
SKILL.md

Rails Project Conventions

Baseline hygiene checks that apply across models, controllers, jobs, and services — the stuff that isn't specific to any one layer. Run these before calling a Ruby change done.

Rubocop Clean

A change isn't finished if it introduces new offenses. Run:

bin/rubocop

If offenses show up in files you touched, try autocorrect first:

bin/rubocop -a

For offenses -a can't fix, fix them by hand rather than adding a # rubocop:disable comment. A disable comment is only acceptable when the rule is genuinely wrong for that one line (rare) — not as a shortcut to move past a real style violation.

Installs
2
First Seen
Sep 10, 2026
rails-conventions — railslove/rails-superpowers