vanilla-rails-routing
Installation
SKILL.md
Vanilla Rails Routing
Routes mirror controller directory structure. Every route points to a controller in the matching namespace.
Resource Extraction (State as Resources)
State changes become singular nested resources, not custom actions:
# Bad - custom actions
resources :cards do
post :close
post :archive
end