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: 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 - Minimal-Solution Ladder: A seven-step decision process that stops at the first sufficient option, from deleting the task entirely to writing the minimum code that works. - Adjustable Intensity Levels: Three modes (lite, full, ultra) control how aggressively simplification is enforced, switchable mid-session with a single command. - Root-Cause Bug Fixing: Directs fixes to the shared function all callers route through rather than patching individual 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 solution would actually be warranted. ## Quick Start Ask the agent to use the ponytail skill in full mode to implement your next feature with the simplest possible solution.