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

code-refactoring代码重构

Agent Skill

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

总安装

222

周安装

9

GitHub Stars

2

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-gods --skill code-refactoring

简介

用于代码行为保持的重构,适合简化复杂逻辑或拆分大文件/函数。

  • 适用于清理重复代码、优化命名或准备技术债务偿还前的结构梳理。
  • 使用时需确保行为不变,并通过测试验证结果,避免为重构而重构。
  • 安装命令:npx skills add https://github.com/akillness/oh-my-gods --skill code-refactoring。
  • 建议小步提交、频繁验证,防止引入隐藏 bug。

SKILL.md

Code Refactoring

Refactoring is a behavior-preserving change surface, not a license to redesign the system while cleanup is in flight. Keep the work scoped, reversible, and backed by proof that behavior still holds.

When to use this skill

  • Simplify complex or duplicated code without changing intended behavior
  • Break a large function, file, class, or component into smaller reviewable pieces
  • Clean up naming, boundaries, or repeated logic before adding more features
  • Plan or execute a repeated migration or codemod-style cleanup safely
  • Reduce technical debt when the user wants a clearer implementation, not a new design

Prefer a neighboring skill when the main job is different:

  • debugging for reproducing and isolating a failure or regression root cause
  • code-review for reviewing an existing diff instead of performing the refactor
  • testing-strategies for deciding validation policy before any test work exists
  • backend-testing when the missing work is adding regression coverage
  • performance-optimization for measurement-led latency, memory, or throughput tuning
  • api-design or database-schema-design for contract or schema redesign
  • ui-component-patterns or state-management for frontend architecture choices
  • codebase-search when impact analysis or call-site tracing is still the first task

Instructions

Step 1: Triage the cleanup boundary before editing

Capture the minimum facts first:

  • refactor shape: extraction, duplication removal, rename, file split, migration, or codemod
  • protected behavior: tests, typecheck, lint, screenshots, logs, or user-visible invariants already in place
  • blast radius: single function, module, feature slice, or cross-repo pattern
  • risk class: auth, persistence, API compatibility, concurrency, performance, or operational safety
  • requested outcome: simpler code, smaller diff, clearer ownership, or easier follow-on work

If the user really wants a redesign, policy decision, or defect investigation, route before touching the code.

Step 2: Lock behavior before structural cleanup

Do not treat "it should still work" as evidence.

  • reuse existing tests and checks when they already cover the risky path
  • add or request regression coverage when the behavior is not protected
  • write a short cleanup plan before modifying code for larger cleanup or deslop work
  • keep one smell-focused pass at a time instead of stacking unrelated rewrites

Read references/behavior-preservation-checks.md when the proof burden or verification surface is unclear.

Step 3: Choose the smallest refactor slice that changes the least behavior

Prefer the narrowest move that makes the next change easier:

  • extract one helper, not three abstractions at once
  • remove one duplicated branch or data shape before broad renames
  • split one oversized file at a stable boundary instead of reorganizing the package
  • keep old and new call paths easy to compare when doing repeated migrations

Favor deletion, reuse, and clearer boundaries over new frameworks or layers.

Step 4: Apply the refactor in reversible steps

Use a consistent sequence:

  1. isolate the target smell or repeated pattern
  2. make the smallest structural change that addresses it
  3. re-run the relevant checks immediately
  4. stop if the next edit would widen scope into design or debugging work

Read references/refactor-slice-playbook.md for small-step patterns, commit shaping, and common "do not widen the lane" guardrails.

Step 5: Verify behavior and route follow-on work correctly

Before calling the refactor done:

  • confirm the protected behavior still passes
  • name any gaps that remain unproven
  • separate "cleanup complete" from "system redesign still needed"
  • route review, testing, debugging, or performance follow-up to the right sibling skill

Good refactoring output ends with a smaller, clearer diff plus explicit verification, not a vague claim that the code is now "clean."

Output format

Expected response shape:

  • Refactor target: what smell, boundary, or duplicated logic is being changed
  • Behavior lock: what evidence protects current behavior before and after edits
  • Refactor plan: the smallest sequence of cleanup steps
  • Verification: what checks prove the refactor stayed behavior-preserving
  • Follow-on work: any sibling skill that should own the next task

Examples

Example 1: Shrink a large function without redesigning the feature

Input:

Refactor this handler. It is 250 lines long and hard to review, but I do not
want behavior changes.

Expected shape:

  • identifies the behavior lock before extraction work starts
  • proposes a narrow sequence such as extraction, naming cleanup, and verification
  • avoids turning the task into a broader architecture rewrite

Example 2: Remove duplication before adding more features

Input:

These two services duplicate the same validation and transformation logic.
Can you clean that up without changing the API behavior?

Expected shape:

  • focuses on the duplicated logic and stable shared boundary
  • keeps the refactor reversible and verification-backed
  • does not drift into contract redesign unless the duplication exposes a real API design issue

Example 3: Route away when the task is really review or debugging

Input:

Review this refactor PR for regressions and tell me whether to merge it.

Expected shape:

  • recognizes that reviewing a diff belongs in code-review
  • preserves this skill for doing the cleanup work itself
  • does not pretend refactoring and review are the same task

Best practices

  • Treat refactoring as behavior-preserving until proven otherwise.
  • Keep the cleanup plan smaller than the user's frustration with the code.
  • Lock behavior before changing structure when risky paths are not already protected.
  • Prefer one smell-focused pass over stacked rewrites.
  • Route design, testing, debugging, and performance work to sibling skills when they become the main job.
  • Add eval coverage before any skill-autoresearch loop on this skill.
  • Keep heavy examples and heuristics in references so the entrypoint stays compact and triggerable.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.4%
按下载量换算28

Claude

28.86%
按下载量换算20

Cursor

16.86%
按下载量换算12

Gemini CLI

10.39%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills