Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

clean-code干净的代码

Agent Skill

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

总安装

753

周安装

32

GitHub Stars

1

下载量

264
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:clean-code(干净的代码)
来源仓库:https://github.com/pixel-process-ug/superkit-agents
仓库路径:skills/clean-code
安装命令:
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill clean-code
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill clean-code

简介

clean-code 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • clean-code 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Clean Code

Overview

Apply clean code principles to produce readable, maintainable, and testable software. This skill covers SOLID principles, DRY application, code smell identification, refactoring patterns, naming conventions, error handling, and complexity management. Based on the works of Robert C. Martin, Martin Fowler, and Kent Beck.

Announce at start: "I'm using the clean-code skill to improve code quality."


Phase 1: Analyze Current Code

Goal: Read and understand the code in full context before changing anything.

Actions

  1. Read the code in its full context (not just the snippet)
  2. Identify the code's responsibility and purpose
  3. Measure cyclomatic complexity
  4. Map coupling and dependencies
  5. Note any existing tests

STOP — Do NOT proceed to Phase 2 until:

  • Code is read in full context
  • Purpose and responsibility are understood
  • Complexity hotspots are identified
  • Existing test coverage is known

Phase 2: Identify Code Smells

Goal: Catalog all code smells using the reference tables below.

Bloaters

SmellDetectionRefactoring
Long Method> 30 linesExtract Method
Large Class> 300 lines or > 5 responsibilitiesExtract Class
Long Parameter List> 3 parametersIntroduce Parameter Object
Data ClumpsSame params appear togetherExtract Class
Primitive ObsessionPrimitives instead of small objectsReplace with Value Object

Object-Orientation Abusers

SmellDetectionRefactoring
Switch StatementsSwitch on typeReplace with Polymorphism
Parallel InheritanceEvery subclass requires parallel subclassMerge hierarchies
Refused BequestSubclass ignores inherited methodsReplace Inheritance with Delegation

Change Preventers

SmellDetectionRefactoring
Divergent ChangeOne class changed for multiple reasonsExtract Class (SRP)
Shotgun SurgeryOne change touches many classesMove Method, Inline Class

Dispensables

SmellDetectionRefactoring
Dead CodeUnreachable or unusedRemove
Speculative GeneralityUnused abstractions "just in case"Collapse Hierarchy, Remove
Comments explaining bad codeComments compensating for unclear codeRename, Extract Method

STOP — Do NOT proceed to Phase 3 until:

  • All code smells are cataloged
  • Each smell has a priority (high/medium/low)
  • Refactoring approach is identified for each

Phase 3: Apply Refactoring

Goal: Apply refactoring patterns one at a time, verifying tests after each.

Actions

  1. Apply ONE refactoring at a time
  2. Run tests after each change
  3. If any test fails, revert immediately
  4. Continue until code is clean
  5. Review naming, structure, and documentation

STOP — Refactoring complete when:

  • All high-priority smells are resolved
  • All tests pass after each change
  • No behavior was changed during refactoring
  • Code is readable to a new team member

SOLID Principles

S — Single Responsibility Principle

A class/module should have one, and only one, reason to change.

Smell: A class that changes for multiple unrelated reasons. Fix: Extract responsibilities into separate classes.

O — Open/Closed Principle

Open for extension, closed for modification.

Smell: Switch statements that grow with new types. Fix: Polymorphism, strategy pattern, or plugin architecture.

L — Liskov Substitution Principle

Subtypes must be substitutable for their base types.

Smell: Subclass overrides method to throw "not supported." Fix: Restructure hierarchy; prefer composition over inheritance.

I — Interface Segregation Principle

No client should depend on methods it does not use.

Smell: Interfaces with many methods; implementors leave some as no-ops. Fix: Split into smaller, focused interfaces.

D — Dependency Inversion Principle

Depend on abstractions, not concretions.

Smell: High-level modules importing low-level modules directly. Fix: Inject dependencies via interfaces/abstract classes.


Naming Conventions

Rules

ElementConventionExample
VariablesNouns describing what they holduserCount, not n
BooleansPrefixed with is/has/can/shouldisActive, hasPermission
FunctionsVerbs describing what they docalculateTotal, fetchUsers
ConstantsUPPER_SNAKE_CASEMAX_RETRY_COUNT
ClassesPascalCase nounsUserRepository, PaymentService
InterfacesDescribe capabilitySerializable, Cacheable

Name Length Guidelines

ScopeLengthExample
Loop counters1-2 charsi, j (tiny loops only)
Lambda params1-3 chars when context clearusers.filter(u => u.active)
Local variablesShort but descriptivetotal, result
Function namesMedium, descriptivecalculateMonthlyRevenue
Class namesAs long as neededAuthenticationTokenValidator

Function Guidelines

Size and Structure

  • Functions should do one thing
  • Ideal: 5-15 lines (excluding boilerplate)
  • Maximum: 30 lines (beyond this, extract)
  • Maximum parameters: 3 (beyond this, use options object)

Guard Clauses (Early Return)

// Bad: nested conditions
function getDiscount(user) {
  if (user) {
    if (user.isPremium) {
      if (user.orderCount > 10) {
        return 0.2;
      }
    }
  }
  return 0;
}

// Good: guard clauses
function getDiscount(user) {
  if (!user) return 0;
  if (!user.isPremium) return 0;
  if (user.orderCount <= 10) return 0;
  return 0.2;
}

Error Handling Patterns

Decision Table

ApproachUse WhenExample
Result typeFunctional style, expected failuresResult<T, E> return type
Specific exceptionsOOP style, exceptional casesthrow new ValidationError(...)
Error codesC-style APIs, cross-languageReturn code + message
Option/MaybeValue may or may not existOption<User>

Result Type Pattern

type Result<T, E = Error> =
  | { success: true; data: T }
  | { success: false; error: E };

function parseConfig(raw: string): Result<Config, ParseError> {
  try {
    const config = JSON.parse(raw);
    if (!isValidConfig(config)) {
      return { success: false, error: new ParseError('Invalid config structure') };
    }
    return { success: true, data: config };
  } catch {
    return { success: false, error: new ParseError('Invalid JSON') };
  }
}

Error Handling Never List

  • Never catch and swallow errors silently
  • Never use exceptions for control flow
  • Never return null to indicate an error
  • Never log and rethrow without adding context

Complexity Metrics

RangeRisk LevelAction
1-5LowNo action needed
6-10ModerateConsider refactoring
11-20HighShould refactor
21+CriticalMust refactor

Reducing Complexity

  1. Extract complex conditions into named booleans
  2. Replace nested conditionals with guard clauses
  3. Use polymorphism instead of type checking
  4. Decompose into smaller functions
  5. Use lookup tables instead of switch/if chains

DRY Application Decision Table

SituationApply DRY?Rationale
Exact duplication of logicYesSame logic should live in one place
Three or more occurrencesYesRule of Three confirms the pattern
Two occurrences onlyWaitMay be coincidental similarity
Similar structure, different purposeNoDifferent reasons to change
Abstracting adds more complexityNoClarity over DRY

Comment Philosophy

Good Comments

TypeExample
Why (reasoning)// Use binary search because list is pre-sorted and >10K items
LegalCopyright, license headers
TODO with ticket// TODO(PROJ-123): Add rate limiting
Warning// WARNING: This is not thread-safe
Public API docsJSDoc/TSDoc for public interfaces

Bad Comments (remove and fix code instead)

TypeExample
Restating code// increment counter before counter++
Commented-out codeUse version control instead
Journal commentsUse git log instead
Closing brace comments} // end if

Anti-Patterns / Common Mistakes

Anti-PatternWhy It Is WrongCorrect Approach
Premature abstractionDRYing code that differs in intentWait for Rule of Three
God classesKnow everything, do everythingSplit by responsibility (SRP)
Feature envyMethod uses another class's data more than its ownMove method to the data owner
Stringly typed dataStrings where enums/types belongDefine proper types
Magic numbersUnclear meaning, error-proneNamed constants
Boolean trapFunction with boolean params that change behaviorUse named options or separate functions
Over-engineeringAbstractions for problems that do not existYAGNI — You Ain't Gonna Need It

Integration Points

SkillRelationship
code-reviewReview identifies code smells for clean-code to resolve
test-driven-developmentTDD ensures behavior preservation during refactoring
senior-frontendFrontend components follow clean code principles
senior-backendBackend services follow SOLID and clean architecture
performance-optimizationClean code enables easier performance optimization
systematic-debuggingClean code is easier to debug

Immutability Preferences

  • Default to const (JavaScript/TypeScript)
  • Use readonly properties and ReadonlyArray
  • Prefer spread/destructuring over mutation
  • Use immutable update patterns for state
  • Only mutate when performance profiling demands it

Skill Type

FLEXIBLE — Apply principles based on context. Not every function needs to be 5 lines; not every pattern needs to be SOLID. Use judgment and optimize for team readability over theoretical purity.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.34%
按下载量换算93

Claude

31.56%
按下载量换算83

Cursor

17.85%
按下载量换算47

Gemini CLI

9.14%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills