clean-code

Installation
SKILL.md

Clean Code Skill

Core Principles

1. Meaningful Names

# Bad
def calc(a, b):
    return a * b

# Good
def calculate_total_price(unit_price: float, quantity: int) -> float:
    return unit_price * quantity

2. Single Responsibility

Installs
7
GitHub Stars
175
First Seen
May 16, 2026
clean-code — softspark/ai-toolkit