Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use for everyday coding tasks that involve writing or modifying source code.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-06 | ✗→✓ | ▲ Improved | 105% | 0% |
| case-10 | ✗→✓ | ▲ Improved | -30% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 65% | 0% |
| case-19 | ✗→✓ | ▲ Improved | 42% | 0% |
| case-22 | ✗→✓ | ▲ Improved | 262% | 0% |
A minimal coding quality assurance checklist ensuring every code modification follows best practices.
Use this skill for:
Do not use this skill for:
bug-detective, architecture-design, or tdd-guideany in TypeScriptpython# ❌ Don't def process(data=[]): # Mutable default argument pass # ✅ Should def process(data: list | None = None): data = data or []
python# ❌ Don't except: # Bare except pass # ✅ Should except ValueError as e: logger.error(f"Processing failed: {e}") raise
Other measured skills in the registry, with their headline benchmark lift.