Skip to main content
Back to the directory
lobehub/lobehubSoftware EngineeringFrontend and Design

drizzle

Drizzle ORM schema definitions, type inference, and query patterns for PostgreSQL databases.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
931

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/lobehub/lobehub --skill drizzle
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of May 1, 2026, drizzle has 931 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: lobehub/lobehub. Canonical URL: https://skills.sh/lobehub/lobehub/drizzle.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Drizzle ORM schema definitions, type inference, and query patterns for PostgreSQL databases. Location: src/database/schemas/_helpers.ts ID prefixes make entity types distinguishable. For internal tables, use uuid . Always use db.select() builder API. Never use db.query.* relational API ( findMany , findFirst , with: ). The relational API generates complex lateral joins with json_build_array that are fragile and hard to debug. When you need a parent record with its children, use two queries instead of relational with: : See the db-migrations skill for the detailed migration guide. - Enforces snake_case naming (tables plural, columns lowercase), helper functions for timestamps, and ID prefixes for entity type distinction - Provides type inference patterns ( $inferInsert , $inferSelect ) and schema validation via createInsertSchema - Requires db.select() builder API for all queries; explicitly forbids the relational API ( findMany , with: ) due to fragile lateral join generation - Covers common patterns: junction tables with composite keys, explicit JOINs with object selection, aggregations via groupBy , and one-to-many relationships via separate queries - Config: drizzle.config.ts - Schemas: src/database/schemas/ - Migrations: src/database/migrations/ - Dialect: postgresql with strict: true - timestamptz(name) : Timestamp with timezone - createdAt() , updatedAt() , accessedAt()...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does drizzle do?

Drizzle ORM schema definitions, type inference, and query patterns for PostgreSQL databases.

Is drizzle good?

drizzle does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support drizzle?

drizzle currently lists compatibility with Skills CLI.

Is drizzle safe to install?

drizzle has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to drizzle?

Skills in the same category include review-management, conversation-memory, coverage, grimoire-aave.

How do I install drizzle?

Run the following command to install drizzle: npx skills add https://github.com/lobehub/lobehub --skill drizzle

Related skills

More from lobehub/lobehub

Related skills

Alternatives in Software Engineering