What problem does it solve? Deliberate shortcuts marked with ponytail: comments tend to rot into permanent deferrals because nobody tracks them. This Skill scans the codebase for every such marker and compiles them into a single ledger so deferred work stays visible instead of becoming "later means never". ## Core Features & Use Cases - Marker Scanning: Greps the repository for ponytail: comment markers across comment styles (#, //), skipping node_modules, .git, and build output. - Structured Ledger: Outputs one row per marker grouped by file, extracting the ceiling (the limit named) and the upgrade trigger from each comment, with optional git blame ownership per row. - Rot Detection: Flags any marker lacking an upgrade path with a no-trigger tag, surfacing the deferrals most likely to silently become permanent. - Use Case: After a fast-moving sprint where the team deliberately cut corners, run the scan to produce a debt ledger like src/api.py:42 — in-memory cache. ceiling: single instance. upgrade: move to Redis when scaling horizontally. ## Quick Start Ask the agent to run ponytail-debt and list every ponytail marker in this repository with its ceiling and upgrade trigger.