PluginBench
Skill
Pass
Audit score 90

ce-dhh-rails-style

everyinc/compound-engineering-plugin

Apply DHH's 37signals Rails style: vanilla Rails, fat models, REST purity, and clarity over cleverness.

What is ce-dhh-rails-style?

This skill guides Ruby and Rails code generation, refactoring, and review using 37signals' production conventions. Use it when writing Rails applications, models, controllers, or any Ruby file—especially when the user mentions DHH, 37signals, Basecamp, HEY, or Campfire style.

  • Map REST verbs to resources instead of custom controller actions
  • Build rich domain models with concerns for horizontal behavior
  • Track state via database records instead of boolean columns
  • Apply Current attributes for user context and authorization
  • Use Turbo Streams and Stimulus for interactivity without heavy JS frameworks
  • Write Minitest with fixtures instead of RSpec and factory_bot

How to install ce-dhh-rails-style

npx skills add https://github.com/everyinc/compound-engineering-plugin --skill ce-dhh-rails-style
Claude Code
Cursor
Windsurf
Cline

How to use ce-dhh-rails-style

  1. 1.Describe your task: controller, model, view, architecture, testing, gems, code review, or general guidance
  2. 2.The skill will route to relevant reference material (controllers, models, frontend, architecture, testing, gems)
  3. 3.Apply the recommended patterns to your code: REST mapping, concerns, state records, Current attributes, Turbo/Stimulus, Minitest
  4. 4.Follow naming conventions: verb methods (card.close), predicate methods (card.closed?), adjective concerns (Closeable)
  5. 5.Avoid unnecessary gems (devise, pundit, sidekiq, redis, view_component, GraphQL, factory_bot, rspec, Tailwind)

Use cases

Good for
  • Refactoring a Rails controller to follow REST conventions and move logic to models
  • Designing a state machine using record associations instead of boolean flags
  • Building interactive features with Turbo and Stimulus following 37signals patterns
  • Reviewing Ruby code against DHH style principles and conventions
  • Setting up authentication and authorization without devise or pundit gems
Who it's for
  • Rails developers building production applications
  • Teams adopting 37signals conventions and philosophy
  • Code reviewers enforcing DHH-style consistency
  • Developers refactoring away from over-engineered patterns

ce-dhh-rails-style FAQ

When should I use service objects?

Rarely. 37signals prefers rich domain models with concerns for horizontal behavior. Build solutions before reaching for abstractions.

How do I track state without boolean columns?

Use state records: Card.joins(:closure) for closed cards, Card.where.missing(:closure) for open cards. This makes state queryable and auditable.

Should I use devise for authentication?

No. 37signals implements custom authentication (~150 lines) instead. It's simpler, more transparent, and tailored to your needs.

What testing framework should I use?

Minitest with fixtures. It ships with Rails, is simpler than RSpec, and fixtures are easier to manage than factory_bot.

How do I handle authorization?

Put authorization logic on the User model (e.g., user.can_administer?(message)). Use simple role checks instead of pundit or cancancan.

Full instructions (SKILL.md)

Source of truth, from everyinc/compound-engineering-plugin.


name: ce-dhh-rails-style description: This skill should be used when writing Ruby and Rails code in DHH's distinctive 37signals style. It applies when writing Ruby code, Rails applications, creating models, controllers, or any Ruby file. Triggers on Ruby/Rails code generation, refactoring requests, code review, or when the user mentions DHH, 37signals, Basecamp, HEY, or Campfire style. Embodies REST purity, fat models, thin controllers, Current attributes, Hotwire patterns, and the "clarity over cleverness" philosophy.

<objective> Apply 37signals/DHH Rails conventions to Ruby and Rails code. This skill provides comprehensive domain expertise extracted from analyzing production 37signals codebases (Fizzy/Campfire) and DHH's code review patterns. </objective>

<essential_principles>

Core Philosophy

"The best code is the code you don't write. The second best is the code that's obviously correct."

Vanilla Rails is plenty:

  • Rich domain models over service objects
  • CRUD controllers over custom actions
  • Concerns for horizontal code sharing
  • Records as state instead of boolean columns
  • Database-backed everything (no Redis)
  • Build solutions before reaching for gems

What they deliberately avoid:

  • devise (custom ~150-line auth instead)
  • pundit/cancancan (simple role checks in models)
  • sidekiq (Solid Queue uses database)
  • redis (database for everything)
  • view_component (partials work fine)
  • GraphQL (REST with Turbo sufficient)
  • factory_bot (fixtures are simpler)
  • rspec (Minitest ships with Rails)
  • Tailwind (native CSS with layers)

Development Philosophy:

  • Ship, Validate, Refine - prototype-quality code to production to learn
  • Fix root causes, not symptoms
  • Write-time operations over read-time computations
  • Database constraints over ActiveRecord validations </essential_principles>
<intake> What are you working on?
  1. Controllers - REST mapping, concerns, Turbo responses, API patterns
  2. Models - Concerns, state records, callbacks, scopes, POROs
  3. Views & Frontend - Turbo, Stimulus, CSS, partials
  4. Architecture - Routing, multi-tenancy, authentication, jobs, caching
  5. Testing - Minitest, fixtures, integration tests
  6. Gems & Dependencies - What to use vs avoid
  7. Code Review - Review code against DHH style
  8. General Guidance - Philosophy and conventions

Specify a number or describe your task. </intake>

<routing>
ResponseReference to Read
1, controllerreferences/controllers.md
2, modelreferences/models.md
3, view, frontend, turbo, stimulus, cssreferences/frontend.md
4, architecture, routing, auth, job, cachereferences/architecture.md
5, test, testing, minitest, fixturereferences/testing.md
6, gem, dependency, libraryreferences/gems.md
7, reviewRead all references, then review code
8, general taskRead relevant references based on context

After reading relevant references, apply patterns to the user's code. </routing>

<quick_reference>

Naming Conventions

Verbs: card.close, card.gild, board.publish (not set_style methods)

Predicates: card.closed?, card.golden? (derived from presence of related record)

Concerns: Adjectives describing capability (Closeable, Publishable, Watchable)

Controllers: Nouns matching resources (Cards::ClosuresController)

Scopes:

  • chronologically, reverse_chronologically, alphabetically, latest
  • preloaded (standard eager loading name)
  • indexed_by, sorted_by (parameterized)
  • active, unassigned (business terms, not SQL-ish)

REST Mapping

Instead of custom actions, create new resources:

POST /cards/:id/close    → POST /cards/:id/closure
DELETE /cards/:id/close  → DELETE /cards/:id/closure
POST /cards/:id/archive  → POST /cards/:id/archival

Ruby Syntax Preferences

# Symbol arrays with spaces inside brackets
before_action :set_message, only: %i[ show edit update destroy ]

# Private method indentation
  private
    def set_message
      @message = Message.find(params[:id])
    end

# Expression-less case for conditionals
case
when params[:before].present?
  messages.page_before(params[:before])
else
  messages.last_page
end

# Bang methods for fail-fast
@message = Message.create!(params)

# Ternaries for simple conditionals
@room.direct? ? @room.users : @message.mentionees

Key Patterns

State as Records:

Card.joins(:closure)         # closed cards
Card.where.missing(:closure) # open cards

Current Attributes:

belongs_to :creator, default: -> { Current.user }

Authorization on Models:

class User < ApplicationRecord
  def can_administer?(message)
    message.creator == self || admin?
  end
end

</quick_reference>

<reference_index>

Domain Knowledge

All detailed patterns in references/:

FileTopics
references/controllers.mdREST mapping, concerns, Turbo responses, API patterns, HTTP caching
references/models.mdConcerns, state records, callbacks, scopes, POROs, authorization, broadcasting
references/frontend.mdTurbo Streams, Stimulus controllers, CSS layers, OKLCH colors, partials
references/architecture.mdRouting, authentication, jobs, Current attributes, caching, database patterns
references/testing.mdMinitest, fixtures, unit/integration/system tests, testing patterns
references/gems.mdWhat they use vs avoid, decision framework, Gemfile examples
</reference_index>

<success_criteria> Code follows DHH style when:

  • Controllers map to CRUD verbs on resources
  • Models use concerns for horizontal behavior
  • State is tracked via records, not booleans
  • No unnecessary service objects or abstractions
  • Database-backed solutions preferred over external services
  • Tests use Minitest with fixtures
  • Turbo/Stimulus for interactivity (no heavy JS frameworks)
  • Native CSS with modern features (layers, OKLCH, nesting)
  • Authorization logic lives on User model
  • Jobs are shallow wrappers calling model methods </success_criteria>
<credits> Based on [The Unofficial 37signals/DHH Rails Style Guide](https://github.com/marckohlbrugge/unofficial-37signals-coding-style-guide) by [Marc Köhlbrugge](https://x.com/marckohlbrugge), generated through deep analysis of 265 pull requests from the Fizzy codebase.

Important Disclaimers:

  • LLM-generated guide - may contain inaccuracies
  • Code examples from Fizzy are licensed under the O'Saasy License
  • Not affiliated with or endorsed by 37signals </credits>