What problem does it solve? Codebases accumulate over-engineered abstractions, unnecessary dependencies, and speculative features that create maintenance burden. This Skill forces the simplest working solution for any coding task by applying a strict decision ladder before writing code. ## Core Features & Use Cases - Solution Ladder: Checks whether the task is needed at all (YAGNI), then existing code, stdlib, native platform features, and installed dependencies before writing new code. - Intensity Levels: Three modes (lite, full, ultra) control how aggressively simplification is enforced, switchable via /ponytail lite|full|ultra. - Root-Cause Bug Fixing: Requires tracing all callers of a function before patching, fixing the shared root cause instead of one symptom. - Use Case: When asked to add a response cache, instead of building a custom cache class, it applies @lru_cache(maxsize=1000) and notes when a custom cache would actually be needed. ## Quick Start Ask the AI to use ponytail mode to implement your next feature with the simplest solution that works.