typescript-ultimate

typescript-ultimate is a skill for Claude Code, Codex from konamgil/mandu. It costs 74 tokens per session (685 once invoked), scanned A, original, MPL-2.0.

A TypeScript engineering guide for designing, writing, reviewing, and restructuring production code. TypeScript is JavaScript with checks that help catch mistakes before the program runs.

In plain words
What is it for?
Use it for TypeScript projects involving React, Node.js, web servers, APIs, testing, linting, migrations, or code review.
Why use it?
It helps keep data from APIs and other outside systems validated and keeps code, tests, and type definitions consistent.

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/konamgil/mandu/typescript-ultimate
Any agent
npx skills add konamgil/mandu --skill typescript-ultimate
Clone the repo
git clone --depth 1 https://github.com/konamgil/mandu

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 typescript-ultimate

README.md
[![agentmods](https://agentmods.dev/badge/skills/konamgil/mandu/typescript-ultimate.svg)](https://agentmods.dev/skills/konamgil/mandu/typescript-ultimate)
Your own site
<a href="https://agentmods.dev/skills/konamgil/mandu/typescript-ultimate"><img src="https://agentmods.dev/badge/skills/konamgil/mandu/typescript-ultimate.svg" alt="Measured on agentmods" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 685 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.00074 $0.00685
Opus 5 $0.00037 $0.00342
Sonnet 5 $0.00015 $0.00137
Haiku 4.5 $0.00007 $0.00068

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

Security

Grade A, and why

typescript-ultimate 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 5d 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.

docs/skills/typescript-ultimate/SKILL.md · 67 lines

How it starts

The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.

TypeScript Ultimate

Execute TypeScript work with maximum safety, clarity, and maintainability.

Workflow

  1. Identify context first

    • Determine runtime: Node / Browser / React / Next / Nest / Express / Fastify / Deno / RN.
    • Determine strictness target: incremental vs strict-by-default.
    • Determine risk class: API contract, persistence, auth, payments, migrations are high-risk.
  2. Lock quality baseline before coding

    • Apply strict compiler profile from references/01-compiler-and-quality-baseline.md.
    • Apply lint and ordering rules from references/07-code-review-and-standards.md.
    • Define typed boundaries for IO and external systems.
  3. Model domain types first

    • Design discriminated unions for state and protocol variants.
    • Use utility/mapped/conditional/template-literal types where they reduce duplication.
    • Keep types readable; split deeply complex helpers into named aliases.
  4. Implement with type-safe boundaries

    • Parse unknown inputs to validated domain types.
    • Keep any out of core paths.
    • Encode API request/response contracts in types.
  5. Verify behavior + type contracts

    • Add runtime tests + type tests (tsc --noEmit, or expect-type style checks).
    • Add edge-case checks for nullability, narrowing, and exhaustive handling.
  6. Review against production checklist

    • Use references/07-code-review-and-standards.md review rubric.
    • Prefer smallest safe change that improves type confidence.

Mandatory Rules

  • Prefer unknown over any.
  • Prefer narrowing/type guards over assertions (as).
  • Use discriminated unions for state machines and branching models.
  • Keep imports organized and type-only imports explicit (import type).
  • Use const by default; avoid mutation when practical.
  • Use exhaustive checks (never) for union switches.
  • Keep compiler+lint green before completion.

Reference Map

  • Compiler/strict baseline: references/01-compiler-and-quality-baseline.md
  • Type system patterns: references/02-advanced-type-system.md
  • API/schema/contracts: references/03-api-and-schema-typing.md
  • Framework-specific patterns: references/04-framework-playbooks.md
  • Data/persistence/runtime boundaries: references/05-data-and-runtime-boundaries.md
  • Testing strategy: references/06-testing-types-and-behavior.md
  • Code review standards: references/07-code-review-and-standards.md
  • Source corpus index (downloaded posts): references/source-corpus-index.md

Read the full file on GitHub · 67 lines

Files

What ships with it

60 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.

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. 5d ago First seen · 67 lines · 74 tokens per session scan A 36cfd1d03fa0

Subscribe to this mod's changes

typescript-ultimate is a skill published in the GitHub repository konamgil/mandu (46 stars, last pushed 8d ago), licensed MPL-2.0. It adds 74 tokens to every session and 685 once invoked, about $0.0004 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

widen-return-type

When delegating a task affected by this skill, include.

ZaxbyHub/opencode-swarm · 9 tokens

bun

Use this skill when building with Bun runtime — Bun APIs, testing, package management, shell scripting, hot reload, SQLite, file I/O. This skill enforces: built-in APIs over npm equivalents, Bun test runner, bun install speed optimization, Bun.shell for scripts. Do NOT use for: Node.js-specific APIs…

j4flmao/agent-skills · 80 tokens

mastra

Comprehensive Mastra framework guide. Teaches how to find current documentation, verify API signatures, and build agents and workflows. Covers documentation lookup strategies (embedded docs, remote docs), core concepts (agents vs workflows, tools, memory, RAG), TypeScript requirements, and common patterns. Use this…

vobase/vobase · 83 tokens

sruja-project

Procedural workflows for working with the Sruja codebase. Teaches AI editors how to add components, validate changes, and follow patterns.

sruja-ai/sruja · 34 tokens

add-a-lib

Scaffold a new shared library under libs/ in the builders-stack monorepo. Use when code is needed in two or more places (apps or services) and should become a single source of truth consumed by package name. Covers the package.json, tsconfig, the one-public-door src/index.ts barrel, and wiring it into a consumer…

lonormaly/builders-stack · 81 tokens

hono-core

Hono ultrafast web framework fundamentals - routing, context, handlers, and response patterns for multi-runtime deployment.

bobmatnyc/claude-mpm-skills · 26 tokens