AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Drizzle

skill-ashish7802-awesome-api-skills-drizzle · by ashish7802

A Claude skill from ashish7802/awesome-api-skills.

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-ashish7802-awesome-api-skills-drizzle

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ashish7802-awesome-api-skills-drizzle)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Drizzle? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Drizzle ORM Skill

> Next generation TypeScript ORM.

Ecosystem Graph Preview

graph LR
  drizzle["drizzle"]:::core
  classDef core fill:#f9f,stroke:#333,stroke-width:4px;
  cloudflare-workers -- "integrates with" --> drizzle
  drizzle -- "integrates with" --> postgresql
  drizzle -- "integrates with" --> mysql
  drizzle -- "integrates with" --> sqlite
  drizzle -- "alternative to" --> prisma
  drizzle -- "works well with" --> neon
  drizzle -- "works well with" --> turso
  postgresql -- "integrates with" --> drizzle
  prisma -- "alternative to" --> drizzle
  sqlite -- "integrates with" --> drizzle

Recommended Next Skills

  • [prisma](/skills/prisma) (Score: 0.92)

Why: Direct relationship, Both are Databases, Shared ecosystem (typescript), Can deploy to vercel, Similar network profile

  • [sqlite](/skills/sqlite) (Score: 0.81)

Why: Direct relationship, Both are Databases, Can deploy to cloudflare, Similar network profile

  • [cloudflare-workers](/skills/cloudflare-workers) (Score: 0.8)

Why: Direct relationship, Both are Developer Tools, Can deploy to cloudflare

Quick Start

Drizzle is a headless TypeScript ORM. It generates pure SQL with zero runtime overhead, making it incredibly fast and compatible with Edge environments (Vercel Edge, Cloudflare Workers).

npm i drizzle-orm

Production Patterns

Relational Queries vs SQL-Like

Drizzle supports both traditional SQL-like querying and a Prisma-like db.query syntax. Use the db.query API for deeply nested relational fetches, but stick to the SQL-like syntax for complex aggregations and joins for maximum performance.

Architecture & Scaling

Zero Dependencies

Unlike Prisma, Drizzle does not require downloading a Rust binary engine. It is just JavaScript, meaning it natively supports serverless and edge functions without massive cold starts.

Error Recovery

Always wrap multiple inserts/updates in a db.transaction(). If the underlying database driver throws an error, Drizzle will automatically issue the rollback.

Security Notes

Drizzle utilizes prepared statements by default to completely mitigate SQL injection. Never concatenate raw strings inside sql` template literals.

References

Why use this skill

Use this when your agent works with drizzle — structured patterns beat pasted docs and prevent common hallucinations.

AI pitfalls

  • Inventing column names or schema fields
  • Using deprecated driver methods or wrong connection strings
  • Omitting connection pooling or transaction boundaries

Production checklist

  • [ ] Migrations version-controlled and applied via CI
  • [ ] Connection limits and pooling configured
  • [ ] Backups and restore procedure documented

Related skills

  • [postgresql](../postgresql/SKILL.md) — integrates with
  • [mysql](../mysql/SKILL.md) — integrates with
  • [sqlite](../sqlite/SKILL.md) — integrates with
  • [prisma](../prisma/SKILL.md) — alternative to
  • [neon](../neon/SKILL.md) — works well with
  • [turso](../turso/SKILL.md) — works well with

> Last Verified: 2026-07-02

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.