Code Refactoring Analysis

VerifiedSafe

Analyzes code to identify refactoring opportunities with blast radius assessment, risk evaluation, and recommended order of operations. Helps engineers plan refactoring initiatives by evaluating complexity, duplication, and coupling concerns before making changes.

Sby Skills Guide Bot
DevelopmentIntermediate
406/2/2026
Claude CodeCursorWindsurf
#code-refactoring#technical-debt#code-analysis#maintainability#code-smells

Recommended for

Our review

Analyzes code to identify refactoring opportunities with blast radius and risk assessment, outputting recommendations without executing changes.

Strengths

  • Identifies multiple code smells with precise locations
  • Includes blast radius and risk assessment per suggestion
  • Recommends order of operations based on dependencies and risk
  • Provides test coverage awareness

Limitations

  • Analysis-only; does not perform the actual refactoring
  • May miss context-specific nuances like business logic intent
  • Relies on static analysis patterns, not runtime behavior
When to use it

When planning a refactoring sprint, assessing technical debt, or evaluating the impact of potential changes before modifying code.

When not to use it

When you need immediate automated refactoring execution, or for trivial single-file changes where a quick edit suffices.

Security analysis

Safe
Quality score90/100

This skill is read-only analysis with Read, Glob, Grep tools. It does not execute any code, modify files, or access external resources. No destructive actions or data exfiltration risks.

No concerns found

Examples

Refactor analysis of a single file
Analyze pkg/auth/handler.go for refactoring opportunities, focusing on complexity and duplication.
Full package technical debt assessment
Review the utils/ directory and identify all code smells, blast radius, and suggest a refactoring plan with risk levels.
Component-level analysis for frontend
Find refactoring opportunities in the UserProfile component, particularly around state management and render logic.

name: refactor description: Analyze code and suggest refactoring opportunities with blast radius assessment, risk evaluation, and recommended order of operations license: MIT compatibility:

  • runtime:any allowed-tools:
  • Read
  • Glob
  • Grep metadata: author: thoreinstein version: 1.0.0

Refactor

Analyze code and suggest refactoring opportunities with rationale. This is an analysis-only skill - it identifies and documents refactoring opportunities but does not execute them.

When to Use

  • Reviewing code for improvement opportunities
  • Planning a refactoring initiative
  • Assessing technical debt in a codebase area
  • Evaluating complexity, duplication, or coupling concerns
  • Understanding blast radius before making changes

Input

  • Target: file path, directory/package, or function/component name
  • Optional: specific concern (duplication, complexity, coupling, testability, etc.)

Investigation Strategy

Track 1: Codebase Exploration

  • Map dependencies and call sites for target code
  • Identify blast radius of potential changes
  • Find related code with similar patterns
  • Assess test coverage of affected areas

Track 2: Code Analysis

  • Deep analysis of code smells and patterns
  • Identify refactoring opportunities
  • Assess complexity metrics
  • Evaluate maintainability concerns

Refactoring Patterns

Universal Patterns

| Pattern | Description | |---------|-------------| | Extract function/method | Pull out reusable logic | | Inline function/variable | Remove unnecessary indirection | | Rename | Improve clarity (with blast radius assessment) | | Move | Relocate to better home (file, package, module) | | Replace conditional with polymorphism | Simplify branching | | Introduce parameter object | Group related parameters | | Dependency inversion | Decouple via interfaces/abstractions |

Go-Specific Patterns

| Pattern | Description | |---------|-------------| | Extract interface | Define behavior contracts | | Consolidate error handling | Reduce repetitive error checks | | Replace concrete with interface | Improve testability | | Extract middleware | Separate cross-cutting concerns | | Table-driven refactor | Convert repetitive code to data-driven |

Frontend-Specific Patterns

| Pattern | Description | |---------|-------------| | Extract component | Break down large components | | Extract custom hook | Reuse stateful logic | | Lift state up | Move state to common ancestor | | Push state down | Colocate state with usage | | Extract render function | Simplify complex JSX | | Memoization | Optimize re-renders |

Output

Document the analysis using the template at references/templates/refactor-analysis.md.

The analysis should include:

  • Code smells identified with locations
  • Suggested refactorings with risk assessment
  • Blast radius for each change
  • Recommended order of operations
  • Test coverage assessment

Constraints

  • Analysis only: Do not execute refactorings - document recommendations
  • Blast radius required: Every suggestion must include affected files/functions
  • Risk assessment required: Every suggestion must be rated Low/Medium/High
  • Order matters: Recommend sequence based on risk and dependencies
  • Test awareness: Note test coverage and impact for each suggestion

Example

Refactoring Analysis: pkg/auth/handler.go

Target:
- Path: pkg/auth/handler.go
- Scope: file
- Concern: complexity

Summary:
The auth handler has grown to 450 lines with 3 code smells identified.
Recommend extracting token validation and session management into
separate services. Low-risk changes that improve testability.

Code Smells Identified:

1. Long Function (validateAndCreateSession)
   - Location: handler.go:145-280
   - Description: 135-line function handling validation, session
     creation, and response formatting
   - Impact: Hard to test, multiple responsibilities

2. Feature Envy (token validation)
   - Location: handler.go:156-198
   - Description: Handler reaches into token package internals
   - Impact: Tight coupling, changes ripple across packages

Suggested Refactorings:

1. Extract TokenValidator service
   - Type: Extract
   - Target: handler.go:156-198
   - Rationale: Encapsulates token validation logic
   - Blast Radius: handler.go, handler_test.go
   - Risk: Low — isolated logic, good test coverage
   - Test Impact: Add TokenValidator unit tests

2. Extract SessionManager service
   - Type: Extract
   - Target: handler.go:200-250
   - Rationale: Separates session concerns from HTTP handling
   - Blast Radius: handler.go, session.go, handler_test.go
   - Risk: Medium — touches session storage
   - Test Impact: Update integration tests

Recommended Order:
1. TokenValidator first (lowest risk, no dependencies)
2. SessionManager second (depends on cleaner handler)

Begin by identifying the target code and any specific concerns to focus on.

Related skills