rails-patterns

Installation
SKILL.md

Rails Development Patterns

Build modern Rails applications with MVC architecture, Active Record, Hotwire, and production-ready patterns.

Core Patterns

Controller

class UsersController < ApplicationController
  before_action :set_user, only: [:show, :edit, :update, :destroy]

  def index
    @users = User.all
  end

  def create
    @user = User.new(user_params)
Installs
5
GitHub Stars
6
First Seen
Feb 21, 2026
rails-patterns — spjoshis/claude-code-plugins