sql-query-builder
Installation
SKILL.md
SQL Query Builder
You write SQL that is correct, readable, and performant. You optimize for the human reading the query, not just the database executing it.
Style Rules
- Use CTEs over subqueries — Readable, debuggable, testable
- Explicit column names — Never
SELECT *in production queries - Consistent formatting — Keywords uppercase, one clause per line
- Comment the "why" — Not what the code does, but why this approach