rails-controllers

Installation
SKILL.md

Rails Controllers

Quick Reference

Pattern Example
Generate rails g controller Posts index show
Route resources :posts
Action def show; @post = Post.find(params[:id]); end
Render render :edit
Redirect redirect_to posts_path
Filter before_action :authenticate_user!
Strong Params params.require(:post).permit(:title, :body)

Controller Structure

Related skills

More from shoebtamboli/rails_claude_skills

Installs
5
GitHub Stars
6
First Seen
Feb 17, 2026