agentsclimarketplace

Drizzle

Skill G1Joshi/Agent-Skills/skills/frameworks/drizzle

A comprehensive skill catalog for AI agents

Install
npx -y skills add G1Joshi/Agent-Skills --skill drizzle

Assembled 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.

References

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.