What problem does it solve? Codebases accumulate over-engineered abstractions, unnecessary dependencies, and boilerplate that create maintenance burden. This Skill forces the simplest working solution for any coding task by applying a strict decision ladder: question whether the work is needed at all (YAGNI), reuse existing code, prefer the standard library and native platform features, and only write new code as a last resort. ## Core Features & Use Cases - The Ladder: A seven-step decision hierarchy that stops at the first sufficient solution, from deleting the task entirely down to writing the minimum code that works. - Intensity Levels: Three modes (lite, full, ultra) control how aggressively simplification is enforced, switchable at any time with /ponytail lite|full|ultra. - Root-Cause Bug Fixing: Requires tracing all callers before editing so fixes land once in the shared code path instead of patching symptoms. - Use Case: When asked to add a response cache, instead of building a custom cache class, the Skill applies @lru_cache(maxsize=1000) in one line and notes when a custom cache would actually be needed. ## Quick Start Ask the AI to use ponytail mode to implement your next feature or fix with the simplest possible solution.