Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
akillness avatar

Code Refactoring

  • 389 installs
  • 40 repo stars
  • Updated August 4, 2026
  • akillness/oh-my-skills

code-refactoring is an agent skill that safely refactors legacy modules with behavior-preserving extraction, API renames, and coupling reduction for developers who improve maintainability without changing system behavior

About

code-refactoring is a routing-first cleanup skill in akillness/oh-my-skills that performs behavior-preserving structural hardening on legacy modules. It starts from the cleanup packet teams actually have—local cleanup, fragile legacy areas, repeated migrations, codemod plans, or cleanup-heavy diff shaping—and routes work through references/intake-packets-and-route-outs.md. The skill extracts functions, renames APIs, reduces coupling, and plans codemods while preserving observable behavior, with eval coverage including search-first blast-radius route-outs. It explicitly routes performance tuning to performance-optimization and correctness bugs to debugging rather than absorbing unrelated work. Developers reach for code-refactoring when diffs need structural cleanup, legacy modules need decomposition, or repeated migration patterns need codemod planning without risky behavior changes.

  • Safe incremental refactors
  • Behavior-preserving changes
  • Coupling and duplication reduction
  • Test-guided restructuring
  • Readable module boundaries

Code Refactoring by the numbers

  • 389 all-time installs (skills.sh)
  • Ranked #263 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/akillness/oh-my-skills --skill code-refactoring

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs389
repo stars40
Last updatedAugust 4, 2026
Repositoryakillness/oh-my-skills

How do you refactor legacy code without breaking behavior?

Safely refactor legacy modules—extract functions, rename APIs, reduce coupling—while preserving behavior and improving maintainability over time.

Who is it for?

Developers cleaning up legacy modules, shaping cleanup-heavy PR diffs, or planning codemods who must preserve behavior and limit blast radius.

Skip if: Greenfield feature development, performance-only tuning without structural changes, or debugging active production incidents.

When should I use this skill?

The developer asks to refactor legacy code, extract functions, rename APIs, reduce coupling, plan a codemod, or clean up a diff without changing behavior.

What you get

Refactored modules, extraction plans, codemod scripts, blast-radius analysis, and behavior-preservation verification notes

  • Refactored module structure
  • Codemod plan
  • Blast-radius analysis

By the numbers

  • Includes references/intake-packets-and-route-outs.md for packet-first routing
  • Part of oh-my-skills Code Quality skill collection

Files

SKILL.mdMarkdownGitHub ↗

Code Refactoring

Use this skill when the job is to improve structure without changing intended behavior.

The center of the skill should stay small and repeatable: 1. identify the cleanup packet you actually have, 2. choose one refactor mode, 3. make the behavior guardrail explicit, 4. stage the work in reviewable slices, 5. verify and route remaining work honestly.

Read these support docs before handling unfamiliar cleanup work:

  • references/intake-packets-and-route-outs.md
  • references/refactor-modes.md
  • references/handoff-boundaries.md
  • references/safe-refactor-checklist.md

When to use this skill

  • A function, component, service, script, or module is too tangled and needs structural cleanup without a behavior change.
  • A legacy area needs a freeze-first cleanup because the current behavior is fragile or poorly understood.
  • The same API, naming, or structure change repeats across many files and needs a codemod / migration brief.
  • A diff mixes cleanup with too much semantic work and needs to be split into smaller reviewable slices.
  • The user asks to refactor, decompose, deduplicate, rename safely, stage a cleanup, or plan a behavior-preserving migration.

When not to use this skill

  • The main job is proving why behavior is wrong, reproducing a failure, or isolating a regressiondebugging
  • The main job is deciding whether a concrete diff / PR is safe to mergecode-review
  • The main job is choosing org-wide validation depth, benchmark policy, or release gatestesting-strategies
  • The main job is finding the bottleneck from traces, flamegraphs, CWV reports, or profiler outputperformance-optimization
  • The main job is finding symbols, call sites, or impact scope before any cleanup tactic is chosencodebase-search

Instructions

Step 1: Start from the cleanup packet

Use references/intake-packets-and-route-outs.md.

Choose the packet the user already has:

  • one messy file / component / service
  • a fragile legacy area with weak confidence in current behavior
  • a repeated migration pattern across many files
  • a cleanup-heavy diff that needs reshaping before review
  • only a vague desire to “find all the places first”

Output the intake briefly:

## Cleanup Packet
- Current artifact:
- Why it is enough (or not enough):
- Missing evidence to collect next:

Rule: do not force a giant refactor plan when the immediate need is only search, diagnosis, review, or performance evidence.

Step 2: Choose one primary refactor mode

Pick exactly one primary mode from references/refactor-modes.md.

Primary modes:

  • local-safe-refactor
  • behavior-freeze-first
  • repetitive-migration-codemod
  • diff-shaping-cleanup

Quick selector:

SignalMode
One file or narrow module, clear intent, at least one fast guardrail existslocal-safe-refactor
Fragile legacy area, hidden invariants, weak test trustbehavior-freeze-first
Same API or structure repeats across many filesrepetitive-migration-codemod
Cleanup is mixed into a risky review diff and needs smaller slicesdiff-shaping-cleanup

Rule: one primary mode, optional secondary note. Do not mix every cleanup tactic into one answer.

Step 3: Freeze the behavior guardrail

Before broad edits, decide how you will prove intent stayed the same.

Guardrail sources can include:

  • existing unit / integration / end-to-end tests
  • typecheck and linter
  • characterization tests or captured examples
  • fixture snapshots or golden outputs
  • screenshots / preview captures for UI work
  • before/after sample input-output tables
  • manual smoke steps when automation is thin

Minimum rule:

  • Local cleanup → at least one fast verification path
  • Fragile legacy cleanup → freeze behavior first
  • Repeated migration → pilot on a small representative sample first
  • Diff reshaping → separate mechanical cleanup from semantic follow-up

If the user mainly needs help designing the entire validation program, route to testing-strategies.

Step 4: Build the smallest credible cleanup plan

Keep the plan reviewable.

Preferred slices: 1. rename / move / extract work 2. duplicated or dead-code cleanup 3. mechanical migration or codemod rollout 4. semantic follow-up only if still needed 5. verification + handoff

For each slice, capture:

  • goal
  • behavior to preserve
  • evidence / guardrail
  • risk edge
  • whether another skill owns the next step

Rules:

  • Prefer a sequence of boring diffs over one heroic rewrite.
  • Keep structural cleanup and semantic behavior changes separate when possible.
  • For migrations, define source pattern, target pattern, known exceptions, and rollback path before scaling up.

Step 5: Use the right mode packet

Use the matching packet in references/intake-packets-and-route-outs.md:

  • local cleanup packet
  • fragile legacy / freeze-first packet
  • repeated migration / codemod packet
  • diff-shaping packet

Good moves by mode:

  • local-safe-refactor → rename unclear concepts, extract pure logic, move side effects to edges, collapse close duplication
  • behavior-freeze-first → capture examples, add characterization tests, identify one seam, refactor behind that seam
  • repetitive-migration-codemod → define source/target pattern, sample first, inspect false positives, expand only after the pilot is trustworthy
  • diff-shaping-cleanup → split cleanup from semantic changes, isolate generated or mechanical edits, leave review notes about remaining hotspots

Step 6: Verify and route remaining work

Do not stop at “looks cleaner.”

Verification brief:

## Refactor Brief
- Primary mode:
- Behavior to preserve:
- Guardrail used:
- Smallest planned slices:
- Risks still open:
- Recommended next move:

Always call out:

  • what behavior was intended to stay the same
  • what evidence was used to verify that
  • what still remains risky or out of scope
  • which neighboring skill should own the next step when the job shifts

Output format

## Cleanup Packet
- Current artifact:
- Primary mode:
- Why this mode fits:

## Behavior Guardrail
- Intended behavior to preserve:
- Evidence available:
- Missing evidence:

## Planned slices
1. ...
2. ...
3. ...

## Verification
- Fast checks:
- Higher-risk checks:

## Route-outs
- Use `debugging` for:
- Use `code-review` for:
- Use `testing-strategies` for:
- Use `performance-optimization` for:
- Use `codebase-search` for:

Examples

Example 1: Oversized service handler

Input: "Refactor this 180-line checkout handler into something readable without changing behavior."

Good response shape:

  • choose local-safe-refactor
  • preserve coupon / tax / out-of-stock behavior explicitly
  • extract validation, pricing, and persistence helpers
  • keep tests / typecheck as guardrails
  • split structural cleanup from later semantic follow-up

Example 2: Fragile legacy module

Input: "This reporting service is impossible to maintain, but we barely trust the tests. Help me refactor it safely."

Good response shape:

  • choose behavior-freeze-first
  • capture characterization cases before broad cleanup
  • identify one seam at a time instead of redesigning everything
  • route deep failure investigation to debugging if expected behavior is still unclear

Example 3: Repeated API migration

Input: "We need to replace a deprecated client API across 220 TypeScript files before the framework upgrade."

Good response shape:

  • choose repetitive-migration-codemod
  • define source and target patterns
  • pilot the transform on a subset first
  • keep mechanical rewrite separate from semantic follow-up
  • verify with tests, typecheck, and repo search

Example 4: Search-first route-out

Input: "Before we refactor anything, find every call site and wrapper around this old helper so we can see the blast radius."

Good response shape:

  • route the primary task to codebase-search
  • do not present a full refactor plan as the main answer
  • keep code-refactoring positioned as the cleanup lane after the impact map exists

Best practices

1. Start from the packet the user actually has, not an idealized cleanup workflow. 2. Pick one primary mode before proposing actions. 3. Make behavior preservation explicit; do not assume it. 4. Prefer small, reviewable slices over one giant cleanup diff. 5. Use codemods or structural rewrites only when repetition justifies the setup cost. 6. Keep diagnosis, review judgment, test-policy design, performance tuning, and symbol inventory routed to neighboring skills instead of absorbing them. 7. Preserve evidence of what was verified and what still remains risky.

References

Related skills

How it compares

Pick code-refactoring over generic DRY/SOLID advice when you need behavior-preserving cleanup with blast-radius routing on real legacy diffs.

FAQ

Does code-refactoring change system behavior?

code-refactoring performs behavior-preserving structural cleanup only. It extracts functions, renames APIs, and reduces coupling while keeping observable behavior identical, routing correctness bugs to debugging and performance work elsewhere.

What cleanup packets does code-refactoring accept?

code-refactoring routes from intake packets including local cleanup, fragile legacy areas, repeated migration or codemod work, and cleanup-heavy diff shaping. references/intake-packets-and-route-outs.md defines blast-radius route-outs.

Code Review & Qualitybackendfrontendtesting

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.