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.
npx agentmods add skills/neverinfamous/memory-journal-mcp/trpcnpx skills add neverinfamous/memory-journal-mcp --skill trpcgit clone --depth 1 https://github.com/neverinfamous/memory-journal-mcpWrote 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.
[](https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/trpc)<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>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.
| Model | Per session | Once 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 |
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.
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) andpublicProcedure.mutation()for writes/updates (POST). - Modularity: Break large routers into sub-routers (e.g.,
userRouter,postRouter) and merge them into anappRouter.
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
createContextfunction 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-queryto 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.
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.
- 4d ago First seen · 57 lines · 50 tokens per session scan A 870ddb0d903f
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.
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/…
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.…
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.
init
Initialize structured context for this project. Scaffolds .scs/ with all 11 concern bundles, scans the project, and recommends where to start.
context-mine
Extracts structured context from conversation exports (Slack, meeting transcripts, chat logs) into inbox for processing.
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.