vanilla-rails-controllers

Installation
SKILL.md

Vanilla Rails Controllers

State changes are resources. Every state change becomes its own resource controller with CRUD operations.

Resource Extraction

# Bad - custom actions
resources :cards do
  post :close
  post :archive
end

# Good - state as resource
resources :cards do
  resource :closure, only: [:create, :destroy]
  resource :archival, only: [:create, :destroy]
end
Installs
1
GitHub Stars
3
First Seen
May 5, 2026
vanilla-rails-controllers — zemptime/zemptime-marketplace