Awesome-omni-skills trpc-fullstack
tRPC Full-Stack workflow skill. Use this skill when the user needs Build end-to-end type-safe APIs with tRPC \u2014 routers, procedures, middleware, subscriptions, and Next.js/React integration patterns and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
git clone https://github.com/diegosouzapw/awesome-omni-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/trpc-fullstack" ~/.claude/skills/diegosouzapw-awesome-omni-skills-trpc-fullstack && rm -rf "$T"
skills/trpc-fullstack/SKILL.mdtRPC Full-Stack
Overview
This public intake copy packages
plugins/antigravity-awesome-skills-claude/skills/trpc-fullstack from https://github.com/sickn33/antigravity-awesome-skills into the native Omni Skills editorial shape without hiding its origin.
Use it when the operator needs the upstream workflow, support files, and repository context to stay intact while the public validator and private enhancer continue their normal downstream flow.
This intake keeps the copied upstream files intact and uses
metadata.json plus ORIGIN.md as the provenance anchor for review.
tRPC Full-Stack
Imported source sections that did not map cleanly to the public headings are still preserved below or in the support files. Notable imported sections: Core Concepts, How It Works, Security & Safety Notes, Common Pitfalls, Limitations.
When to Use This Skill
Use this section as the trigger filter. It should make the activation boundary explicit before the operator loads files, runs commands, or opens a pull request.
- Use when building a TypeScript full-stack app (Next.js, Remix, Express + React) where the client and server share a single repo
- Use when you want end-to-end type safety on API calls without REST/GraphQL schema overhead
- Use when adding real-time features (subscriptions) to an existing tRPC setup
- Use when designing multi-step middleware (auth, rate limiting, tenant scoping) on tRPC procedures
- Use when migrating an existing REST/GraphQL API to tRPC incrementally
- Use when the request clearly matches the imported source intent: Build end-to-end type-safe APIs with tRPC — routers, procedures, middleware, subscriptions, and Next.js/React integration patterns.
Operating Table
| Situation | Start here | Why it matters |
|---|---|---|
| First-time use | | Confirms repository, branch, commit, and imported path before touching the copied workflow |
| Provenance review | | Gives reviewers a plain-language audit trail for the imported source |
| Workflow execution | | Starts with the smallest copied file that materially changes execution |
| Supporting context | | Adds the next most relevant copied source file without loading the entire package |
| Handoff decision | | Helps the operator switch to a stronger native skill when the task drifts |
Workflow
This workflow is intentionally editorial and operational at the same time. It keeps the imported source useful to the operator while still satisfying the public intake standards that feed the downstream enhancer flow.
- Confirm the user goal, the scope of the imported workflow, and whether this skill is still the right router for the task.
- Read the overview and provenance files before loading any copied upstream support files.
- Load only the references, examples, prompts, or scripts that materially change the outcome for the current request.
- Execute the upstream workflow while keeping provenance and source boundaries explicit in the working notes.
- Validate the result against the upstream expectations and the evidence you can point to in the copied files.
- Escalate or hand off to a related skill when the work moves out of this imported workflow's center of gravity.
- Before merge or closure, record what was used, what changed, and what the reviewer still needs to verify.
Imported Workflow Notes
Imported: Overview
tRPC lets you build fully type-safe APIs without writing a schema or code-generation step. Your TypeScript types flow from the server router directly to the client — so every API call is autocompleted, validated at compile time, and refactoring-safe. Use this skill when building TypeScript monorepos, Next.js apps, or any project where the server and client share a codebase.
Imported: Core Concepts
Routers and Procedures
A router groups related procedures (think: endpoints). Procedures are typed functions —
query for reads, mutation for writes, subscription for real-time streams.
Input Validation with Zod
All procedure inputs are validated with Zod schemas. The validated, typed input is available in the procedure handler — no manual parsing.
Context
context is shared state passed to every procedure — auth session, database client, request headers, etc. It is built once per request in a context factory. Important: Next.js App Router and Pages Router require separate context factories because App Router handlers receive a fetch Request, not a Node.js NextApiRequest.
Middleware
Middleware chains run before a procedure. Use them for authentication, logging, and request enrichment. They can extend the context for downstream procedures.
Examples
Example 1: Ask for the upstream workflow directly
Use @trpc-fullstack to handle <task>. Start from the copied upstream workflow, load only the files that change the outcome, and keep provenance visible in the answer.
Explanation: This is the safest starting point when the operator needs the imported workflow, but not the entire repository.
Example 2: Ask for a provenance-grounded review
Review @trpc-fullstack against metadata.json and ORIGIN.md, then explain which copied upstream files you would load first and why.
Explanation: Use this before review or troubleshooting when you need a precise, auditable explanation of origin and file selection.
Example 3: Narrow the copied support files before execution
Use @trpc-fullstack for <task>. Load only the copied references, examples, or scripts that change the outcome, and name the files explicitly before proceeding.
Explanation: This keeps the skill aligned with progressive disclosure instead of loading the whole copied package by default.
Example 4: Build a reviewer packet
Review @trpc-fullstack using the copied upstream files plus provenance, then summarize any gaps before merge.
Explanation: This is useful when the PR is waiting for human review and you want a repeatable audit packet.
Imported Usage Notes
Imported: Examples
Example 1: Fetching Data in a Component
// components/PostList.tsx 'use client'; import { trpc } from '@/utils/trpc'; export function PostList() { const { data, isLoading, error } = trpc.post.list.useQuery({ limit: 10 }); if (isLoading) return <p>Loading…</p>; if (error) return <p>Error: {error.message}</p>; return ( <ul> {data?.posts.map((post) => ( <li key={post.id}>{post.title}</li> ))} </ul> ); }
Example 2: Mutation with Cache Invalidation
'use client'; import { trpc } from '@/utils/trpc'; export function CreatePost() { const utils = trpc.useUtils(); const createPost = trpc.post.create.useMutation({ onSuccess: () => { // Invalidate and refetch the post list utils.post.list.invalidate(); }, }); const handleSubmit = (e: React.FormEvent<HTMLFormElement>) => { e.preventDefault(); const form = e.currentTarget; const data = new FormData(form); createPost.mutate({ title: data.get('title') as string, body: data.get('body') as string, }); form.reset(); }; return ( <form onSubmit={handleSubmit}> <input name="title" placeholder="Title" required /> <textarea name="body" placeholder="Body" required /> <button type="submit" disabled={createPost.isPending}> {createPost.isPending ? 'Creating…' : 'Create Post'} </button> {createPost.error && <p>{createPost.error.message}</p>} </form> ); }
Example 3: Server-Side Caller (Server Components / SSR)
Use
createServerContext — the dedicated server-side factory — so that auth() is called
correctly without needing a synthetic or empty request object:
// app/posts/page.tsx (Next.js Server Component) import { appRouter } from '@/server/root'; import { createCallerFactory } from '@trpc/server'; import { createServerContext } from '@/server/context'; const createCaller = createCallerFactory(appRouter); export default async function PostsPage() { // Uses createServerContext — calls auth() server-side, no req/res cast needed const caller = createCaller(await createServerContext()); const { posts } = await caller.post.list({ limit: 20 }); return ( <ul> {posts.map((post) => ( <li key={post.id}>{post.title}</li> ))} </ul> ); }
Example 4: Real-Time Subscriptions (WebSocket)
// server/routers/notifications.ts import { observable } from '@trpc/server/observable'; import { EventEmitter } from 'events'; const ee = new EventEmitter(); export const notificationRouter = router({ onNew: protectedProcedure.subscription(({ ctx }) => { return observable<{ message: string; at: Date }>((emit) => { const onNotification = (data: { message: string }) => { emit.next({ message: data.message, at: new Date() }); }; const channel = `user:${ctx.session.user.id}`; ee.on(channel, onNotification); return () => ee.off(channel, onNotification); }); }), });
// Client usage — requires wsLink in the client config trpc.notification.onNew.useSubscription(undefined, { onData(data) { toast(data.message); }, });
Best Practices
Treat the generated public skill as a reviewable packaging layer around the upstream repository. The goal is to keep provenance explicit and load only the copied source material that materially improves execution.
- ✅ Export only AppRouter type from server code — never import appRouter on the client
- ✅ Use separate context factories — createTRPCContext for the HTTP handler, createServerContext for Server Components and callers
- ✅ Validate all inputs with Zod — never trust raw input without a schema
- ✅ Split routers by domain (posts, users, billing) and merge in root.ts
- ✅ Extend context in middleware rather than querying the DB multiple times per request
- ✅ Use utils.invalidate() after mutations to keep the cache fresh
- ❌ Don't cast context with as any to silence type errors — the mismatch will surface as a runtime failure when auth or session lookups return undefined
Imported Operating Notes
Imported: Best Practices
- ✅ Export only
type from server code — never importAppRouter
on the clientappRouter - ✅ Use separate context factories —
for the HTTP handler,createTRPCContext
for Server Components and callerscreateServerContext - ✅ Validate all inputs with Zod — never trust raw
without a schemainput - ✅ Split routers by domain (posts, users, billing) and merge in
root.ts - ✅ Extend context in middleware rather than querying the DB multiple times per request
- ✅ Use
after mutations to keep the cache freshutils.invalidate() - ❌ Don't cast context with
to silence type errors — the mismatch will surface as a runtime failure when auth or session lookups return undefinedas any - ❌ Don't use
in Server Components — usecreateContext({} as any)
which callscreateServerContext()
directlyauth() - ❌ Don't put business logic in the route handler — keep it in the procedure or a service layer
- ❌ Don't share the tRPC client instance globally — create it per-provider to avoid stale closures
Troubleshooting
Problem: The operator skipped the imported context and answered too generically
Symptoms: The result ignores the upstream workflow in
plugins/antigravity-awesome-skills-claude/skills/trpc-fullstack, fails to mention provenance, or does not use any copied source files at all.
Solution: Re-open metadata.json, ORIGIN.md, and the most relevant copied upstream files. Load only the files that materially change the answer, then restate the provenance before continuing.
Problem: The imported workflow feels incomplete during review
Symptoms: Reviewers can see the generated
SKILL.md, but they cannot quickly tell which references, examples, or scripts matter for the current task.
Solution: Point at the exact copied references, examples, scripts, or assets that justify the path you took. If the gap is still real, record it in the PR instead of hiding it.
Problem: The task drifted into a different specialization
Symptoms: The imported skill starts in the right place, but the work turns into debugging, architecture, design, security, or release orchestration that a native skill handles better. Solution: Use the related skills section to hand off deliberately. Keep the imported provenance visible so the next skill inherits the right context instead of starting blind.
Related Skills
- Use when the work is better handled by that native specialization after this imported skill establishes context.@trust-calibrator
- Use when the work is better handled by that native specialization after this imported skill establishes context.@turborepo-caching
- Use when the work is better handled by that native specialization after this imported skill establishes context.@tutorial-engineer
- Use when the work is better handled by that native specialization after this imported skill establishes context.@twilio-communications
Additional Resources
Use this support matrix and the linked files below as the operator packet for this imported skill. They should reflect real copied source material, not generic scaffolding.
| Resource family | What it gives the reviewer | Example path |
|---|---|---|
| copied reference notes, guides, or background material from upstream | |
| worked examples or reusable prompts copied from upstream | |
| upstream helper scripts that change execution or validation | |
| routing or delegation notes that are genuinely part of the imported package | |
| supporting assets or schemas copied from the source package | |
Imported Reference Notes
Imported: Additional Resources
- tRPC Official Docs
- create-t3-app — Production Next.js starter with tRPC wired in
- tRPC GitHub
- TanStack Query Docs
Imported: How It Works
Step 1: Install and Initialize
npm install @trpc/server @trpc/client @trpc/react-query @tanstack/react-query zod
Create the tRPC instance and reusable builders:
// src/server/trpc.ts import { initTRPC, TRPCError } from '@trpc/server'; import { type Context } from './context'; import { ZodError } from 'zod'; const t = initTRPC.context<Context>().create({ errorFormatter({ shape, error }) { return { ...shape, data: { ...shape.data, zodError: error.cause instanceof ZodError ? error.cause.flatten() : null, }, }; }, }); export const router = t.router; export const publicProcedure = t.procedure; export const middleware = t.middleware;
Step 2: Define Two Context Factories
Next.js App Router handlers receive a fetch
Request (not a Node.js NextApiRequest), so the context
must be built differently depending on the call site. Define one factory per surface:
// src/server/context.ts import { type FetchCreateContextFnOptions } from '@trpc/server/adapters/fetch'; import { auth } from '@/server/auth'; // Next-Auth v5 / your auth helper import { db } from './db'; /** * Context for the HTTP handler (App Router Route Handler). * `opts.req` is the fetch Request — auth is resolved server-side via `auth()`. */ export async function createTRPCContext(opts: FetchCreateContextFnOptions) { const session = await auth(); // server-side auth — no req/res needed return { session, db, headers: opts.req.headers }; } /** * Context for direct server-side callers (Server Components, RSC, cron jobs). * No HTTP request is involved, so we call auth() directly from the server. */ export async function createServerContext() { const session = await auth(); return { session, db }; } export type Context = Awaited<ReturnType<typeof createTRPCContext>>;
Step 3: Build an Auth Middleware and Protected Procedure
// src/server/trpc.ts (continued) const enforceAuth = middleware(({ ctx, next }) => { if (!ctx.session?.user) { throw new TRPCError({ code: 'UNAUTHORIZED' }); } return next({ ctx: { // Narrows type: session is non-null from here session: { ...ctx.session, user: ctx.session.user }, }, }); }); export const protectedProcedure = t.procedure.use(enforceAuth);
Step 4: Create Routers
// src/server/routers/post.ts import { z } from 'zod'; import { router, publicProcedure, protectedProcedure } from '../trpc'; import { TRPCError } from '@trpc/server'; export const postRouter = router({ list: publicProcedure .input( z.object({ limit: z.number().min(1).max(100).default(20), cursor: z.string().optional(), }) ) .query(async ({ ctx, input }) => { const posts = await ctx.db.post.findMany({ take: input.limit + 1, cursor: input.cursor ? { id: input.cursor } : undefined, orderBy: { createdAt: 'desc' }, }); const nextCursor = posts.length > input.limit ? posts.pop()!.id : undefined; return { posts, nextCursor }; }), byId: publicProcedure .input(z.object({ id: z.string() })) .query(async ({ ctx, input }) => { const post = await ctx.db.post.findUnique({ where: { id: input.id } }); if (!post) throw new TRPCError({ code: 'NOT_FOUND' }); return post; }), create: protectedProcedure .input( z.object({ title: z.string().min(1).max(200), body: z.string().min(1), }) ) .mutation(async ({ ctx, input }) => { return ctx.db.post.create({ data: { ...input, authorId: ctx.session.user.id }, }); }), delete: protectedProcedure .input(z.object({ id: z.string() })) .mutation(async ({ ctx, input }) => { const post = await ctx.db.post.findUnique({ where: { id: input.id } }); if (!post) throw new TRPCError({ code: 'NOT_FOUND' }); if (post.authorId !== ctx.session.user.id) throw new TRPCError({ code: 'FORBIDDEN' }); return ctx.db.post.delete({ where: { id: input.id } }); }), });
Step 5: Compose the Root Router and Export Types
// src/server/root.ts import { router } from './trpc'; import { postRouter } from './routers/post'; import { userRouter } from './routers/user'; export const appRouter = router({ post: postRouter, user: userRouter, }); // Export the type for the client — never import the appRouter itself on the client export type AppRouter = typeof appRouter;
Step 6: Mount the API Handler (Next.js App Router)
The App Router handler must use
fetchRequestHandler and the fetch-based context factory.
createTRPCContext receives FetchCreateContextFnOptions (with a fetch Request), not
a Pages Router req/res pair.
// src/app/api/trpc/[trpc]/route.ts import { fetchRequestHandler } from '@trpc/server/adapters/fetch'; import { type FetchCreateContextFnOptions } from '@trpc/server/adapters/fetch'; import { appRouter } from '@/server/root'; import { createTRPCContext } from '@/server/context'; const handler = (req: Request) => fetchRequestHandler({ endpoint: '/api/trpc', req, router: appRouter, // opts is FetchCreateContextFnOptions — req is the fetch Request createContext: (opts: FetchCreateContextFnOptions) => createTRPCContext(opts), }); export { handler as GET, handler as POST };
Step 7: Set Up the Client (React Query)
// src/utils/trpc.ts import { createTRPCReact } from '@trpc/react-query'; import type { AppRouter } from '@/server/root'; export const trpc = createTRPCReact<AppRouter>();
// src/app/providers.tsx 'use client'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { httpBatchLink } from '@trpc/client'; import { useState } from 'react'; import { trpc } from '@/utils/trpc'; export function TRPCProvider({ children }: { children: React.ReactNode }) { const [queryClient] = useState(() => new QueryClient()); const [trpcClient] = useState(() => trpc.createClient({ links: [ httpBatchLink({ url: '/api/trpc', headers: () => ({ 'x-trpc-source': 'react' }), }), ], }) ); return ( <trpc.Provider client={trpcClient} queryClient={queryClient}> <QueryClientProvider client={queryClient}>{children}</QueryClientProvider> </trpc.Provider> ); }
Imported: Security & Safety Notes
- Always enforce authorization in
— never rely on client-side checks aloneprotectedProcedure - Validate all input shapes with Zod, including pagination cursors and IDs, to prevent injection via malformed inputs
- Avoid exposing internal error details to clients — use
with a public-safeTRPCError
and keep stack traces server-side onlymessage - Rate-limit public procedures using middleware to prevent abuse
Imported: Common Pitfalls
-
Problem: Auth session is
in protected procedures even when the user is logged in Solution: Ensurenull
uses the correct server-side auth call (e.g.createTRPCContext
from Next-Auth v5) and is not receiving a Pages Routerauth()
cast viareq/res
in an App Router handleras any -
Problem: Server Component caller fails for auth-dependent queries Solution: Use
(the dedicated server-side factory) instead of passing an empty or synthetic object tocreateServerContext()createContext -
Problem: "Type error: AppRouter is not assignable to AnyRouter" Solution: Import
as aAppRouter
import (type
) on the client, not the full moduleimport type { AppRouter } -
Problem: Mutations not reflecting in the UI after success Solution: Call
inutils.<router>.<procedure>.invalidate()
to trigger a refetch via React QueryonSuccess -
Problem: "Cannot find module '@trpc/server/adapters/next'" with App Router Solution: Use
and@trpc/server/adapters/fetch
for the App Router; thefetchRequestHandler
adapter is for Pages Router onlynextjs -
Problem: Subscriptions not connecting Solution: Subscriptions require
— route subscriptions tosplitLink
and queries/mutations towsLinkhttpBatchLink
Imported: Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.