agentsclimarketplace

Refactoring

Skill bg-szy/TOP-SKILLS/skills/marketplace/refactoring

全球最大的 Claude Code 技能聚合库 · 收录 3900+ 来自 12+ 来源的技能,提供在线搜索与趋势分析看板 / The world's largest Claude Code skill aggregation hub — 3900+ skills from 12+ sources with online search and trend dashboard

Install
npx -y skills add bg-szy/TOP-SKILLS --skill refactoring

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Systematic refactoring with small-step discipline. Use when user says 'refactor', 'clean up', 'restructure', 'extract', 'rename', 'simplify', or mentions code smells. Enforces one change → test → commit cycle. For structural improvements, NOT style/formatting (use /lint). NOT for adding features or fixing bugs.

SKILL.md

7.7 KB, as published. Nobody here has run it

Refactoring

Improve code structure without changing behavior. One small step at a time.

Iron Law: ONE REFACTORING → TEST → COMMIT. Never batch changes.

When to Use

Answer IN ORDER. Stop at first match:

  1. User says "refactor", "clean up", "restructure"? → Use this skill
  2. User asks to "extract", "rename", "simplify"? → Use this skill
  3. Code smell identified? → Use this skill
  4. User wants to add feature or fix bug? → Skip (use tdd-enforcer)
  5. User wants formatting/style fixes? → Skip (use /lint)

Code smells (common triggers):

  • Duplicated code (same logic in multiple places)
  • Long function (>30 lines, doing too much)
  • Magic numbers/strings (unexplained literals)
  • Deep nesting (>3 levels of indentation)
  • Dead code (unused functions, unreachable branches)
  • Poor naming (unclear what something does)

Phase 1: ASSESS

Is this actually refactoring?

User IntentAction
"Make this cleaner"✓ Refactoring
"Add validation"✗ New behavior → tdd-enforcer
"Fix this bug"✗ Bug fix → tdd-enforcer or systematic-debugger
"Format this code"✗ Style → /lint

If not refactoring: Explain and suggest correct approach.


Phase 2: PROTECT

Does the code have tests?

CoverageAction
Well-testedSkip to Phase 3
Partial coverageAdd characterization tests for untested parts
No testsAdd characterization tests first

Characterization Tests

Capture current behavior before refactoring:

// Characterization test - captures ACTUAL behavior
it('processOrder returns current behavior', () => {
  const result = processOrder({ items: [], user: null });
  // Whatever it returns NOW is the expected value
  expect(result).toEqual({ status: 'empty', total: 0 });
});

Purpose: Safety net, not specification. Test what the code DOES, not what it SHOULD do.


Phase 3: REFACTOR

Iron Law: ONE refactoring at a time. Run tests after EVERY change.

Refactoring Catalog

Tier 1 - Always Safe (no behavior change possible):

SmellRefactoringExample
Unclear nameRenameddiscountAmount
Long functionExtract FunctionPull 10 lines into calculateTax()
Unnecessary variableInline VariableRemove temp = x; return temp;
Misplaced codeMove FunctionMove validate() to Validator class
// ❌ Before: unclear name
const d = price * 0.2;

// ✅ After: Rename
const discountAmount = price * 0.2;

Tier 2 - Safe with Tests (low risk if tests exist):

SmellRefactoringExample
Repeated expressionExtract Variableorder.items.length > 0const hasItems = ...
Complex conditionalDecompose ConditionalExtract if branches to named functions
Nested conditionalsGuard ClausesEarly returns instead of deep nesting
Magic literalReplace Magic Literal0.2VIP_DISCOUNT_RATE
Unused codeRemove Dead CodeDelete unreachable branches
// ❌ Before: nested conditionals
function getDiscount(user) {
  if (user) {
    if (user.isVIP) {
      return 0.2;
    } else {
      return 0.1;
    }
  }
  return 0;
}

// ✅ After: Guard Clauses
function getDiscount(user) {
  if (!user) return 0;
  if (user.isVIP) return 0.2;
  return 0.1;
}

Tier 3 - Requires Care (higher risk, break into smaller steps):

SmellRefactoringCaution
God classExtract ClassDo incrementally, move one method at a time
Type-checking conditionalsReplace with PolymorphismRequires class hierarchy
Too many parametersIntroduce Parameter ObjectChanges function signature
Complex loopReplace Loop with PipelineEnsure equivalent behavior

Tie-breaker: If multiple refactorings apply, choose smallest scope first (Rename < Extract Variable < Extract Function < Extract Class).


Phase 4: VERIFY

After each refactoring:

  1. Run tests - Must pass
  2. If tests pass: Commit with refactor: [what changed]
  3. If tests fail: Revert immediately

Revert Protocol

git checkout -- <changed-files>

After revert:

  • Was the refactoring too large? → Try smaller step
  • Did it accidentally change behavior? → Reconsider approach
  • DO NOT attempt to "fix" a failed refactoring

After 2 Failed Attempts

STOP. Ask user:

"I've attempted this refactoring twice and tests keep failing. This suggests either:

  1. The refactoring is too large (need smaller steps)
  2. The code has hidden dependencies
  3. Tests are brittle

How would you like to proceed?"


Phase 5: ITERATE

More refactoring needed?
├─ Yes → Return to Phase 3 (one more refactoring)
└─ No → Done
    └─ Report: "Refactoring complete. Changes: [summary]"

Edge Cases

Partial test coverage:

  • Identify which functions are tested vs untested
  • Add characterization tests only for code you're about to refactor
  • Don't boil the ocean - test what you touch

Refactoring reveals a bug:

  • STOP refactoring
  • Note the bug location
  • Ask user: "Found potential bug at X. Fix it now (switching to tdd-enforcer) or continue refactoring?"

User requests large refactoring:

  • Break into steps: "I'll refactor this incrementally. First: [step 1]"
  • Complete each step fully before next
  • Never batch multiple refactorings in one edit

Anti-Patterns

Don'tDo
Batch multiple refactoringsOne refactoring → test → commit
"Fix" a failed refactoringRevert, then try smaller step
Refactor without testsAdd characterization tests first
Change behavior during refactorThat's a feature/fix, not refactoring
Skip the commitCommit after every green test

Key Takeaways

  1. One change at a time - Never batch refactorings
  2. Tests before refactoring - No safety net = no refactoring
  3. Revert on failure - Don't fix, revert and retry smaller
  4. Commit after each success - refactor: [description]
  5. Smallest scope first - Rename < Extract < Move < Restructure

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.