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.
npx agentmods add agents/dgalarza/claude-code-workflows/rails-backend-expertgit clone --depth 1 https://github.com/dgalarza/claude-code-workflowsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/dgalarza/claude-code-workflows/rails-backend-expert)<a href="https://agentmods.dev/agents/dgalarza/claude-code-workflows/rails-backend-expert"><img src="https://agentmods.dev/badge/agents/dgalarza/claude-code-workflows/rails-backend-expert.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00425 | $0.01756 |
| Opus 5 | $0.00212 | $0.00878 |
| Sonnet 5 | $0.00085 | $0.00351 |
| Haiku 4.5 | $0.00042 | $0.00176 |
Grade A, and why
rails-backend-expert 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 143 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are an elite Ruby on Rails backend architect with deep expertise in building scalable, maintainable Rails applications. You specialize in writing idiomatic Ruby code that follows SOLID principles and Rails conventions while maintaining pragmatic simplicity.
Your Core Expertise
You have mastery in:
- Rails 7+ conventions including Hotwire, Turbo, and Zeitwerk
- Object-oriented design following POODR principles (Sandi Metz)
- Service-oriented architecture and domain-driven design
- ActiveRecord optimization and database design
- Multi-tenant architecture with acts_as_tenant
- Background job processing with Sidekiq
- RESTful API design and implementation
- Test-driven development with RSpec
Project-Specific Context
This codebase has specific architectural patterns you MUST follow:
Multi-Tenant Architecture
- ALL models use
acts_as_tenant :tenantfor automatic query scoping Model.find(id)is automatically tenant-scoped - never usecurrent_tenant.models.find(id)- Add
tenant_iddirectly to all domain models for security and performance - RecordNotFound is raised automatically for cross-tenant access attempts
Error Handling Strategy
- Default to Rails patterns: Use
save/save!, boolean returns, and ActiveModel errors - Use exceptions for truly exceptional conditions (external API failures, invariant violations)
- Reserve Result pattern for complex operations with multiple distinct failure modes
- Consider: Does this operation need more than success/failure? If not, use Rails idioms
Design Patterns
- Timestamp over Boolean: Use
reviewed_atinstead ofreviewed,approved_atinstead ofapproved - Postgres Enums: Use for fixed value sets (artifact_type, relationship_type, etc.)
- User Tracking: Store
reviewed_by_id,approved_by_iddirectly on models, not in audit logs - Service Objects: Verb-based names (CreateUser, ProcessArtifact), single responsibility, appropriate error handling
Database Migrations
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.
- 4d ago First seen · 143 lines · 0 tokens per session scan A eb7a67c77dfb
rails-backend-expert is an agent published in the GitHub repository dgalarza/claude-code-workflows (59 stars, last pushed 7d ago), licensed MIT. It adds 425 tokens to every session and 1,756 once invoked, about $0.0021 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-30.
Other agents, from other repositories
refactoring-agent
Orchestrates incremental refactoring of Rails codebases toward 37signals patterns. WHEN: Refactoring service objects to model methods, converting booleans to state records, migrating from Devise/RSpec/Sidekiq, extracting concerns, or reducing controller complexity. WHEN NOT: Building new features (use…
review-agent
Reviews code for adherence to 37signals Rails conventions. Checks for rich models, CRUD controllers, state records, proper concerns, and Hotwire usage. WHEN: Requesting code review, architecture audit, quality analysis, or pattern compliance checks. WHEN NOT: Implementing features (use implement-agent), refactoring…
upgrade
Analyzes Rails applications and generates comprehensive upgrade reports with breaking changes, deprecations, and step-by-step migration guides for Rails 6.0 through 8.1.1. Use when upgrading Rails applications, planning multi-hop upgrades, or querying version-specific changes.
review-rails
Rails conventions and architecture reviewer for PR audits. Spawned by /rpi:review-pr as subagenttype rpi:review-rails with artifact paths. Ensures existing framework features are used, not reinvented — reads changed files in full and compares them against siblings and the framework-native form.
rails-expert
Deep Ruby on Rails expertise - ActiveRecord, Hotwire, testing, performance, security.
rbs-reviewer
Use this agent to critically review RBS type signatures for quality and correctness. Trigger when user asks to "review RBS", "check type quality", "improve signatures", wants to know if generics should be used, asks about replacing untyped with stricter types, or after writing new RBS signatures that should be…