rails-model-patterns

A guide to ActiveRecord, the Ruby on Rails layer that connects application objects to database tables. It covers models, relationships, validations, database changes, reusable queries, callbacks, and query performance.

In plain words
What is it for?
Use it when designing Rails models, associations, validations, scopes, migrations, callbacks, value objects, or database queries.
Why use it?
It helps keep database-related code organized and protects data through application and database checks. It also helps avoid slow or fragile queries and unclear model responsibilities.

Skill for Claude CodeCodex

Part of the rails-dev-plugin plugin — 19 skills, 11 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ag0os/rails-dev-plugin/rails-model-patterns
Any agent
npx skills add ag0os/rails-dev-plugin --skill rails-model-patterns
Clone the repo
git clone --depth 1 https://github.com/ag0os/rails-dev-plugin

Made for: Claude Code, Codex.

Or install rails-dev-plugin, the plugin that ships this one along with the rest of its 19 skills, 11 agents.

Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,104 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00070 $0.01104
Opus 5 $0.00035 $0.00552
Sonnet 5 $0.00014 $0.00221
Haiku 4.5 $0.00007 $0.00110

Measured 2d ago against content hash 43c2bb3e113e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

rails-model-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/rails-model-patterns/SKILL.md · 107 lines

How it starts

The opening of the file, as written. The whole thing — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Rails Model Patterns

Analyze and recommend ActiveRecord model patterns for well-structured Rails applications.

Resolve the axis first

Where a model's domain logic and side effects belong forks on Axis A — logic placement:

  1. If the axes are resolved this session, use them.
  2. Otherwise resolve via rails-stack-profiles (Axis A — native or extracted).
  3. Then read the matching decomposition guide:

Default to native if the axis cannot be resolved. Everything else in this file is invariant.

Supporting Documentation

Core Principles

  1. Organize by convention: Constants, associations, validations, scopes, callbacks, class methods, instance methods
  2. Database-backed integrity: Always pair ActiveRecord validations with database constraints (unique index, NOT NULL, check constraints)
  3. Associations always have :dependent: Prevent orphaned records
  4. Use :inverse_of: Ensure bidirectional association consistency
  5. Callbacks: Posture depends on Axis A — read the decomposition guide above. Universally: a callback is for one predictable effect, never multi-step orchestration.

Model Structure Template

Follow standard Rails model organization. Key ordering: constants, associations, validations, scopes, callbacks, class methods, instance methods, private methods. Generate standard ActiveRecord associations, validations, and scopes following Rails conventions.

Read the full file on GitHub · 107 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 107 lines · 70 tokens per session scan A 43c2bb3e113e

Subscribe to this mod's changes

rails-model-patterns is a skill published in the GitHub repository ag0os/rails-dev-plugin (5 stars, last pushed 3mo ago), licensed MIT. It adds 70 tokens to every session and 1,104 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

activerecord

This skill should be used when the user asks to "write a migration", "add a column", "add column to table", "create an index", "add a foreign key", "set up associations", "fix N+1 queries", "optimize queries", "add validations", "create callbacks", "use eager loading", or mentions ActiveRecord, belongsto, hasmany…

hoblin/claude-ruby-marketplace · 180 tokens

postgresql-rails-analyzer

Comprehensive PostgreSQL configuration and usage analysis for Rails applications. Use when Claude Code needs to analyze a Rails codebase for database performance issues, optimization opportunities, or best practice violations. Detects N+1 queries, missing indexes, suboptimal database configurations, anti-patterns, and…

el-feo/ai-context · 111 tokens

active-record-patterns

Active Record patterns: models, queries, associations, transactions, locking, migrations. Triggers: "AR scope", "hasmany through", "polymorphic". Do NOT use for: Sequel, N+1.

slbug/claude-ruby-grape-rails · 50 tokens

rails-models

ActiveRecord patterns, migrations, validations, callbacks, associations.

Shoebtamboli/rails_claude_skills · 15 tokens

activerecord-patterns

Idiomatic ActiveRecord patterns for Ruby on Rails — associations (belongsto/hasmany/hasone/hasmany :through), countercache, polymorphic, STI vs delegatedtype, scopes vs class methods, callbacks vs aftercommit, find vs findby vs where.first, includes vs preload vs eagerload, pluck vs select, exists? vs any?, batch…

sandeepmvl/rails-skills · 150 tokens

db-migration-mysql-postgres

Migrate a Ruby on Rails application's primary database from MySQL to PostgreSQL — schema upgrades (JSON to JSONB for queryability, ENUMs to native types or check constraints, TINYINT to BOOLEAN, case-sensitivity changes), data export/import via pgloader, the dual-write cutover pattern, the gem switch (mysql2/trilogy…

sandeepmvl/rails-skills · 127 tokens