frontend-philosophy
Installation
SKILL.md
Frontend Philosophy
Authoritative conventions for all React/Preact work. These are not suggestions — they are the standard. When in doubt, choose the simpler path.
"Every line of code is a liability. The best code is no code. The second best is simple, boring code that obviously works."
Core Principles
- Simplicity over cleverness — Write code a junior dev understands
- Convention over configuration — Follow existing patterns, don't invent
- Optimize for understanding — Code is read 10x more than written
- Embrace the monolith — Colocate related concerns, don't split prematurely
- Performance through simplicity — Fastest code is code that doesn't run