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

comments-smells评论有味道

Agent Skill

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

总安装

528

周安装

22

GitHub Stars

1

下载量

176
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bsene/skills --skill comments-smells

简介

comments-smells 用于检测代码中的注释异味,识别因代码结构不清晰而依赖注释的情况。

  • 适用于方法、类或代码块因命名不清或逻辑复杂而需要大量解释性注释的场景。
  • 通过安装命令 npx skills add https://github.com/bsene/skills --skill comments-smells 从 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Comments Code Smell — Detection & Refactoring

What is the "Comments" Smell?

A Comments smell occurs when a method, class, or block is filled with explanatory comments — not because the logic is genuinely complex, but because the code structure itself is unclear. Comments in this context act like a deodorant: they mask fishy code rather than fixing it.

"A comment is a sign that the code is not finished." — XP community principle
"The best comment is a good name for a method or class."

Comments are not inherently bad — but when they're needed to explain *what* the code does (rather than *why* a design decision was made), that's a signal to refactor.


How to Detect It

Look for these patterns:

  • A comment above a block of code that says what the block does → candidate for Extract Method
  • A comment explaining a complex expression → candidate for Extract Variable
  • A method whose purpose isn't clear from its name → candidate for Rename Method
  • Comments describing required preconditions or invariants → candidate for Introduce Assertion
  • Comments that are out of date, misleading, or redundant with the code
  • Large parts of commented code -> ask user if it could be deleted

Refactoring Treatments

1. Extract Variable

When: A comment explains a complex expression.

# Before
if (user.age >= 18 and user.country == "FR" and not user.is_banned):
    # check if user can access adult content in France
    allow_access()

# After
is_adult = user.age >= 18
is_in_france = user.country == "FR"
is_active = not user.is_banned
can_access_adult_content_in_france = is_adult and is_in_france and is_active

if can_access_adult_content_in_france:
    allow_access()

2. Extract Method

When: A comment describes what a section of code does — turn that section into a named method, using the comment text as the method name.

# Before
def process_order(order):
    # validate order items
    for item in order.items:
        if item.quantity <= 0:
            raise ValueError("Invalid quantity")
        if item.price < 0:
            raise ValueError("Invalid price")

    # calculate total
    total = sum(item.quantity * item.price for item in order.items)
    ...

# After
def process_order(order):
    validate_order_items(order.items)
    total = calculate_order_total(order.items)
    ...

def validate_order_items(items):
    for item in items:
        if item.quantity <= 0:
            raise ValueError("Invalid quantity")
        if item.price < 0:
            raise ValueError("Invalid price")

def calculate_order_total(items):
    return sum(item.quantity * item.price for item in items)

3. Rename Method

When: A method exists but its name doesn't explain what it does, so comments compensate.

# Before
def process(x):
    # converts celsius to fahrenheit
    return x * 9/5 + 32

# After
def celsius_to_fahrenheit(celsius):
    return celsius * 9/5 + 32

4. Introduce Assertion

When: A comment describes a required state or precondition for the system to work.

# Before
def set_discount(rate):
    # rate must be between 0 and 1
    self.discount = rate

# After
def set_discount(rate):
    assert 0 <= rate <= 1, "Discount rate must be between 0 and 1"
    self.discount = rate

5. Write Tests as Executable Comments

When: A comment documents expected behavior, edge cases, or intent that would otherwise need explanation.

Unit tests and assertions serve as "executable documentation" — they clarify intent and validate assumptions in code that cannot lie or become outdated the way comments can.

# Before
def calculate_discount(price, percentage):
    # percentage must be 0-100, not 0-1
    return price * (1 - percentage / 100)

# After (with clear test)
def test_calculate_discount_expects_percentage_not_decimal():
    """Document the API contract: percentage is 0-100, not 0-1"""
    assert calculate_discount(100, 10) == 90  # 10% off
    assert calculate_discount(100, 0) == 100  # 0% off
    assert calculate_discount(100, 100) == 0  # 100% off

Tests eliminate the need for comments that describe "what should happen" because the test *is* the specification.


When Comments Are Legitimate

Do NOT remove comments that:

  • Explain why a decision was made (business rule, workaround, regulatory requirement) # Using SHA-1 here for legacy API compatibility — their endpoint doesn't support SHA-256
  • Explain a genuinely complex algorithm where simpler alternatives were exhausted
  • Document public API surface (docstrings for libraries, SDKs)
  • Reference external context (ticket numbers, spec references, legal requirements)
  • Communicate information that could not inferred from the code: specify order of execution
  • TODO comments — These must NEVER be automatically removed and require manual management

TODO Comments: Special Rule

TODO comments CANNOT be automatically removed. They represent intentional, deferred work that requires explicit human review and decision-making. Always treat TODO comments as read-only during refactoring — only the user can decide whether to address or remove them.

A Guiding Principle

"The whole point is not to delete comments, but to obviate them and then delete them." — Tim Ottinger

Misunderstanding to avoid: Absence of comments does *not* imply well-factored code. The goal is code that is clear and well-structured enough that comments become unnecessary — not code that simply lacks them. Comments should become redundant through refactoring, not through deletion alone.


Step-by-Step Review Workflow

When the user shares code to review for comment smells:

  1. Scan all comments — list each one with its type (what/why/how/outdated)
  2. Classify each comment as:

- ✅ Legitimate (explain *why*, complex algorithm, API doc) - ⚠️ Smell — explains *what* code does (refactor candidate) - ❌ Outdated / misleading (delete)

  1. For each smell, suggest the appropriate refactoring technique with a concrete example
  2. Show before/after for the refactored snippet
  3. Summarize payoff — how the code becomes more intuitive without the comments

Quick Reference

Comment explains...Refactoring to apply
A complex expressionExtract Variable
What a code block doesExtract Method
What a method doesRename Method
A required preconditionIntroduce Assertion
Why a design was chosen✅ Keep it
A complex, irreducible algo✅ Keep it
Something outdated/wrong❌ Delete it

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.28%
按下载量换算62

Claude

27.11%
按下载量换算48

Cursor

18.61%
按下载量换算33

Gemini CLI

9.64%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills