SKILL.md
Prisma Query Optimization Skill
N+1 Detection
Bad: Loop with queries Good: Include relations
Optimization
- Select specific fields
- Add indexes
- Use pagination
Checklist
- No N+1 queries
- Indexes on foreign keys
- Select only needed fields
smithery/databayt
Query optimization and N+1 detection
npx skills add smithery/databayt --skill prisma-query-optimizer
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and D…
567.1K installsQuery and analyze data in Azure Data Explorer (Kusto/ADX) using KQL for log analytics, telemetr…
566.2K installsPostgres best practices maintained by Supabase, for Postgres running anywhere. Load this skill …
391.6K installsGuides for configuring Prisma with different database providers (PostgreSQL, MySQL, SQLite, Mon…
269.8K installsPrisma Client API reference covering model queries, filters, operators, and client methods. Use…
269.3K installsPrisma ORM CLI commands reference covering init, generate, migrate, db, dev, complete, studio, …
267K installsOther skills from smithery/databayt.
npx skills add smithery/databayt
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Parsed from SKILL.md frontmatter.
Files included with this skill beyond the listing page.
SKILL.md
394 B
SUMMARY.md
66 B
Bad: Loop with queries Good: Include relations