# Code Refactoring Assistant

> Suggest and apply code refactorings to improve readability, maintainability, and code quality. Use this skill when improving existing code structure, eliminating code smells, applying design patterns, simplifying complex logic, extracting duplicated code, renaming for clarity, or preparing code for new features. Provides specific before/after examples, explains benefits, identifies risks, and ens…

- **Type:** Skill
- **Install:** `agentstack add skill-arabelatso-skills-4-se-code-refactoring-assistant`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [ArabelaTso](https://agentstack.voostack.com/s/arabelatso)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** Apache-2.0
- **Upstream author:** [ArabelaTso](https://github.com/ArabelaTso)
- **Source:** https://github.com/ArabelaTso/Skills-4-SE/tree/main/skills/code-refactoring-assistant
- **Website:** https://ArabelaTso.github.io/Skills-4-SE/

## Install

```sh
agentstack add skill-arabelatso-skills-4-se-code-refactoring-assistant
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Code Refactoring Assistant

Systematically improve code structure and quality through targeted refactorings. Identifies opportunities, suggests improvements, and applies changes while preserving behavior.

## Core Capabilities

### 1. Code Smell Detection

Identify refactoring opportunities:
- **Long methods/functions** - Functions doing too much
- **Large classes** - Classes with too many responsibilities
- **Duplicate code** - Repeated logic across codebase
- **Long parameter lists** - Functions with many parameters
- **Primitive obsession** - Using primitives instead of objects
- **Feature envy** - Methods using other classes more than their own
- **Data clumps** - Same group of data appearing together
- **Switch statements** - Complex conditionals that could be polymorphic

### 2. Structural Refactorings

Improve code organization:
- **Extract Method** - Pull out code into new function
- **Extract Class** - Split class responsibilities
- **Inline Method/Variable** - Remove unnecessary indirection
- **Move Method/Field** - Relocate to appropriate class
- **Rename** - Improve naming clarity
- **Change Function Signature** - Update parameters
- **Introduce Parameter Object** - Group parameters into object
- **Replace Conditional with Polymorphism** - Use inheritance/interfaces

### 3. Simplification Refactorings

Reduce complexity:
- **Decompose Conditional** - Simplify complex if/else
- **Consolidate Conditional** - Combine related conditions
- **Remove Dead Code** - Delete unused code
- **Simplify Boolean Expression** - Make logic clearer
- **Replace Magic Number with Constant** - Named constants
- **Replace Nested Conditional with Guard Clauses** - Early returns
- **Replace Loop with Pipeline** - Use functional operations

### 4. Generalization Refactorings

Improve abstraction:
- **Extract Interface** - Define contracts
- **Extract Superclass** - Pull up common behavior
- **Replace Type Code with Class** - Use objects not constants
- **Replace Conditional with Strategy** - Pluggable behavior
- **Form Template Method** - Define algorithm skeleton
- **Replace Constructor with Factory** - Flexible object creation

## Refactoring Workflow

### Step 1: Identify Refactoring Opportunity

Recognize code that needs improvement:

**Questions to ask:**
- Is this function/method too long? (>20-30 lines)
- Does this class have too many responsibilities?
- Is this code duplicated elsewhere?
- Are these names clear and descriptive?
- Is this logic overly complex?
- Would a design pattern help here?

**Example identification:**
```python
# Long method doing multiple things
def process_user_order(user_id, items, payment_info, shipping_address):  # 150 lines!
    # Validate user
    # Validate items
    # Calculate prices
    # Apply discounts
    # Process payment
    # Update inventory
    # Create shipment
    # Send emails
    # Update analytics
    # ...

# Opportunity: Extract Method refactoring
# This should be broken into focused functions
```

### Step 2: Choose Appropriate Refactoring

Select the right transformation:

**Refactoring catalog:**

| Code Smell | Refactoring Solution |
|------------|---------------------|
| Long Method | Extract Method, Replace Temp with Query |
| Large Class | Extract Class, Extract Subclass |
| Long Parameter List | Introduce Parameter Object, Preserve Whole Object |
| Duplicate Code | Extract Method, Pull Up Method, Form Template Method |
| Complex Conditional | Decompose Conditional, Replace Conditional with Polymorphism |
| Primitive Obsession | Replace Type Code with Class, Introduce Value Object |
| Feature Envy | Move Method, Extract Method |
| Data Clumps | Extract Class, Introduce Parameter Object |

**Example selection:**
```python
# Problem: Long Parameter List
def create_user(first_name, last_name, email, phone, street, city, state, zip_code, country):
    pass

# Solution: Introduce Parameter Object
# Create Address and User classes to group related data
```

### Step 3: Plan the Refactoring

Ensure safe transformation:

**Pre-refactoring checklist:**
- [ ] Code is under version control
- [ ] Tests exist and pass
- [ ] Understand current behavior completely
- [ ] Identify all callers/dependencies
- [ ] Plan small, incremental steps
- [ ] Know how to verify correctness

**Refactoring plan example:**
```markdown
Refactoring: Extract Class for Address information

Current state:
- User class has 8 address-related fields
- Address logic scattered across User methods

Steps:
1. Create new Address class
2. Add address fields to Address
3. Add Address field to User
4. Update User constructor to accept Address
5. Update all address-related methods
6. Run tests after each step
7. Remove old address fields from User

Risk: Medium (many callers to update)
Estimated time: 1-2 hours
```

### Step 4: Apply Refactoring Incrementally

Make changes in small, safe steps:

**Guidelines:**
- Make one change at a time
- Run tests after each step
- Commit after each successful refactoring
- If tests fail, revert and try smaller steps
- Keep working code compiling/running

**Example incremental approach:**
```python
# Step 1: Extract method (just one piece)
def process_order(order):
    # Before: All inline
    total = 0
    for item in order.items:
        total += item.price * item.quantity
    # ... rest of function

# Step 1a: Extract just the calculation
def calculate_total(items):
    total = 0
    for item in items:
        total += item.price * item.quantity
    return total

def process_order(order):
    total = calculate_total(order.items)
    # ... rest of function

# Run tests → Pass → Commit

# Step 2: Extract next piece (validation)
# Step 3: Extract next piece (payment)
# etc.
```

### Step 5: Verify and Document

Confirm behavior preservation:

**Verification steps:**
1. All existing tests pass
2. No new warnings or errors
3. Code review for correctness
4. Manual testing of critical paths
5. Performance not degraded

**Documentation:**
```python
# Document the refactoring in commit message
"""
Refactor: Extract Address class from User

- Created Address value object with street, city, state, zip
- Moved address validation to Address class
- Updated User to use Address instead of separate fields
- All tests passing, behavior unchanged

Benefits:
- Address logic now centralized
- Easier to add address validation
- Can reuse Address in Order, Shipping, etc.
"""
```

## Common Refactoring Patterns

### Pattern 1: Extract Method

**Before:**
```python
def print_owing(invoice):
    print_banner()

    # Print details
    print(f"name: {invoice.customer}")
    print(f"amount: {invoice.amount}")

    # Calculate outstanding
    outstanding = 0
    for order in invoice.orders:
        outstanding += order.amount
    print(f"outstanding: {outstanding}")
```

**After:**
```python
def print_owing(invoice):
    print_banner()
    print_details(invoice)
    print_outstanding(invoice)

def print_details(invoice):
    print(f"name: {invoice.customer}")
    print(f"amount: {invoice.amount}")

def print_outstanding(invoice):
    outstanding = calculate_outstanding(invoice)
    print(f"outstanding: {outstanding}")

def calculate_outstanding(invoice):
    return sum(order.amount for order in invoice.orders)
```

**Benefits:**
- Each function has single purpose
- Easier to understand and test
- More reusable components
- Better naming reveals intent

**When to use:**
- Function is too long (>20-30 lines)
- Code needs commenting to explain what it does
- Difficult to understand at a glance
- Want to reuse part of function elsewhere

### Pattern 2: Introduce Parameter Object

**Before:**
```python
def calculate_shipping(street, city, state, zip_code, country, weight, dimensions):
    # Too many parameters!
    pass

def validate_address(street, city, state, zip_code, country):
    # Same address params repeated
    pass

def format_label(name, street, city, state, zip_code, country):
    # Same address params again
    pass
```

**After:**
```python
class Address:
    def __init__(self, street, city, state, zip_code, country):
        self.street = street
        self.city = city
        self.state = state
        self.zip_code = zip_code
        self.country = country

    def validate(self):
        # Validation logic here
        pass

    def format_label(self, name):
        return f"{name}\n{self.street}\n{self.city}, {self.state} {self.zip_code}"

class Package:
    def __init__(self, weight, dimensions):
        self.weight = weight
        self.dimensions = dimensions

def calculate_shipping(address, package):
    address.validate()
    # Cleaner signature
    pass
```

**Benefits:**
- Fewer parameters (easier to call)
- Related data grouped together
- Can add behavior to parameter objects
- Easier to extend (add new address fields)

**When to use:**
- Functions have 3+ parameters that belong together
- Same group of parameters appears in multiple functions
- Parameters represent a concept (Address, Date Range, etc.)

### Pattern 3: Replace Conditional with Polymorphism

**Before:**
```python
class Employee:
    def __init__(self, name, employee_type):
        self.name = name
        self.type = employee_type  # "engineer", "manager", "salesperson"

    def calculate_pay(self):
        if self.type == "engineer":
            return self.base_salary + self.bonus
        elif self.type == "manager":
            return self.base_salary + (self.num_reports * 1000)
        elif self.type == "salesperson":
            return self.base_salary + (self.sales * 0.1)
        else:
            return self.base_salary

    def get_benefits(self):
        if self.type == "engineer":
            return ["health", "dental", "vision", "401k"]
        elif self.type == "manager":
            return ["health", "dental", "vision", "401k", "stock_options"]
        elif self.type == "salesperson":
            return ["health", "dental", "commission"]
        else:
            return ["health"]
```

**After:**
```python
class Employee:
    def __init__(self, name):
        self.name = name
        self.base_salary = 50000

    def calculate_pay(self):
        return self.base_salary

    def get_benefits(self):
        return ["health"]

class Engineer(Employee):
    def __init__(self, name, bonus=0):
        super().__init__(name)
        self.bonus = bonus

    def calculate_pay(self):
        return self.base_salary + self.bonus

    def get_benefits(self):
        return ["health", "dental", "vision", "401k"]

class Manager(Employee):
    def __init__(self, name, num_reports=0):
        super().__init__(name)
        self.num_reports = num_reports

    def calculate_pay(self):
        return self.base_salary + (self.num_reports * 1000)

    def get_benefits(self):
        return ["health", "dental", "vision", "401k", "stock_options"]

class Salesperson(Employee):
    def __init__(self, name, sales=0):
        super().__init__(name)
        self.sales = sales

    def calculate_pay(self):
        return self.base_salary + (self.sales * 0.1)

    def get_benefits(self):
        return ["health", "dental", "commission"]
```

**Benefits:**
- No complex conditionals
- Easy to add new employee types (just create new class)
- Each type's logic is isolated
- Follows Open/Closed Principle

**When to use:**
- Complex conditionals based on type code
- Same conditional pattern repeated multiple places
- Need to add new types frequently
- Different behavior for different types

### Pattern 4: Decompose Conditional

**Before:**
```python
def calculate_charge(customer, usage, date):
    if date.month  8:
        # Winter rate
        if usage > 100:
            charge = usage * 0.15 + 10
        else:
            charge = usage * 0.12 + 5
    else:
        # Summer rate
        if usage > 150:
            charge = usage * 0.20 + 15
        else:
            charge = usage * 0.18 + 8

    if customer.is_premium:
        charge = charge * 0.9

    return charge
```

**After:**
```python
def calculate_charge(customer, usage, date):
    base_charge = get_base_charge(usage, date)
    return apply_customer_discount(base_charge, customer)

def get_base_charge(usage, date):
    if is_winter(date):
        return calculate_winter_charge(usage)
    else:
        return calculate_summer_charge(usage)

def is_winter(date):
    return date.month  8

def calculate_winter_charge(usage):
    if usage > 100:
        return usage * 0.15 + 10
    else:
        return usage * 0.12 + 5

def calculate_summer_charge(usage):
    if usage > 150:
        return usage * 0.20 + 15
    else:
        return usage * 0.18 + 8

def apply_customer_discount(charge, customer):
    if customer.is_premium:
        return charge * 0.9
    return charge
```

**Benefits:**
- Each condition has descriptive name
- Logic broken into understandable pieces
- Easier to test each part
- Can reuse components

**When to use:**
- Complex nested conditionals
- Hard to understand what condition checks
- Multiple unrelated concerns in one conditional

### Pattern 5: Replace Magic Number with Named Constant

**Before:**
```python
def calculate_potential_energy(mass, height):
    return mass * 9.81 * height

def calculate_circumference(radius):
    return 2 * 3.14159 * radius

def is_valid_age(age):
    return 0  100:
        return price * 0.9  # What discount is this?
    return price
```

**After:**
```python
# Constants at module level
GRAVITY = 9.81  # m/s²
PI = 3.14159
MIN_AGE = 0
MAX_AGE = 120
BULK_ORDER_THRESHOLD = 100
BULK_DISCOUNT_RATE = 0.10

def calculate_potential_energy(mass, height):
    return mass * GRAVITY * height

def calculate_circumference(radius):
    return 2 * PI * radius

def is_valid_age(age):
    return MIN_AGE  BULK_ORDER_THRESHOLD:
        return price * (1 - BULK_DISCOUNT_RATE)
    return price
```

**Benefits:**
- Clear meaning of numbers
- Easy to update (change in one place)
- Self-documenting code
- No more "what does 0.9 mean?" questions

**When to use:**
- Numbers with specific meaning (not 0, 1, -1)
- Same number used in multiple places
- Number represents business rule or constant
- Number's meaning not immediately obvious

### Pattern 6: Replace Nested Conditional with Guard Clauses

**Before:**
```python
def calculate_pay(employee):
    result = 0
    if employee.is_active:
        if employee.hours_worked > 0:
            if employee.hourly_rate > 0:
                result = employee.hours_worked * employee.hourly_rate
                if employee.is_overtime:
                    result = result * 1.5
            else:
                result = 0
        else:
            result = 0
    else:
        result = 0
    return result
```

**After:**
```python
def calculate_pay(employee):
    if not employee.is_active:
        return 0
    if employee.hours_worked 2-3 levels)
- Checking preconditions before main logic
- Multiple failure conditions
- "Arrow" code (keeps indenting right)

### Pattern 7: Extract Class

**Before:**
```python
class Order:
    def __init__(self):
        self.items = []
        self.customer_name = ""
        self.customer_email = ""
        self.customer_phone = ""
        self.shipping_street = ""
        self.shipping_city = ""
        self.shipping_state = ""
        self.shipping_zip = ""
        self.billing_street = ""
        self.billing_city = ""
        self.billing_state = ""
        self.billing_zip = ""

    def validate_shipping_address(self):
        # Validation logic
        pass

    def validate_billing_address(self):
        # Validation logic
        pass

    def format_shipping_label(self):
        # Formatting logic
        pass

    def send_confirmation_email(self):
        # Email logic
        pass
```

**After:**
```python
class Address:
    def __init__(self, street, city, state, zip_code):
        self.street = street
        self.city = city
        self.state = state
        self.zip_code = zip_code

    def validate(self):
        # Validation logic
        pass

…

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [ArabelaTso](https://github.com/ArabelaTso)
- **Source:** [ArabelaTso/Skills-4-SE](https://github.com/ArabelaTso/Skills-4-SE)
- **License:** Apache-2.0
- **Homepage:** https://ArabelaTso.github.io/Skills-4-SE/

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-arabelatso-skills-4-se-code-refactoring-assistant
- Seller: https://agentstack.voostack.com/s/arabelatso
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
