Write Prisma Next queries for Postgres, SQLite, or Mongo — pick a lane (Postgres/SQLite db.orm.<Model> + db.sql.<table>; Mongo db.orm.<root> + db.query.from(...) pipeline builder), filter / project / sort / paginate, eager-load with .include(...), Postgres/SQLite db.transaction(...), Postgres/SQLite ORM .aggregate(...), Mongo aggregations via query builder, namespace-aware accessors (db.orm.<ns>.<Model>, db.sql.<ns>.<table>). Triggers: query, where, match, select, project, orderBy, take, skip, include, lookup, first, all, count, aggregate, group, create, update, delete, upsert, returning, transaction, db.close, script teardown, variant, polymorphism, drizzle-style, kysely-style. Notes: .all() is a Thenable (just await it), iterators are single-use (RUNTIME.ITERATOR_CONSUMED), Postgres count is number while sum/avg/min/max are number | null, ranges use chained .where() or and(...) (no .between(...)).
$npx -y skills add prisma/prisma-next --skill prisma-next-queriesInstalls into the current project.
Run `npx skills use "https://github.com/prisma/prisma-next" --skill "prisma/prisma-next/prisma-next-queries"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.
Use the skills in "https://github.com/prisma/prisma-next" that are relevant to the current task. Run `npx skills add "https://github.com/prisma/prisma-next"` and select the relevant skills, then follow their instructions.