swe
Installation
SKILL.md
Software Engineering
Core Principles
| Principle | Meaning |
|---|---|
| Simplicity | Simplest code that works; complexity only when required |
| Single Responsibility | Each function/class/module does one thing |
| Self-Documenting | Code explains itself; comments are a smell |
| Fail Fast | Validate early, propagate unexpected errors |
| Test Behavior | What code does, not implementation |
| No Backwards Compat | Don't add legacy support unless requested |
| Consistency | Match project conventions over preference |