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