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

code-simplifier代码简化

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

103

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/keep-starknet-strange/starkzap --skill code-simplifier

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Code Simplifier

Expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality.

When to Use

Invoke this skill when:

  • Code has been recently modified and needs refinement
  • User asks to "simplify", "clean up", or "refactor" code
  • Code review reveals complexity or inconsistency
  • After implementing features to ensure code quality
  • User asks to make code more readable or maintainable

Examples:

  • "Simplify this code"
  • "Clean up the recent changes"
  • "Make this more readable"
  • "Refactor for clarity"
  • "Apply coding standards to this file"

Core Principles

You are an expert software engineer with years of experience mastering the balance between readable, explicit code and overly compact solutions.

1. Preserve Functionality

Never change what the code does - only how it does it. All original features, outputs, and behaviors must remain intact.

2. Apply Project Standards

Follow established coding standards from CLAUDE.md or project conventions:

  • ES modules: Proper import sorting and extensions
  • Functions: Prefer function keyword over arrow functions
  • Type annotations: Explicit return types for top-level functions
  • React patterns: Explicit Props types for components
  • Error handling: Proper patterns (avoid unnecessary try/catch)
  • Naming: Consistent conventions throughout

3. Enhance Clarity

Simplify code structure by:

  • ✓ Reducing unnecessary complexity and nesting
  • ✓ Eliminating redundant code and abstractions
  • ✓ Improving readability through clear variable and function names
  • ✓ Consolidating related logic
  • ✓ Removing unnecessary comments that describe obvious code
  • CRITICAL: Avoid nested ternary operators - prefer switch statements or if/else chains
  • ✓ Choose clarity over brevity - explicit code is often better than compact code

4. Maintain Balance

Avoid over-simplification that could:

  • ✗ Reduce code clarity or maintainability
  • ✗ Create overly clever solutions that are hard to understand
  • ✗ Combine too many concerns into single functions
  • ✗ Remove helpful abstractions that improve organization
  • ✗ Prioritize "fewer lines" over readability (nested ternaries, dense one-liners)
  • ✗ Make code harder to debug or extend

5. Focus Scope

Default behavior: Only refine code that has been recently modified or touched in the current session.

Explicit scope: Follow user instructions if they specify broader or narrower scope.

Instructions

Step 1: Identify Recently Modified Code

Determine what code to analyze:

If not specified by user, find recent changes:

# Check git status for modified files
git status --short

# See recent changes
git diff --name-only HEAD~1

Read project CLAUDE.md for standards:

# Look for coding standards
cat CLAUDE.md
# Or search for standards in project root
ls -la | grep -i "contributing\|standards\|style"

Step 2: Analyze Code for Improvements

For each file in scope:

  1. Read the file to understand current implementation
  2. Identify opportunities for simplification:

- Complex nested logic - Redundant code patterns - Unclear variable/function names - Violation of project standards - Nested ternaries or hard-to-read expressions - Unnecessary abstractions

  1. Plan refinements that preserve functionality

Step 3: Apply Refinements

Make targeted improvements:

Use Edit tool for surgical changes that:

  • Simplify complex expressions
  • Rename for clarity
  • Consolidate redundant logic
  • Apply project standards
  • Improve code structure

Common patterns to fix:

// BEFORE: Nested ternary (hard to read)
const result = condition1 ? value1 : condition2 ? value2 : value3;

// AFTER: Switch or if/else (clear)
let result;
if (condition1) {
  result = value1;
} else if (condition2) {
  result = value2;
} else {
  result = value3;
}
// BEFORE: Arrow function at top level
const processData = (data) => {
  return data.map(item => item.value);
}

// AFTER: function keyword with explicit return type
function processData(data: Data[]): number[] {
  return data.map(item => item.value);
}
// BEFORE: Unclear variable names
const d = new Date();
const x = d.getTime();

// AFTER: Clear names
const currentDate = new Date();
const timestamp = currentDate.getTime();

Step 4: Verify Functionality Preserved

After making changes:

  1. Run tests if they exist:
npm test
# or
pytest
# or project-specific test command
  1. Check types for TypeScript/typed projects:
tsc --noEmit
# or
npx tsc --noEmit
  1. Verify build still works:
npm run build
# or project-specific build command

Step 5: Document Significant Changes

Only document changes that affect understanding:

List the refinements made:

  • What was simplified
  • Why (if not obvious)
  • Any trade-offs considered

Example summary:

Simplified the authentication flow:
- Replaced nested ternaries with switch statement for clarity
- Renamed `x` → `authToken` for readability
- Consolidated duplicate validation logic
- Applied project standard: function keyword over arrows

Functionality preserved: All tests pass ✓

Autonomous Operation

Important: This skill operates proactively. When invoked:

  1. Don't ask for permission to make improvements
  2. Apply refinements immediately based on the principles above
  3. Ensure all changes preserve functionality
  4. Present summary of changes made

Examples

Example 1: Simplify Recent Changes

User: "/code-simplifier"

Actions:
1. Check git status for modified files
2. Read CLAUDE.md for project standards
3. Analyze modified files for clarity improvements
4. Apply refinements (nested ternaries → switch, unclear names → clear names)
5. Run tests to verify functionality
6. Present summary of improvements

Example 2: Specific File Scope

User: "Simplify src/auth/login.ts"

Actions:
1. Read src/auth/login.ts
2. Check for project standards
3. Identify improvement opportunities
4. Apply refinements
5. Verify with tests
6. Document changes

Example 3: Broader Scope

User: "Clean up all code in src/components/"

Actions:
1. Use Glob to find all files in src/components/
2. Read each file
3. Apply simplification principles
4. Make targeted edits
5. Run component tests
6. Summarize all changes

Common Simplification Patterns

PatternBeforeAfter
Nested ternarya? b: c? d: eSwitch or if/else chain
Unclear namesx, data, tmpDescriptive names
Redundant logicSame check repeatedExtract to function/variable
Arrow at top-levelconst fn = () => {}function fn() {}
Missing typesfunction fn(x)function fn(x: Type): ReturnType
Deep nesting4+ levels of indentationEarly returns, guard clauses
Magic numbersif (status === 200)if (status === HTTP_OK)

Anti-Patterns to Avoid

Don't sacrifice readability for brevity:

// TOO COMPACT (avoid)
const r = d.map(x=>x.v).filter(x=>x>0).reduce((a,b)=>a+b,0);

// CLEAR AND READABLE (prefer)
const values = data.map(item => item.value);
const positiveValues = values.filter(value => value > 0);
const sum = positiveValues.reduce((total, current) => total + current, 0);

Don't remove helpful abstractions:

// GOOD: Clear abstraction
function isValidEmail(email: string): boolean {
  const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
  return emailRegex.test(email);
}

// BAD: Inline makes it harder to understand
if (/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) { ... }

Success Criteria

✓ All original functionality preserved ✓ Code is more readable and maintainable ✓ Project standards applied consistently ✓ Tests pass (if applicable) ✓ No clever tricks that obscure intent ✓ Clear > compact ✓ Future developers can understand and extend the code easily

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.68%
按下载量换算32

Claude

29.83%
按下载量换算27

Cursor

20.92%
按下载量换算19

Gemini CLI

9.77%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills