| name | trpc |
| description | Corrects the wrong defaults a model has for tRPC v11 (verified against 11.18.0). Use when code imports initTRPC, createTRPCContext, createTRPCOptionsProxy, createTRPCReact, httpBatchLink, httpSubscriptionLink, fetchRequestHandler, or TRPCError, or when building routers, procedures, middleware, links, or RSC prefetching. Covers the v10 to v11 drift that makes stale code fail — the React client that flipped to @trpc/tanstack-react-query, transformers moving into links, renamed type exports, observable subscriptions replaced by async generators over SSE — plus the defaults that are unsafe rather than merely stale — uncapped batching, CDN cache headers that serve one user's data to another, stack traces shipped from edge runtimes, and middleware that runs before input validation. NOT for TanStack Query semantics generally (use tanstack-query), Zod schema authoring (use zod), or Next.js App Router routing (use nextjs). |
tRPC v11
The decisions tRPC forces and how to settle them, written so an agent applies them while writing or reviewing code. Every rule names the wrong default it corrects; there is no rule for what the model already gets right.
Pinned to tRPC v11, verified against 11.18.0 (2026-06-17). There is no v12 — but several APIs here carry @deprecated … will be removed in v12 and still ship today. Peers: typescript >=5.7.2, @tanstack/react-query ^5.80.3, react >=18.2.0.
When to Apply
Use this skill when:
- Code imports
initTRPC, createTRPCContext, createTRPCOptionsProxy, createTRPCReact, createTRPCClient, httpBatchLink, httpSubscriptionLink, splitLink, fetchRequestHandler, createCallerFactory, or TRPCError — or defines procedures with .input() / .output() / .use() / .query() / .mutation() / .subscription()
- The user says "everything types as
any", "invalidation isn't working", "contextMap[utilName] is not a function", "the transformer property moved", "414 / 413 on the dashboard", "subscriptions won't connect", "the prefetch isn't hydrating", or "it 404s every procedure"
- Migrating a codebase from tRPC v10, or reviewing tRPC code written against v10-era examples — the highest-yield moment, because the recommended React client changed and stale code often still compiles
- Adding the first subscription, the first file upload, or the first RSC prefetch to an existing router — each crosses into a surface where v11 replaced the v10 approach outright
- Reviewing a batched client as the app grows, where the uncapped defaults turn into intermittent production failures
This skill is NOT for:
- General TanStack Query semantics — cache lifetimes, retry,
useMutation ergonomics (→ tanstack-query)
- Authoring or migrating the Zod schemas used as validators (→
zod)
- Next.js App Router routing, streaming, or caching beyond the tRPC handler (→
nextjs)
- General TypeScript narrowing and generics (→
typescript)
Rule Categories
| # | Category | Prefix | Covers |
|---|
| 1 | React Client Surface | client- | Which integration, options factories, query keys, invalidation, subscribing |
| 2 | v10 → v11 Drift | mig- | Renamed, removed, and lazily-materialized APIs; peer-version floors |
| 3 | Router & Procedure Construction | proc- | Instance identity, builder order, context narrowing, input merging |
| 4 | Error & Validation Semantics | err- | What surfaces, what leaks, which error class |
| 5 | Links, Transport & Serialization | link- | Link chain, batching limits, transformers, adapters, caching |
| 6 | SSR, RSC & Server-Side Calls | rsc- | Prefetch and hydration, QueryClient lifetime, caller misuse |
| 7 | Subscriptions & Streaming | sub- | Async generators over SSE, auth, keepalive, backlog races |
Quick Reference
1. React Client Surface
2. v10 → v11 Drift
3. Router & Procedure Construction
4. Error & Validation Semantics
5. Links, Transport & Serialization
6. SSR, RSC & Server-Side Calls
7. Subscriptions & Streaming
How to Use
Read a reference file when its decision comes up. Each rule names the wrong default it corrects, then shows the canonical way — with an incorrect/correct contrast only where the wrong way is a real trap.
Two shortcuts worth taking first:
-
Reviewing or migrating existing tRPC code? Start with client- and mig-. Stale code frequently still compiles, so nothing points you at these; they are what everything else inherits.
-
Hardening something already working? The security-shaped rules are link-gate-cache-headers, rsc-query-client-per-request, err-set-isdev-explicitly, proc-input-before-use, and sub-keep-credentials-out-of-urls.
-
Section definitions — category structure and ordering rationale
-
Rule template — for adding new rules
-
AGENTS.md — auto-built table of contents across all rules
Related Skills
tanstack-query — The query layer tRPC's React client now delegates to; owns cache semantics this skill assumes
zod — Validator authoring and Zod 4 drift, including the .flatten() → z.treeifyError() change this skill only points at
typescript — General type-level work beyond tRPC's inference surface