Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

detect-code-smells检测代码气味

Agent Skill

detect-code-smells 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

240

周安装

10

GitHub Stars

2

下载量

80
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kjgarza/marketplace-claude --skill detect-code-smells

简介

detect-code-smells 识别常见代码坏味道与反模式,提升代码质量。

  • 覆盖复杂度、重复代码、魔法数字等类别,提供即时反馈。
  • 支持多种语言,基于静态规则检测可维护性问题。
  • 结果需结合上下文评估,避免将风格偏好误判为缺陷。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Detect Code Smells

Detect common code smells and anti-patterns in code, providing immediate feedback on quality issues.

Code Smell Categories

1. Complexity Smells

  • Long Method: Functions/methods > 50 lines
  • Long Parameter List: > 4 parameters
  • Complex Conditionals: Deeply nested if/else, complex boolean expressions
  • High Cyclomatic Complexity: > 10 branches
  • Deep Nesting: > 4 levels of indentation

2. Duplication Smells

  • Duplicate Code: Repeated code blocks
  • Similar Functions: Functions with nearly identical logic
  • Magic Numbers: Hardcoded numbers without explanation
  • String Duplication: Repeated string literals

3. Naming Smells

  • Unclear Names: Single letter variables (except loop counters)
  • Hungarian Notation: Unnecessary type prefixes
  • Inconsistent Naming: Mixed camelCase/snake_case
  • Abbreviated Names: Unclear abbreviations (mgr, ctx, tmp)
  • Misleading Names: Name doesn't match behavior

4. Object-Oriented Smells

  • God Class: Class > 500 lines or too many responsibilities
  • Data Class: Class with only getters/setters
  • Feature Envy: Method uses more of another class than its own
  • Inappropriate Intimacy: Classes too dependent on internal details
  • Lazy Class: Class doing too little to justify existence

5. Functional Smells

  • Side Effects: Function modifies external state unexpectedly
  • Non-Pure Functions: Functions with hidden dependencies
  • Mutability Issues: Unexpected mutation of objects
  • Callback Hell: Deeply nested callbacks

6. Architecture Smells

  • Circular Dependencies: Module A depends on B, B depends on A
  • Missing Abstraction: Concrete implementations without interfaces
  • Tight Coupling: Hard dependencies on specific implementations
  • Leaky Abstraction: Implementation details exposed through interface

Detection Process

  1. Parse file - Analyze syntax tree and structure
  2. Identify patterns - Look for known code smell patterns
  3. Calculate metrics - Measure complexity, length, duplication
  4. Assess severity - Determine impact of each smell
  5. Generate report - Provide actionable feedback

Analysis Techniques

  • Abstract Syntax Tree (AST) parsing
  • Pattern matching against known smells
  • Metric calculation (LOC, complexity, coupling)
  • Comparison with language-specific best practices
  • Context-aware analysis (test files have different standards)

Return Value

Return object:

{
  "file": "path/to/file.js",
  "language": "javascript",
  "overallScore": 7.5,
  "smells": [
    {
      "type": "Long Method",
      "severity": "warning",
      "location": {
        "line": 42,
        "endLine": 95,
        "function": "processUserData"
      },
      "description": "Function 'processUserData' is 53 lines long",
      "suggestion": "Extract smaller functions for validation, transformation, and persistence",
      "impact": "Harder to understand, test, and maintain",
      "effort": "medium"
    },
    {
      "type": "Complex Conditional",
      "severity": "warning",
      "location": {
        "line": 67,
        "column": 8
      },
      "description": "Nested conditional with 5 levels of nesting",
      "suggestion": "Extract conditions into well-named boolean variables or separate functions",
      "impact": "Difficult to understand logic flow",
      "effort": "small"
    }
  ],
  "metrics": {
    "linesOfCode": 234,
    "averageComplexity": 4.2,
    "maxComplexity": 12,
    "duplicationPercentage": 8.5
  },
  "recommendations": [
    "Extract 'processUserData' into smaller single-purpose functions",
    "Replace complex conditional at line 67 with early returns",
    "Consider extracting repeated validation logic into a helper function"
  ]
}

Examples

Example 1: Detecting Long Method

Context: User opens user-service.js containing a 150-line function

Autonomous Invocation: Skill automatically analyzes the file and reports:

Code Smell Detected: Long Method

Function 'handleUserRegistration' (lines 23-172) is 150 lines long.

Impact: This function is doing too many things, making it:
- Hard to understand at a glance
- Difficult to test thoroughly
- Prone to bugs when modified
- Challenging to reuse parts of its logic

Suggestion: Extract into smaller functions:
- validateRegistrationData() - lines 23-45
- checkEmailAvailability() - lines 46-68
- createUserAccount() - lines 69-98
- sendWelcomeEmail() - lines 99-130
- logRegistrationEvent() - lines 131-172

This follows the Single Responsibility Principle and makes each piece independently testable.

Example 2: Detecting Complex Conditional

Context: User working on file with deeply nested if/else

Autonomous Invocation: Skill detects and suggests:

Code Smell Detected: Complex Conditional

Lines 45-72 contain a deeply nested conditional (5 levels deep) with multiple boolean conditions.

Current pattern:
if (user) {
  if (user.isActive) {
    if (user.hasPermission('admin')) {
      if (validateToken(user.token)) {
        // ... more nesting
      }
    }
  }
}

Refactoring suggestion using guard clauses:
if (!user) return null;
if (!user.isActive) return null;
if (!user.hasPermission('admin')) return null;
if (!validateToken(user.token)) return null;

// Now do the work without nesting

Benefits: Reduces cognitive load, clearer failure conditions, easier to test edge cases.

Example 3: Detecting Code Duplication

Context: User reviewing file with repeated code blocks

Autonomous Invocation: Skill identifies DRY violation:

Code Smell Detected: Duplicate Code

Found 3 nearly identical code blocks:
- Lines 34-42 (in fetchUserById)
- Lines 78-86 (in fetchUserByEmail)
- Lines 112-120 (in fetchUserByUsername)

All three blocks implement the same error handling and response formatting logic.

Suggestion: Extract common logic into a helper function:

function handleUserFetchResponse(result, errorMessage) {
  if (!result) {
    throw new Error(errorMessage);
  }
  return formatUserResponse(result);
}

Then simplify each call site:
const user = await db.query(...);
return handleUserFetchResponse(user, 'User not found');

Impact: Reduces maintenance burden, ensures consistent behavior, fewer bugs.

Error Handling

  • If file cannot be parsed: Return error with details about syntax issue
  • If language not supported: Suggest manual review or generic analysis
  • If file is too large (> 10k lines): Warn about God Object and suggest splitting
  • If file is test file: Apply different standards (longer functions acceptable)
  • If file is generated: Skip analysis or warn user

Context Awareness

Test Files

  • Allow longer functions (tests often have setup/teardown)
  • Allow more duplication (explicit tests > DRY)
  • Different naming conventions acceptable

Configuration Files

  • JSON/YAML: Check for structural issues
  • Don't apply code smell rules meant for logic

Legacy Code

  • Flag issues but acknowledge inherited constraints
  • Prioritize critical issues over stylistic ones
  • Suggest incremental improvement approach

Generated Code

  • Identify if file is auto-generated
  • Suggest improving generator rather than generated code
  • Skip some smell checks

Integration with Development Workflow

  • Non-intrusive: Provides info but doesn't block work
  • Actionable: Specific suggestions with examples
  • Educational: Explains why something is a smell
  • Prioritized: Critical issues highlighted over minor ones
  • Context-sensitive: Understands different file types

Related Skills

  • suggest-performance-fix: Focuses on performance issues
  • security-pattern-check: Focuses on security concerns

Notes

This skill acts as a senior developer looking over your shoulder, catching issues that might be missed during fast-paced development. It doesn't replace human code review but augments it by catching obvious issues early.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.63%
按下载量换算29

Claude

30.92%
按下载量换算25

Cursor

16.87%
按下载量换算13

Gemini CLI

8.31%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills