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 skills add neverinfamous/memory-journal-mcp --skill typescriptgit 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/typescript)<a href="https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/typescript"><img src="https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/typescript/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/typescript"><img src="https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/typescript.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00068 | $0.00616 |
| Opus 5 | $0.00034 | $0.00308 |
| Sonnet 5 | $0.00014 | $0.00123 |
| Haiku 4.5 | $0.00007 | $0.00062 |
Grade A, and why
typescript 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TypeScript Operational Guide
Enterprise-grade rules for writing resilient, type-safe TypeScript in 2026. Follow these standards when refactoring, writing new code, or configuring projects.
1. Type Safety Mandates
- Never use
any: Useunknownfor unstructured data and narrow it with strict type guards ortypeof/instanceofchecks. - Avoid
asassertions: Casting subverts the type system. Use thesatisfiesoperator to validate shape without widening, or use strict type guards to preserve inference. - Use Unions over Enums: Prefer literal union types (
type Status = "active" | "inactive"). Only useconst enumwhen an intentional zero-overhead interop contract is required. Enums create unnecessary runtime footprint and complex mapping issues. - Boundary Validation: Always use
Zod(or equivalent schema validation) to parse unknown data at system boundaries (API payloads, database reads, file I/O). Never blindly cast external payloads.
2. Project Configuration (tsconfig.json)
Unless explicitly directed otherwise by the user or existing ecosystem:
- Module System: Assume an
ESM-firstsetup. Ensure"type": "module"is inpackage.json. - Strict Mode: Ensure
"strict": trueis enabled. - Module Resolution: Use
"moduleResolution": "Bundler"or"Node16"for modern ESM.
3. Generics and Utility Types
- Keep generics constrained (
<T extends Record<string, unknown>>) to avoid over-broad type matching. - Prefer built-in utility types (
Record,Partial,Omit,Pick,Awaited) over custom mapped types when possible. - Use
Readonly<T>for props and configurations that shouldn't mutate.
4. Error Handling
- Avoid throwing untyped objects. Throw
Errorsubclasses. - Use
unknownin catch blocks (e.g.,catch (error: unknown)) and checkerror instanceof Errorbefore accessing.message.
5. Security & Linting
- Do not bypass quality checks using
@ts-ignore,@ts-expect-error, or@ts-nocheckunless mandated by an unavoidable upstream bug. - Avoid using
eslint-disableto silence legitimate typing complaints.
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/eslint-template.js 2.8 KB runs code
- assets/tsconfig-template.json 1.3 KB
- references/enterprise-patterns.md 12 KB
- references/generics.md 12 KB
- references/nestjs-integration.md 14 KB
- references/react-integration.md 13 KB
- references/toolchain.md 11 KB
- references/tutorial.md 13 KB
- references/type-system.md 9.8 KB
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.
- 10d ago First seen · 51 lines · 68 tokens per session scan A 14299561e2d4
typescript is a skill published in the GitHub repository neverinfamous/memory-journal-mcp (20 stars, last pushed 1mo ago), licensed MIT. It adds 68 tokens to every session and 616 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
create-gsd-extension
Create, debug, and iterate on GSD extensions (TypeScript modules adding tools, commands, event hooks, custom UI, and providers). Use when asked to build an extension, add a tool the LLM can call, register a slash command, hook into GSD events, create custom TUI components, or modify GSD behavior. Triggers on…
faf-expert
Expert in the .faf format (Persistent Project Context for AI) and the faf-cli toolkit. Use when working with .faf files, scoring AI-readiness, syncing project context to CLAUDE.md, or discussing the Foundational Context Layer (FCL) doctrine. IANA-registered (application/vnd.faf+yaml). Anthropic-listed as "Persistent…
javascript-typescript
JavaScript and TypeScript development with ES6+, Node.js, React, and modern web frameworks. Use for frontend, backend, or full-stack JavaScript/TypeScript projects.
build-error-resolver
Build and TypeScript error resolution specialist. Use PROACTIVELY when build fails or type errors occur.
expo-app-design
Build beautiful cross-platform mobile apps with Expo Router, NativeWind, and React Native.
react-best-practices
React development guidelines with hooks, component patterns, state management, and performance optimization.