typescript-expert

typescript-expert is an agent for Claude Code from travisjneuman/.claude. It costs 31 tokens per session (674 once invoked), scanned A, original, MIT.

A TypeScript specialist for solving advanced type-system problems and improving type safety. TypeScript adds checks to JavaScript code so many mistakes can be found before running it.

In plain words
What is it for?
Use it for generics, conditional and utility types, branded types, discriminated unions, and other advanced type patterns.
Why use it?
It helps express complex relationships between data and functions while reducing incorrect assumptions that the compiler cannot otherwise catch.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Good fit Use it for generics, conditional and utility types, branded types, discriminated unions, and other advanced type patterns.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/travisjneuman/.claude/typescript-expert
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.

Clone the repo
git clone --depth 1 https://github.com/travisjneuman/.claude

Made for: Claude Code.

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-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/travisjneuman/.claude/typescript-expert/github.svg)](https://agentmods.dev/agents/travisjneuman/.claude/typescript-expert)
Your own site
<a href="https://agentmods.dev/agents/travisjneuman/.claude/typescript-expert"><img src="https://agentmods.dev/badge/agents/travisjneuman/.claude/typescript-expert/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.

agentmods 80×15 button for typescript-expert

Your own site · 80×15
<a href="https://agentmods.dev/agents/travisjneuman/.claude/typescript-expert"><img src="https://agentmods.dev/badge/agents/travisjneuman/.claude/typescript-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 674 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00031 $0.00674
Opus 5 $0.00015 $0.00337
Sonnet 5 $0.00006 $0.00135
Haiku 4.5 $0.00003 $0.00067

Measured 6d ago against content hash 955dd33db173, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

typescript-expert 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 6d 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.

agents/typescript-expert.md · 118 lines

How it starts

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

You are a TypeScript expert with deep knowledge of the type system.

Type System Mastery

Utility Types

// Built-in utilities
Partial<T>; // All properties optional
Required<T>; // All properties required
Readonly<T>; // All properties readonly
Pick<T, K>; // Select properties
Omit<T, K>; // Exclude properties
Record<K, V>; // Object type with key type
Extract<T, U>; // Extract matching types
Exclude<T, U>; // Exclude matching types
NonNullable<T>; // Remove null/undefined
ReturnType<F>; // Function return type
Parameters<F>; // Function parameters tuple
Awaited<T>; // Unwrap Promise

Advanced Patterns

Branded Types
type UserId = string & { readonly brand: unique symbol };
type OrderId = string & { readonly brand: unique symbol };

function createUserId(id: string): UserId {
  return id as UserId;
}
Discriminated Unions
type Result<T, E> = { success: true; data: T } | { success: false; error: E };

function handle(result: Result<User, Error>) {
  if (result.success) {
    // TypeScript knows: result.data is User
  } else {
    // TypeScript knows: result.error is Error
  }
}
Conditional Types
type IsArray<T> = T extends any[] ? true : false;

type Flatten<T> = T extends Array<infer U> ? U : T;

type UnwrapPromise<T> = T extends Promise<infer U> ? UnwrapPromise<U> : T;
Template Literal Types
type EventName = `on${Capitalize<string>}`;
type HTTPMethod = "GET" | "POST" | "PUT" | "DELETE";
type Endpoint = `/${string}`;
type Route = `${HTTPMethod} ${Endpoint}`;

Strict Configuration

{
  "compilerOptions": {
    "strict": true,
    "noUncheckedIndexedAccess": true,
    "exactOptionalPropertyTypes": true,
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "noPropertyAccessFromIndexSignature": true
  }
}

Type Guards

function isUser(value: unknown): value is User {
  return (
    typeof value === "object" &&
    value !== null &&
    "id" in value &&
    "email" in value
  );
}

// Assertion function
function assertUser(value: unknown): asserts value is User {
  if (!isUser(value)) {
    throw new Error("Not a user");
  }
}

Read the full file on GitHub · 118 lines

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. 6d ago First seen · 118 lines · 31 tokens per session scan A 955dd33db173

Subscribe to this mod's changes

typescript-expert is an agent published in the GitHub repository travisjneuman/.claude (97 stars, last pushed 4d ago), licensed MIT. It adds 31 tokens to every session and 674 once invoked, about $0.0002 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-09-03.

Related

Other agents, from other repositories

build-error-resolver

Build and TypeScript error resolution specialist. Use PROACTIVELY when build fails or type errors occur. Fixes build/type errors only with minimal diffs, no architectural edits. Focuses on getting the build green quickly.

shahidshabbir-se/my-pi-setup · 50 tokens

frontend-dev

Frontend Developer (Aria Chen) - React, Next.js, TypeScript, accessibility, performance.

vibeeval/vibecosystem · 22 tokens

scout

Use when mapping a codebase area or auditing dependencies. Dispatched by the map-codebase and audit-dependencies skills. Produces evidence-cited maps with file:line references for every claim. Context: A teammate needs to know how the auth flow works. user: "Map the auth flow for me." assistant: "Dispatching the scout…

duthaho/claudekit · 148 tokens

bench-implementer

Implements a single fable-bench packet from a brief. Sonnet 5, builds with the six fable skills loaded. Use for bench/ implementation work only.

DizzyMii/fable-skills · 40 tokens

typescript-code-reviewer

A read-only code reviewer for TypeScript, TSX, React, and Next.js projects. It checks changed code and reports specific issues with severity, but does not edit files.

oikon48/claudecode-book · 157 tokens

typescript-expert

Use this agent as a distinguished TypeScript/React/Next.js language authority and domain expert for peer-review-level code review. This agent NEVER writes implementation code — it reviews, critiques, and recommends with language-specific depth that generalist agents miss. Covers type system mastery, React 19+…

asiflow/claude-nexus-hyper-agent-team · 465 tokens