trpc

trpc is a skill for Claude Code, Codex from neverinfamous/memory-journal-mcp. It costs 50 tokens per session (526 once invoked), scanned A, original, MIT.

Guidelines for tRPC, a TypeScript library for calling server procedures from a client while sharing types between them. They cover routers, read and write procedures, request context, middleware, validation, and client integration.

In plain words
What is it for?
Use them when designing tRPC routers, separating reads from updates, passing request data such as sessions or database access, and connecting a TypeScript client.
Why use it?
They help keep client-server calls consistently typed and ensure incoming procedure data is validated.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/neverinfamous/memory-journal-mcp/trpc
Any agent
npx skills add neverinfamous/memory-journal-mcp --skill trpc
Clone the repo
git clone --depth 1 https://github.com/neverinfamous/memory-journal-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for trpc

README.md
[![agentmods](https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/trpc.svg)](https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/trpc)
Your own site
<a href="https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/trpc"><img src="https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/trpc.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 526 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00050 $0.00526
Opus 5 $0.00025 $0.00263
Sonnet 5 $0.00010 $0.00105
Haiku 4.5 $0.00005 $0.00053

Measured 4d ago against content hash 870ddb0d903f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

trpc scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/trpc/SKILL.md · 57 lines

What it actually says

tRPC Guidelines

tRPC enables end-to-end typesafe APIs without code generation or GraphQL schemas. It is highly recommended for full-stack TypeScript applications (e.g., Next.js, React).

1. Routers and Procedures

  • Input Validation: Always use Zod for procedure input validation. Never trust client payloads.
  • Query vs Mutation: Use publicProcedure.query() for read operations (GET) and publicProcedure.mutation() for writes/updates (POST).
  • Modularity: Break large routers into sub-routers (e.g., userRouter, postRouter) and merge them into an appRouter.
import { z } from 'zod'
import { publicProcedure, router } from './trpc'

export const userRouter = router({
  getUser: publicProcedure.input(z.string()).query(async ({ input, ctx }) => {
    return ctx.db.user.findById(input)
  }),
  createUser: publicProcedure
    .input(z.object({ name: z.string() }))
    .mutation(async ({ input, ctx }) => {
      return ctx.db.user.create(input)
    }),
})

2. Context and Middleware

  • Context Injection: Use the createContext function to inject database instances, user session data, and request metadata (headers) into every procedure.
  • Middleware Security: Implement reusable middlewares for authorization (e.g., protectedProcedure) rather than checking auth in every single procedure.
const isAuthed = t.middleware(({ ctx, next }) => {
  if (!ctx.session?.user) {
    throw new TRPCError({ code: 'UNAUTHORIZED' })
  }
  return next({
    ctx: {
      session: { ...ctx.session, user: ctx.session.user },
    },
  })
})

export const protectedProcedure = t.procedure.use(isAuthed)

3. Client Integration

  • React Query: Use @trpc/react-query to consume APIs in React. This provides caching, invalidation, and loading states automatically.
  • Invalidation: After a mutation succeeds, always invalidate the relevant queries (e.g., utils.users.getAll.invalidate()) to refresh the UI.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 57 lines · 50 tokens per session scan A 870ddb0d903f

Subscribe to this mod's changes

trpc is a skill published in the GitHub repository neverinfamous/memory-journal-mcp (20 stars, last pushed 1mo ago), licensed MIT. It adds 50 tokens to every session and 526 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

context-vigilance

Lossless Group's framework for managing context-v/ directories in any project. Use whenever creating, updating, or organizing files in any context-v/ folder (specs, plans, prompts, blueprints, reminders, agent-skills, explorations, issues — plus the universal extra/ and sitemap/, and the experimental loops/…

lossless-group/lossless-agent-skills · 142 tokens

search-lossless-corpus

Use whenever the user asks a question that prior work might already have answered — "what did we decide about X", "when did we ship X", "why did we choose X over Y", "has this failed before", "where did we put X" — and generally to ground answers in The Lossless Group's own corpus instead of training-data folklore.…

lossless-group/lossless-agent-skills · 230 tokens

aictx

Use this skill when working in a repository that uses AICTX for repo-local operational continuity. Prefer AICTX MCP tools when available, fall back to CLI commands, resume before substantial work, and finalize factual continuity after work.

oldskultxo/aictx · 48 tokens

init

Initialize structured context for this project. Scaffolds .scs/ with all 11 concern bundles, scans the project, and recommends where to start.

tim-mccrimmon/structured-context-spec · 33 tokens

context-mine

Extracts structured context from conversation exports (Slack, meeting transcripts, chat logs) into inbox for processing.

walm00/business-context-os · 27 tokens

document-knowledge-base

Create and update a folder/file knowledge base using agentic discovery. Covers KB bootstrap, single entry creation, and entry updates. Use this when asked to document a system, subsystem, concept, or domain — or when existing KB entries need refreshing.

usefulmove/enso · 54 tokens