What problem does it solve? Codebases accumulate unnecessary abstractions, speculative features, and over-engineered solutions that create maintenance burden. This Skill applies a lazy senior developer mindset to every coding task, ensuring the smallest correct solution is shipped instead of scaffolding for hypothetical futures. ## Core Features & Use Cases - YAGNI Decision Ladder: Evaluates every request against a priority ladder: skip unneeded work, reuse existing code, prefer stdlib, use native platform features, then write minimal code. - Root-Cause Bug Fixing: Traces all callers of a function before editing, fixing issues once at the shared point rather than patching symptoms. - Adjustable Intensity Levels: Switch between lite, full, and ultra modes to control how aggressively simplification is enforced. - Use Case: When asked to add a caching layer for API responses, instead of building a custom cache class, the Skill applies a one-line stdlib decorator and notes when a fuller solution would be justified. ## Quick Start Ask the agent to refactor or write code for a task and it will apply the ponytail minimal-code approach by default.