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

code-evolution代码 evolution

Agent Skill

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

总安装

210

周安装

9

GitHub Stars

4

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/codybrom/clairvoyance --skill code-evolution

简介

code-evolution 评估代码修改对设计质量的影响,判断是否维持或恶化技术债务状况。

  • 它关注微小合理决策累积效应,识别补丁堆积和功能耦合带来的长期风险。
  • 适用于 PR 评审和系统重构决策,帮助判断何时需要主动偿还技术债务。
  • 使用前需提供具体文件或模块路径,否则无法开展细粒度演化分析。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Code Evolution Review Lens

When invoked with $ARGUMENTS, focus the analysis on the specified file, module, or pull request. Read the target code first, then apply the checks below.

Evaluate whether code modifications maintain or degrade design quality.

When to Apply

  • Reviewing a PR that modifies existing code
  • After adding a feature to an existing system
  • When code has accumulated patches and feels degraded
  • When deciding whether to refactor during a feature change

Core Principles

Technical Debt

Technical debt doesn't come from catastrophic decisions. It comes from hundreds of small, reasonable shortcuts that compound silently until the codebase starts fighting back. Calling it "debt" at all is generous because the financial kind gets repaid.

During Modifications

  • Debt in the area being modified → fix it now (context is fresh, fix is cheapest)
  • Debt elsewhere affecting the modification → document it, fix if feasible
  • Never add to the pile. Each modification should reduce debt, not increase it

Refactoring

Refactoring is not a special event. It is the normal expression of strategic programming applied to existing code. Continuous small improvements, not periodic large refactors.

The "Designed This Way" Standard

"Ideally, when you have finished with each change, the system will have the structure it would have had if you had designed it from the start with that change in mind." — John Ousterhout, *A Philosophy of Software Design*

The design of a mature system is determined more by changes made during its evolution than by any initial conception. Every modifier either continues toward the original trajectory or bends away.

Three-Question Test

  1. If someone were designing this system from scratch knowing this requirement, what would it look like?
  2. Does the modified code match that ideal, or is the change visibly patched on?
  3. If not, what's the minimum restructuring to close the gap?

The Middle Path

When the ideal refactoring takes three months and you have two hours, the strategic question isn't "can I afford to refactor?" It's "what's the best I can do given my constraints?" That question often surfaces an approach nearly as clean as the ideal, achievable in days, that the smallest-change mindset would never find because it anchors on the current code.

The "Smallest Possible Change" Trap

There is no neutral gear. Every change either improves the design or degrades it.

Each minimal change typically introduces a special case, a dependency, or a conditional that doesn't belong. Once, negligible. Across hundreds of modifications over years, this is how well-designed systems become legacy nightmares.

Repetition Audit

After a modification, ask yourself:

  • Does the same logic now exist in multiple places?
  • Was similar code duplicated instead of abstracted?
  • Would a similar change require edits in multiple locations?

Repeated code is a red flag that the right abstraction hasn't been found yet.

Two Strategies

  1. Extract and call: Works best when the method forms a deep abstraction. If the snippet is two lines but requires five parameters, extraction may add more complexity than it removes.
  2. Restructure so the code runs once: Sometimes better because it eliminates duplication entirely.

*When not to extract*: Code that looks identical can represent two independent decisions that happen to be expressed the same way. Merging them creates artificial coupling.

Comment Maintenance

Stale comments are worse than missing comments because they actively mislead. Once readers discover comments can't be trusted, they stop reading them entirely.

Five maintenance rules:

  1. Keep comments near the code they describe: proximity is a maintenance mechanism
  2. Put comments in code, not commit logs: developers navigate code spatially, not chronologically
  3. Document each decision exactly once: duplicated documentation drifts invisibly
  4. Check the diffs before committing: verify documentation still matches behavior
  5. Prefer higher-level comments: abstract comments that describe *what* and *why* survive code changes better than detailed *how* comments. As Ousterhout writes, "the farther a comment is from the code it describes, the more abstract it should be"

Review Process

  1. Apply the "designed this way" test: Does the modification look native or bolted-on?
  2. Check for incremental complexity: Did the change add special cases, dependencies, parameters, or flags?
  3. Run repetition audit: Did the change introduce or perpetuate duplication?
  4. Verify comment maintenance: Are all affected comments updated?
  5. Assess debt trajectory: Is the modification reducing or increasing technical debt?
  6. Recommend: Specific improvements to make the change feel designed-in

Red flag signals for code evolution are cataloged in red-flags (Special-General Mixture, Repetition, Tactical Momentum, Non-obvious Code).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.45%
按下载量换算28

Claude

31.85%
按下载量换算23

Cursor

17.07%
按下载量换算12

Gemini CLI

8.47%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills