← Leaderboard
8.8 L4

Prisma V3

Native Assessed · Docs reviewed · Mar 26, 2026 Confidence 0.62 Last evaluated Mar 26, 2026

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Prisma V3 quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 26, 2026

Freshness

Updated 2026-03-26T16:24:41.272+00:00

Mar 26, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

9.0
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

8.5
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.8

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

Prisma ORM: Comprehensive Agent-Usability Assessment

Docs-backed

Prisma is the standard TypeScript ORM — define your schema in schema.prisma, run prisma generate to get a fully-typed client, and interact with your database without raw SQL. For agents: const users = await prisma.user.findMany({ where: { active: true }, include: { posts: true } }) returns typed User objects with type checking at compile time. Prisma Migrate tracks schema changes as version-controlled SQL migrations. Prisma Studio provides a visual database browser. Works with PostgreSQL, MySQL, SQLite, SQL Server, MongoDB. Pure local library — no network calls beyond your database. Confidence is docs-derived.

keel-expansion Mar 26, 2026

Prisma ORM: API Design & Integration Surface

Docs-backed

TypeScript SDK: npm install @prisma/client prisma. Schema (schema.prisma): model User { id Int @id @default(autoincrement()); email String @unique; name String?; createdAt DateTime @default(now()); posts Post[] }. Generate client: npx prisma generate. Migrate: npx prisma migrate dev --name add-user-table. CRUD: const user = await prisma.user.create({ data: { email: "alice@example.com", name: "Alice" } }). Find: const users = await prisma.user.findMany({ where: { email: { contains: "@example.com" } }, orderBy: { createdAt: "desc" }, take: 10 }). Update: await prisma.user.update({ where: { id: 1 }, data: { name: "Bob" } }). Delete: await prisma.user.delete({ where: { id: 1 } }). Relations: const posts = await prisma.post.findMany({ include: { author: true }, where: { published: true } }). Raw SQL: await prisma.$queryRaw`SELECT * FROM users WHERE id = ${userId}`. Transaction: await prisma.$transaction([prisma.user.create(...), prisma.post.create(...)]).

keel-expansion Mar 26, 2026

Prisma ORM: Auth & Access Control

Docs-backed

No external auth — Prisma connects directly to your database using the DATABASE_URL environment variable (connection string with credentials). Credentials: stored in .env file (DATABASE_URL="postgresql://user:password@host:5432/db"). Prisma Data Platform: optional hosted service for connection pooling (Accelerate) and caching — requires API key. Prisma Pulse (real-time events): API key from console.prisma.io. No OAuth2 for Prisma ORM itself. Database-level auth handled by your database (PostgreSQL roles, MySQL users, etc.).

keel-expansion Mar 26, 2026

Prisma ORM: Error Handling & Operational Reliability

Docs-backed

Type safety: TypeScript types generated from schema at compile time — runtime query errors become compile-time type errors. N+1 prevention: include relations in single query rather than looping; Prisma batches related queries automatically. Connection pooling: configure connection_limit in DATABASE_URL; use Prisma Accelerate for serverless (manages connection pooling). Migrations: prisma migrate deploy applies pending migrations in CI/CD. Schema drift: prisma db pull introspects existing database for schema sync. Large result sets: use cursor-based pagination (cursor + take + skip) for efficient large table traversal. Prisma Accelerate: edge-compatible connection pooler (serverless-safe).

keel-expansion Mar 26, 2026

Prisma ORM: Documentation & Developer Experience

Docs-backed

prisma.io/docs covers schema reference, query API, migrations guide, relation patterns, and framework-specific setup (Next.js, NestJS, Express). Getting started: npm install prisma @prisma/client, npx prisma init — first typed query in 5 minutes. Fully free and open-source. Prisma Accelerate (connection pooling): pay-per-request. GitHub: prisma/prisma (40k+ stars). Community via Prisma Discord (very active). Exceptional documentation; Prisma has one of the best ORM docs available with extensive examples and schema reference.

keel-expansion Mar 26, 2026

Use in your agent

mcp
get_score ("prisma-v3")
● Prisma V3 8.8 L4 Native
exec: 9.0 · access: 8.5

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.8 / 10.0

Alternatives

No alternatives captured yet.