refactor

A code-review command that examines a file or directory and suggests ways to improve its readability, performance, testability, or structure.

In plain words
What is it for?
Use it to review code for refactoring opportunities, such as splitting large functions, simplifying nested logic, improving names, or reducing unnecessary computations.
Why use it?
It helps find tangled code, repeated work, hard-to-test dependencies, and other design problems before they make changes harder.

Command

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/onmyway133/claude-code-plugins/refactor
Clone the repo
git clone --depth 1 https://github.com/onmyway133/claude-code-plugins
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 432 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00432
Opus 5 $0.00000 $0.00216
Sonnet 5 $0.00000 $0.00086
Haiku 4.5 $0.00000 $0.00043

Measured 2d ago against content hash 786a903ec4ee, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

refactor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/super/commands/refactor.md · 88 lines

What it actually says

Refactor

Analyze code and suggest meaningful refactoring improvements.

Usage

/refactor [file_path] [focus_area]

Arguments:

  • file_path - File or directory to analyze (required)
  • focus_area - Optional: readability, performance, testability, structure

Refactoring Process

Step 1: Understand Current State

Read the target code and identify:

  • What the code does (business logic)
  • Current patterns and abstractions
  • Dependencies and coupling
  • Test coverage (if tests exist)

Step 2: Identify Opportunities

Look for these refactoring candidates:

Structure Issues
  • Functions/methods doing too many things
  • Deep nesting that obscures logic
  • God classes with too many responsibilities
  • Scattered related functionality
Readability Issues
  • Unclear variable/function names
  • Magic numbers or strings
  • Complex conditionals that need extraction
  • Missing or misleading abstractions
Performance Issues
  • Unnecessary allocations in loops
  • Redundant computations
  • N+1 query patterns
  • Blocking operations that could be async
Testability Issues
  • Hard dependencies that prevent mocking
  • Side effects mixed with pure logic
  • Global state usage
  • Tightly coupled components

Step 3: Propose Changes

For each suggestion:

## Refactoring: [Name of Change]

**Current Code:**
[Relevant snippet]

**Proposed Change:**
[Refactored code]

**Why This Helps:**
- [Benefit 1]
- [Benefit 2]

**Risk Level:** Low / Medium / High
**Effort:** Small / Medium / Large

Step 4: Prioritize

Rank suggestions by:

  1. High impact, low risk changes first
  2. Changes that enable future improvements
  3. Quick wins before large restructuring

Guidelines

  • Preserve existing behavior unless told otherwise
  • Small, incremental changes over big rewrites
  • Each refactoring should be independently applicable
  • Consider backward compatibility
  • Suggest tests for risky changes
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 88 lines · 0 tokens per session scan A 786a903ec4ee

Subscribe to this mod's changes

refactor is a command published in the GitHub repository onmyway133/claude-code-plugins (5 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 432 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.