drizzle
Drizzle ORM patterns, migrations, type-safe queries, and database schema design.
npx skills add a5c-ai/babysitter --skill drizzle --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Drizzle Skill Expert assistance for database operations with Drizzle ORM. ## Capabilities - Define type-safe database schemas - Write performant SQL queries - Handle migrations - Implement relations - Configure multiple database dialects ## Schema Definition ```typescript import { pgTable, text, timestamp, uuid, varchar } from 'drizzle-orm/pg-core'; import { relations } from 'drizzle-orm'; export const users = pgTable('users', { id: uuid('id').primaryKey().defaultRandom(), name: varchar('name', { length: 255 }).notNull(), email: varchar('email', { length: 255 }).notNull().unique(), createdAt: timestamp('created_at').defaultNow().notNull(), }); export const posts = pgTable('posts', { id: uuid('id').primaryKey().defaultRandom(), title: varchar('title', { length: 255 }).notNull(), content: text('content'), authorId: uuid('author_id').references(() => users.id), }); export const usersRelations = relations(users, ({ many }) => ({ posts: many(posts), })); ``` ## Queries ```typescript // Select with relations const result = await db.query.users.findMany({ with: { posts: true }, where: eq(users.name, 'John'), }); // Insert await db.insert(users).values({ name: 'John', email: 'john@exampl
- Capabilities
- Schema Definition
- Queries
- Target Processes
What does the drizzle skill do?
Drizzle ORM patterns, migrations, type-safe queries, and database schema design.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill drizzle --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
