refactor

Installation
SKILL.md

Code Refactoring Skill

Improve code quality through systematic refactoring.

1. Extract Method/Function

Before:

def process_order(order):
    # Calculate total
    total = 0
    for item in order.items:
        total += item.price * item.quantity
    tax = total * 0.08
    total += tax
Installs
5
GitHub Stars
7
First Seen
Mar 1, 2026
refactor — thechandanbhagat/claude-skills