Аудит переусложнённого кода в репозитории
★ 7.5 · vibe-coding
ponytail-audit is a Claude Code skill that performs a whole-repository audit for over-engineering, producing a ranked list of what to delete, simplify, or replace with stdlib or native platform equivalents. It works like ponytail-review but targets the entire file tree rather than a diff, making it useful when you want to find bloat, cut unused dependencies, or ask "what can I delete from this repo". Each finding is tagged: `delete:` for dead code, `stdlib:` for hand-rolled logic the standard library already covers, `native:` for code duplicating platform features, `yagni:` for single-implementation abstractions or config nobody sets, and `shrink:` for logic that can be expressed in fewer lines. The report closes with a `net: -N lines, -M deps possible.` summary. Correctness bugs, security issues, and performance are explicitly out of scope — the skill lists findings only and never applies fixes.
- #code-audit
- #refactoring
- #over-engineering
- #cleanup
- #stdlib