Drizzle
A comprehensive skill catalog for AI agents
npx -y skills add G1Joshi/Agent-Skills --skill drizzleAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Drizzle TypeScript ORM with SQL-like syntax. Use for database access.
SKILL.md
1.1 KB, 254 tokens by cl100k_base, as published. Nobody here has run it
Drizzle ORM
Drizzle is the lightweight challenger to Prisma. v0.30+ (2025) focuses on SQL-like syntax, zero dependencies at runtime, and extreme cold-start performance.
When to Use
- Serverless: Zero runtime overhead makes it perfect for Lambdas.
- SQL Lovers: You prefer
db.select().from(users)over object APIs. - Performance: Faster query building than Prisma.
Core Concepts
Schema Definition
Define tables in TS. export const users = pgTable('users', { ... }).
Query Builder
Composable, type-safe SQL builder.
Relational API
db.query.users.findMany({ with: { posts: true } }) (Prisma-like convenience).
Best Practices (2025)
Do:
- Use
drizzle-kit: For migration management. - Use
run: Explicit execution model. - Use Driver Specifics: Drizzle embraces database-specific features (JSONB, Arrays).
Don't:
- Don't over-abstract: Drizzle shines when you stay close to SQL.