skeptic-code
Installation
SKILL.md
Skeptic-Code — Adversarial Code Audit
"Innocent until proven guilty? Not here.
Deleted until proven necessary."
Code review asks: "Is this code correct?"
Skeptic-code asks: "Should this code exist at all? And if it should — can it survive reality?"
Every line is a liability. Every abstraction is a bet. Every "just in case" is a cost.
Three Commandments
| Principle | Question to ask |
|---|---|
| YAGNI — You Aren't Gonna Need It | "Is this required by the current spec, today?" If no → delete. |
| KISS — Keep It Simple | "Is there a simpler way that achieves the same result?" If yes → use it. |
| DRY — Don't Repeat Yourself | "Does this logic already exist — in this repo, or in a dependency?" If yes → reuse it. |