dev-prisma — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited dev-prisma (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Prisma publishes the canonical agent skill at prisma/skills — maintained by the Prisma team, in sync with v7 (ESM-only, driver adapters, prisma.config.ts). The vendor reference stays current with every release; the prior foundation skill (418 lines) drifted on each Prisma version bump.
# Prisma's preferred path (verify on their README):
npx skills add prisma/skills
# Fallback — clone and copy:
git clone --depth 1 https://github.com/prisma/skills ~/dev/vendor-skills/prisma
# Skill content lives in CLAUDE.md / AGENTS.md per their convention.Recipe entry: docs/recipes/recommended-vendor-skills.md §"Prisma — prisma/skills". Reduction rationale: specs/foundation-positioning-review/spec.md Wave 1.
The vendor covers the Prisma API surface. The foundation enforces version-agnostic conventions that survive across releases:
select: { passwordHash: true } or any sensitive column without explicit need; default to select over include for security + perf — cross-ref .claude/rules/security.md.dev-tdd skill.dev-supabase skill (Supabase RLS coexists with Prisma queries).prisma migrate dev in production. Always prisma migrate deploy.prisma generate MUST run after every schema change. Add it to the CI build step.globalThis pattern in dev) — avoid connection leaks.select instead of include when you know the fields (security + perf)..env with DATABASE_URL. Always .env.example with placeholders.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.