@tank/drizzle-cheatsheet
Installation
SKILL.md
Drizzle Cheat Sheet
Core Philosophy
- Optimize for syntax recall — Cheat sheets should help you write the right schema or query shape quickly.
- Keep schema and query sections distinct — Engineers often need one or the other fast.
- Include workflow commands — Drizzle use is not only code syntax;
drizzle-kitcommands matter too. - Prefer concise examples over explanation — This is reference material, not ORM theory.
- Show TypeScript-friendly patterns — Drizzle’s value comes from explicit schema and strong typing.
Quick-Start: Common Problems
"How do I define a table?"
- import table/column helpers
- define columns
- add indexes/relations as needed
-> See
references/syntax.md