← 返回 Skills 市场
pixelxiao

Dhh Rails Style

作者 skye · GitHub ↗ · v0.1.0
cross-platform ✓ 安全检测通过
344
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install dhh-rails-style
功能描述
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, creat...
使用说明 (SKILL.md)

\x3Cobjective> 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. \x3C/objective>

\x3Cessential_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 \x3C/essential_principles>

\x3Cintake> 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. \x3C/intake>

\x3Crouting>

Response Reference to Read
1, controller controllers.md
2, model models.md
3, view, frontend, turbo, stimulus, css frontend.md
4, architecture, routing, auth, job, cache architecture.md
5, test, testing, minitest, fixture testing.md
6, gem, dependency, library gems.md
7, review Read all references, then review code
8, general task Read relevant references based on context

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

\x3Cquick_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 \x3C ApplicationRecord
  def can_administer?(message)
    message.creator == self || admin?
  end
end

\x3C/quick_reference>

\x3Creference_index>

Domain Knowledge

All detailed patterns in references/:

File Topics
controllers.md REST mapping, concerns, Turbo responses, API patterns, HTTP caching
models.md Concerns, state records, callbacks, scopes, POROs, authorization, broadcasting
frontend.md Turbo Streams, Stimulus controllers, CSS layers, OKLCH colors, partials
architecture.md Routing, authentication, jobs, Current attributes, caching, database patterns
testing.md Minitest, fixtures, unit/integration/system tests, testing patterns
gems.md What they use vs avoid, decision framework, Gemfile examples
\x3C/reference_index>

\x3Csuccess_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 \x3C/success_criteria>

\x3Ccredits> Based on The Unofficial 37signals/DHH Rails Style Guide by Marc Köhlbrugge, 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 \x3C/credits>
安全使用建议
This is an instruction-only style guide: it contains detailed, opinionated examples for how to structure Rails apps in DHH/37signals fashion and does not request credentials, install software, or run code. It's internally coherent and safe to read/use as guidance, but be cautious before applying patterns wholesale—some suggestions have security/operational implications (e.g., custom magic-link auth vs. Devise, database-backed queues/caches instead of Redis, hard deletes, using params to set Current.account, cookie scoping). Review those design choices against your project's security, compliance, and operational needs before adopting them.
功能分析
Type: OpenClaw Skill Name: dhh-rails-style Version: 0.1.0 The OpenClaw AgentSkills bundle provides a comprehensive guide and code examples for applying the DHH/37signals Ruby on Rails coding style. All files contain documentation and illustrative code snippets (Ruby, YAML, JavaScript, CSS) that describe architectural patterns, security practices (e.g., SSRF protection, CSRF protection, CSP), and frontend development. There is no evidence of prompt injection attempts in SKILL.md, data exfiltration, malicious execution, persistence mechanisms, or obfuscation. The code examples are purely illustrative and do not contain any active threats or instructions for the AI agent to perform harmful actions.
能力评估
Purpose & Capability
Name/description match the skill content: all files are style guidance and reference examples for Rails apps. Nothing requested (no env, no binaries, no installs) is out of proportion to a coding-style/reference skill.
Instruction Scope
SKILL.md instructs the agent to read included references and apply patterns to user-provided Ruby/Rails code. It does not instruct reading unrelated system files, environment secrets, or sending data to external endpoints.
Install Mechanism
No install spec and no code files to execute. Instruction-only skills are lowest risk; there are no downloads or archive extracts.
Credentials
The skill declares no required env vars or credentials. Some example snippets reference ENV.fetch and configuration ENV names (typical in application examples), but those are illustrative and not required by the skill itself.
Persistence & Privilege
Flags show default invocation behavior (not always:true). The skill does not request permanent presence or modify other skills or system configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install dhh-rails-style
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /dhh-rails-style 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
Initial release of dhh-rails-style skill. - Provides guidance and code review for Ruby and Rails projects in the 37signals/DHH style. - Includes principles: favor vanilla Rails, fat models, thin controllers, REST purity, Current attributes, Hotwire/Turbo patterns, and "clarity over cleverness". - Offers quick references for naming, REST resource mapping, Ruby idioms, and DHH-preferred patterns. - Outlines what to use vs avoid (no devise, sidekiq, Redis, etc.). - Supports architecture, testing, gems, code review, and general Rails style guidance.
元数据
Slug dhh-rails-style
版本 0.1.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Dhh Rails Style 是什么?

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, creat... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 344 次。

如何安装 Dhh Rails Style?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install dhh-rails-style」即可一键安装,无需额外配置。

Dhh Rails Style 是免费的吗?

是的,Dhh Rails Style 完全免费(开源免费),可自由下载、安装和使用。

Dhh Rails Style 支持哪些平台?

Dhh Rails Style 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Dhh Rails Style?

由 skye(@pixelxiao)开发并维护,当前版本 v0.1.0。

💬 留言讨论