bydietrichgebert· 6 skills
Audit the whole repo for over-engineering. A ranked list of what to delete, simplify, or replace with stdlib or native features.
$npx -y skills add dietrichgebert/ponytail --skill ponytail-auditInstalls into the current project.
Run `npx skills use "https://github.com/dietrichgebert/ponytail" --skill "dietrichgebert/ponytail/ponytail-audit"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.
Use the skills in "https://github.com/dietrichgebert/ponytail" that are relevant to the current task. Run `npx skills add "https://github.com/dietrichgebert/ponytail"` and select the relevant skills, then follow their instructions.
| 1 | ponytail-review, repo-wide. Scan the whole tree instead of a diff. Rank |
| 2 | findings biggest cut first. |
| 3 | |
| 4 | ## Tags |
| 5 | |
| 6 | Same as ponytail-review: |
| 7 | |
| 8 | - `delete:` dead code, unused flexibility, speculative feature. Replacement: nothing. |
| 9 | - `stdlib:` hand-rolled thing the standard library ships. Name the function. |
| 10 | - `native:` dependency or code doing what the platform already does. Name the feature. |
| 11 | - `yagni:` abstraction with one implementation, config nobody sets, layer with one caller. |
| 12 | - `shrink:` same logic, fewer lines. Show the shorter form. |
| 13 | |
| 14 | ## Hunt |
| 15 | |
| 16 | Deps the stdlib or platform already ships, single-implementation interfaces, |
| 17 | factories with one product, wrappers that only delegate, files exporting one |
| 18 | thing, dead flags and config, hand-rolled stdlib. |
| 19 | |
| 20 | ## Output |
| 21 | |
| 22 | One line per finding, ranked: `<tag> <what to cut>. <replacement>. [path]`. |
| 23 | End with `net: -<N> lines, -<M> deps possible.` Nothing to cut: `Lean already. Ship.` |
| 24 | |
| 25 | ## Boundaries |
| 26 | |
| 27 | Scope: over-engineering and complexity only. Correctness bugs, security holes, |
| 28 | and performance are explicitly out of scope. Route them to a normal review |
| 29 | pass. Lists findings, applies nothing. One-shot. |
| 30 | "stop ponytail-audit" or "normal mode" to revert. |