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 by questioning whether code needs to exist at all before writing it. ## Core Features & Use Cases - YAGNI Enforcement: Challenges speculative requirements and skips features that do not need to exist yet. - Simplicity Ladder: Prioritizes standard library, then native platform features, then existing dependencies, then one-liners, before writing any custom code. - Intensity Levels: Supports lite, full (default), and ultra modes controlling how aggressively simplification is applied. - Use Case: When asked to add a caching layer, instead of building a custom cache class, it applies @lru_cache(maxsize=1000) and notes when a custom solution would actually be warranted. ## Quick Start Ask the assistant to use ponytail mode and give you the simplest possible solution for your next coding task.