This is a production-ready skill for using Drizzle ORM with Cloudflare's D1 SQLite database. It gives you type-safe schema definitions, migration workflows via drizzle-kit, and handles D1's quirks like the batch API requirement for transactions (D1 doesn't support standard SQL BEGIN/COMMIT). The skill includes templates for CRUD operations, relations, and prepared statements, plus an error catalog covering the top issues like foreign key constraint failures and binding problems. The migration workflow is opinionated: generate locally, test with wrangler's local flag, then apply to production. Good choice if you want TypeScript-first database tooling on Cloudflare Workers without writing raw SQL.
npx skills add https://github.com/secondsky/claude-skills --skill drizzle-orm-d1