Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

sandi-metz-rules桑迪梅斯规则

Agent Skill

sandi-metz-rules 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

360

周安装

15

GitHub Stars

94

下载量

120
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sandi-metz-rules(桑迪梅斯规则)
来源仓库:https://github.com/nateberkopec/dotfiles
仓库路径:skills/sandi-metz-rules
安装命令:
npx skills add https://github.com/nateberkopec/dotfiles --skill sandi-metz-rules
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/nateberkopec/dotfiles --skill sandi-metz-rules

简介

sandi-metz-rules 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前分类为研究检索,暂无更多功能说明。

SKILL.md

Sandi Metz Rules

Overview

This skill helps apply Sandi Metz's four rules for writing maintainable object-oriented code to Ruby codebases. These rules are heuristics that encourage good design practices, making code easier to understand, test, and maintain.

The Four Rules

  1. Classes can be no longer than 100 lines of code
  2. Methods can be no longer than 5 lines of code
  3. Pass no more than 4 parameters into a method
  4. Controllers can instantiate only one object

When to Use This Skill

Apply this skill when:

  • Users explicitly request applying Sandi Metz's rules
  • Reviewing Ruby code for maintainability and code quality
  • Refactoring existing Ruby code to improve design
  • Users ask about "code smells" or improving object-oriented design
  • Analyzing Ruby code for complexity or maintainability issues
  • Users mention terms like "POODR" or reference Sandi Metz's work

Code Review Workflow

1. Analyze the Code

When reviewing code against Sandi Metz's rules:

Read the reference document: First, load the detailed rules documentation:

Read references/rules.md

Measure accurately:

  • For classes: Count lines of actual code (exclude blank lines, comments, class definition, and end statements)
  • For methods: Count lines of actual code (exclude blank lines, comments, method definition, and end statements)
  • For parameters: Count all explicit parameters including keyword arguments (but not &block)
  • For controllers: Count object instantiations in each action (excluding finding existing objects)

Identify violations: Scan the codebase for violations of each rule. Use grep or file searching to find classes and methods, then analyze them systematically.

2. Prioritize Issues

Not all violations are equal:

High priority:

  • Classes over 200 lines (severe violations)
  • Methods over 10 lines (severe violations)
  • Methods with 6+ parameters
  • Controllers with complex business logic

Medium priority:

  • Classes between 100-200 lines
  • Methods between 5-10 lines
  • Methods with 5 parameters

Low priority:

  • Borderline cases (e.g., 6-line methods)
  • Violations in test files, configuration, or DSLs

3. Suggest Specific Refactorings

For each violation, provide concrete refactoring strategies:

Long classes:

  • Extract related methods into new classes
  • Identify separate responsibilities using Single Responsibility Principle
  • Use composition or modules to share behavior
  • Apply patterns: Strategy, Decorator, Command, Facade

Long methods:

  • Extract sub-methods with descriptive names
  • Replace conditionals with polymorphism
  • Use guard clauses to reduce nesting
  • Apply Composed Method pattern (keep methods at one level of abstraction)
  • Extract complex expressions into well-named methods

Too many parameters:

  • Introduce Parameter Object for related parameters
  • Use Builder pattern for complex construction
  • Replace parameters with method calls (use instance variables)
  • Consider if the method belongs in a different class

Fat controllers:

  • Extract service objects or use cases
  • Apply Command or Interactor patterns
  • Create Facade objects for complex orchestration
  • Move business logic to domain layer

4. Provide Code Examples

When suggesting refactorings:

  • Show before and after code examples
  • Explain why the refactored version is better
  • Name any patterns used
  • Highlight how the change improves testability and clarity

5. Consider Context

Remember that rules can be broken with good reason:

  • Configuration files (e.g., routes.rb)
  • Test files (though they should still be readable)
  • DSL definitions
  • Generated code or database migrations
  • When following the rule would make code less clear

Always note when a violation might be acceptable and explain why.

Usage Patterns

Pattern 1: Full Codebase Review

When reviewing an entire codebase:

  1. Search for Ruby files using glob patterns
  2. Identify the largest classes and methods first
  3. Check controllers for business logic
  4. Prioritize violations by severity
  5. Provide a summary of findings with specific file locations and line numbers
  6. Suggest refactorings for the most critical issues

Pattern 2: Specific File or Class Review

When reviewing a specific file:

  1. Load the file
  2. Measure each class and method
  3. Identify all rule violations
  4. Provide specific refactoring suggestions with code examples
  5. Explain the benefits of each suggested change

Pattern 3: Refactoring Assistance

When actively refactoring code:

  1. Load references/rules.md for detailed guidance
  2. Apply the specific refactoring patterns from the reference
  3. Ensure refactored code follows all four rules
  4. Verify that tests still pass
  5. Explain the design improvements made

Code Counting Rules

Use these precise counting rules to ensure consistency:

Class lines:

class MyClass  # Don't count
  def method   # Count: 1
    body       # Count: 2
  end          # Don't count
end            # Don't count

Method lines:

def my_method        # Don't count
  line_1             # Count: 1
  line_2             # Count: 2
                     # Don't count (blank line)
  # comment          # Don't count
  line_3             # Count: 3
end                  # Don't count

Parameters:

def method(a, b, c, d)              # 4 parameters - OK
def method(a, b, c, d, e)           # 5 parameters - Violation
def method(a:, b:, c:, d:)          # 4 parameters - OK
def method(a, b = nil, c = {})      # 3 parameters - OK (defaults still count)
def method(a, *rest)                # 2 parameters - OK
def method(a, &block)               # 1 parameter (blocks don't count)

Automation

Suggest using static analysis tools to enforce these rules:

  • RuboCop: Configure Metrics/MethodLength, Metrics/ClassLength, Metrics/ParameterLists
  • Reek: Detects code smells including LongMethod, LargeClass, LongParameterList
  • flog: Measures method complexity
  • flay: Detects code duplication

Example RuboCop configuration:

Metrics/ClassLength:
  Max: 100

Metrics/MethodLength:
  Max: 5

Metrics/ParameterLists:
  Max: 4
  MaxOptionalParameters: 3

Resources

This skill includes a comprehensive reference document with:

  • Detailed explanation of each rule
  • Rationale and benefits
  • Common violations and their causes
  • Specific refactoring strategies with examples
  • Guidance on when to break the rules
  • Related design principles and patterns

Load this reference when doing detailed code analysis or explaining refactoring approaches:

Read references/rules.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.7%
按下载量换算33

OpenCode

23.4%
按下载量换算28

windsurf

20.45%
按下载量换算25

Codex

14.66%
按下载量换算18

Antigravity

8.19%
按下载量换算10

Gemini CLI

4.03%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills