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

simplifying-code简化代码

Agent Skill

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

总安装

612

周安装

26

GitHub Stars

7

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/iliaal/ai-skills --skill simplifying-code

简介

simplifying-code 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前无原始 SKILL.md 内容可参考,实际功能以来源仓库为准。

SKILL.md

Simplifying Code

Principles

PrincipleRule
Preserve behaviorOutput must do exactly what the input did -- no silent feature additions or removals. Specifically preserve: async/sync boundaries (do not convert sync to async or reverse), error propagation paths (do not alter strategy), logging/telemetry/guards/retries that encode operational intent, and domain-specific steps (do not collapse into generic helpers that hide intent)
Explicit over cleverPrefer explicit variables over nested expressions. Readable beats compact
Simplicity over cleanlinessPrefer straightforward code over pattern-heavy "clean" code. Three similar lines beat a premature abstraction
Surgical changesTouch only what needs simplifying. Match existing style, naming conventions, and formatting of the surrounding code
Surface assumptionsBefore changing a block, identify what imports it, what it imports, and what tests cover it. Edit dependents in the same pass

Process

  1. Read first -- understand the full file and its dependents before changing anything. Apply Chesterton's Fence: if you see code that looks unnecessary but don't understand why it's there, check git blame before removing it. First understand the reason, then decide if the reason still applies.
  2. Identify invariants -- what must stay the same? Public API, return types, side effects, error behavior
  3. Identify targets -- find the highest-impact simplification opportunities. Impact = readability and maintainability; prioritize: control flow -> naming -> duplication -> types (see Smell -> Fix table)
  4. Apply in order -- control flow → naming → duplication → data shaping → types. Structural changes first, cosmetic last
  5. Verify -- confirm no behavior change: tests pass, types check, imports resolve
  6. Pre-submit scope audit -- walk every changed line and ask "does the requested task explicitly require this line?" If no, revert it and list it as a follow-up under Residual Risks. Drive-by edits belong in a separate change, not the current patch. For the pre-edit complement on ambiguous-scope requests ("simplify my project"), see ia-verification-before-completion's Scope Confirmation gate.

Smell → Fix

SmellFix
Deep nesting (>2 levels)Guard clauses with early returns
Long function (>20 lines)Extract into named functions by responsibility
Too many parameters (>3)Group into an options/config object
Duplicated block (3+ occurrences)Extract shared function. Two copies = leave inline; wait for the third
Magic numbers/stringsNamed constants
Complex conditionalExtract to descriptively-named boolean or function
Dense transform chain (3+ chained methods)Break into named intermediates for debuggability
Dead code / unreachable branchesDelete entirely -- no commented-out code
Unnecessary else after returnRemove else, dedent

AI Slop Removal

When simplifying AI-generated code, specifically target:

  • Redundant comments that restate the code (// increment counter above counter++) -- delete them
  • Unnecessary defensive checks for conditions that cannot occur in context -- remove the guard
  • Gratuitous type casts (as any, as unknown as T) -- fix the actual type or use a proper generic
  • Over-abstraction (factory for 2 objects, wrapper around a single call, util file with 1 function) -- inline the code
  • Inconsistent style that drifts from the file's existing conventions -- match the file
  • Placeholder stubs (//..., // rest of code, // similar to above, // continue pattern, // add more as needed) -- leave unsimplified code as-is rather than replacing it with stubs
  • Redundant error wrapping (catch(e) {throw e;}, catch(e) {throw new Error(e.message);}) that strips the original stack for no reason -- remove the try/catch entirely and let errors propagate
  • Verbose stdlib reimplementations (hand-rolled loops that replicate array_filter, Array.from, Collection::pluck(), itertools) -- replace with the stdlib/framework one-liner

Stop Conditions

Stop and ask before proceeding when:

  • Simplification requires changing a public API (function signatures, return types, exports)
  • Behavior parity cannot be verified (no tests exist and behavior is non-obvious)
  • Code is intentionally complex for domain reasons (performance-critical, protocol compliance)
  • Scope implies a redesign rather than a simplification

Constraints

  • Only simplify what was requested -- do not add features, expand scope, or introduce new dependencies
  • Leave unchanged code untouched -- do not add comments, docstrings, or type annotations to lines that were not simplified
  • Do not bundle unrelated cleanups into one patch -- each simplification should be a coherent, reviewable unit
  • Do not introduce framework-wide patterns while simplifying a small local change
  • Do not replace understandable duplication with opaque utility layers -- three similar lines are better than a premature abstraction
  • Keep comments that explain intent, invariants, or non-obvious constraints. Remove comments that restate obvious code behavior.
  • If a simplification would make the code harder to understand, skip it
  • Watch for over-simplification: inlining too aggressively removes names that gave concepts meaning; combining unrelated logic into one function hides distinct responsibilities; removing abstractions that exist for testability breaks the test suite
  • When unsure whether a block is dead code, ask instead of deleting

Verify

  • Tests pass and types check after changes
  • No behavior change (same inputs produce same outputs)
  • Scope limited to requested files -- no drive-by cleanups

Orchestrator Mode (When Chained With Other Skills)

When this skill is invoked by an orchestrator that also runs ia-code-review, ia-writing-tests, or ia-verification-before-completion on the same scope, each sub-skill re-resolving scope independently wastes tokens and risks drift. Avoid this by resolving scope exactly once and passing a canonical block to every sub-skill.

Resolved scope format — the orchestrator builds this once, before dispatching any sub-skill:

## Resolved scope
Files:
- path/to/file-a.ts
- path/to/file-b.ts

Commit range: HEAD~3..HEAD (or "uncommitted")

Intent: [one-sentence description pulled from the user request or PR description]

Constraints:
- Preserve public API
- No behavior change
- [other constraints specific to this run]

Every chained sub-skill receives this block verbatim in its prompt and uses it as the source of truth — no re-running git diff --name-only, no re-parsing the user request, no independent scope resolution. Sub-skills accept --no-verify --no-report flags when chained so verification and reporting happen once at the end of the chain, not per-skill. The last sub-skill in the chain runs verification; the orchestrator trusts that result rather than re-verifying.

This prevents two failure modes: scope drift (sub-skill A simplifies one set of files, sub-skill B reviews a different set) and double work (every sub-skill rediscovers the same facts).

Integration

  • ia-code-simplicity-reviewer agent -- analysis-only pass producing a simplification report (no code changes). Use before refactoring to identify targets.

Output

After simplifying, report:

  • Scope touched: files and functions modified
  • Key simplifications: what changed and why (one line each)
  • Verification: tests pass, types check, no behavior change
  • Residual risks: assumptions made, areas not touched that may need attention

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

34.49%
按下载量换算74

Codex

33.99%
按下载量换算73

Cursor

19.28%
按下载量换算41

Gemini CLI

9.3%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills