ponytail-debt

Harvest every `ponytail:` comment in the codebase into a debt ledger, so the deliberate shortcuts and deferrals ponytail leaves behind get tracked instead of rotting into "later means never". Use when the user says "ponytail debt", "/ponytail-debt", "what did ponytail defer", "list the shortcuts", "ponytail ledger", or "what did we mark to do later". One-shot report, changes nothing.

npx skills add https://github.com/dietrichgebert/ponytail --skill ponytail-debt

Every deliberate ponytail shortcut is marked with a ponytail: comment naming its ceiling and upgrade path. This collects them into one ledger so a deferral can't quietly become permanent.

Scan

Grep the repo for comment markers, skipping node_modules, .git, and build output:

grep -rnE '(#|//) ?ponytail:' . (add other comment prefixes if your stack uses them)

Each hit is one ledger row. The comment prefix keeps prose that merely mentions the convention out of the ledger.

Output

One row per marker, grouped by file:

<file>:<line>, <what was simplified>. ceiling: <the limit named>. upgrade: <the trigger to revisit>.

The convention is ponytail: <ceiling>, <upgrade path>, so pull the ceiling and the trigger straight from the comment. Want an owner per row too? add git blame -L<line>,<line>.

Flag the rot risk: any ponytail: comment that names no upgrade path or trigger gets a no-trigger tag, those are the ones that silently rot.

End with <N> markers, <M> with no trigger. Nothing found: No ponytail: debt. Clean ledger.

Boundaries

Reads and reports only, changes nothing. To persist it, ask and it writes the ledger to a file (e.g. PONYTAIL-DEBT.md). One-shot. "stop ponytail-debt" or "normal mode" to revert.

Más skills de dietrichgebert

ponytail
dietrichgebert
Obliga a la solución más perezosa que realmente funciona, la más simple, más corta, más mínima. Canaliza a un desarrollador senior que lo ha visto todo: cuestiona si la tarea necesita existir (YAGNI), recurre a la biblioteca estándar antes que al código personalizado, a las funciones nativas de la plataforma antes que a las dependencias, a una línea antes que a cincuenta. Soporta niveles de intensidad: ligero, completo (predeterminado), extremo. Úsalo cada vez que el usuario diga "ponytail", "sé perezoso", "modo perezoso", "solución más simple", "solución mínima", "yagni", "haz menos", o...
developmentcode-review
ponytail-review
dietrichgebert
Revisión de código centrada exclusivamente en el sobrediseño. Encuentra qué eliminar: biblioteca estándar reinventada, dependencias innecesarias, abstracciones especulativas, flexibilidad muerta. Una línea por hallazgo: ubicación, qué cortar, qué lo reemplaza. Úsalo cuando el usuario diga "revisar por sobrediseño", "qué podemos eliminar", "esto está sobrediseñado", "revisión de simplificación" o invoque /ponytail-review. Complementa la revisión centrada en corrección, esta solo busca complejidad.
code-reviewdevelopment
ponytail-audit
dietrichgebert
Auditoría completa del repositorio para detectar sobreingeniería. Como ponytail-review, pero escanea toda la base de código en lugar de un diff: una lista clasificada de qué eliminar, simplificar o reemplazar con equivalentes nativos/de la biblioteca estándar. Úsalo cuando el usuario diga "auditar esta base de código", "auditar por sobreingeniería", "qué puedo eliminar de este repositorio", "encontrar inflado", "ponytail-audit" o "/ponytail-audit". Informe único, no aplica correcciones.
code-reviewdevelopment
ponytail-help
dietrichgebert
Tarjeta de referencia rápida para todos los modos, habilidades y comandos de ponytail. Visualización única, no un modo persistente. Activación: /ponytail-help, "ponytail help", "what ponytail commands", "how do I use ponytail".