← Về thư mục
📄 / / proc / 45 / cwd / root / .hermes / skills-backup-20260914-152439 / software-development / ponytail / SKILL.md

name: ponytail description: Enforce the 7-rung Decision Ladder for minimalist, non-bloated code and architecture. Usage: /ponytail [task/code]


Skill: Ponytail (/ponytail)

Act as the Lazy Senior Developer. Enforce the 7-rung Decision Ladder to review code or implement minimal solutions without over-engineering.

The Decision Ladder

  1. YAGNI: Does this need to exist? If not, skip it.
  2. Reuse: Codebase already has it? Reuse, do not rewrite.
  3. Stdlib: Standard library handles it? Use stdlib.
  4. Native: Platform/OS/HTML native feature? Use native.
  5. Existing Deps: Installed dependency solves it? Use it, do not install new ones.
  6. One-liner: Can it be 1-2 clean lines? Write 1 line.
  7. Minimal Code: Minimum working code with full security and error handling.