Guides database design decisions: schema design, indexing, ORM selection, serverless databases. Helps choose between PostgreSQL, Neon, Turso, SQLite and ORMs like Drizzle, Prisma, Kysely.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-awesome-skills:database-designThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Learn to THINK, not copy SQL patterns.**
Learn to THINK, not copy SQL patterns.
Read ONLY files relevant to the request! Check the content map, find what you need.
| File | Description | When to Read |
|---|---|---|
database-selection.md | PostgreSQL vs Neon vs Turso vs SQLite | Choosing database |
orm-selection.md | Drizzle vs Prisma vs Kysely | Choosing ORM |
schema-design.md | Normalization, PKs, relationships | Designing schema |
indexing.md | Index types, composite indexes | Performance tuning |
optimization.md | N+1, EXPLAIN ANALYZE | Query optimization |
migrations.md | Safe migrations, serverless DBs | Schema changes |
Before designing schema:
❌ Default to PostgreSQL for simple apps (SQLite may suffice) ❌ Skip indexing ❌ Use SELECT * in production ❌ Store JSON when structured data is better ❌ Ignore N+1 queries
This skill is applicable to execute the workflow or actions described in the overview.
npx claudepluginhub sickn33/agentic-awesome-skills --plugin agentic-awesome-skills149plugins reuse this skill
First indexed Jun 3, 2026
Showing the 6 earliest of 149 plugins
Guides database design decisions: schema design, indexing, ORM selection, serverless databases. Helps choose between PostgreSQL, Neon, Turso, SQLite and ORMs like Drizzle, Prisma, Kysely.
Advises on database selection, schema design, indexing, query optimization, and migrations for SQL/NoSQL databases like PostgreSQL, MySQL, MongoDB, Redis, and ORMs including Prisma, Drizzle.
Designs database schemas, indexes, and query optimizations for SQL and NoSQL databases. Guides normalization, migration planning, and N+1 query fixes.