typescript

A set of strict TypeScript rules for explicit types, reusable generics, safer unknown values, state representations, and compiler checks.

In plain words
What is it for?
Use it when defining public functions, object shapes, reusable utilities, result states, null-value conventions, and strict tsconfig settings.
Why use it?
It catches more mistakes before the program runs and avoids unsafe assumptions hidden by any or unchecked type assertions.

Cursor rule

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 rules/nedcodes-ok/cursor-doctor/typescript
Clone the repo
git clone --depth 1 https://github.com/nedcodes-ok/cursor-doctor
Per session 624 This file is loaded in full into every session.
When invoked 624 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00624 $0.00624
Opus 5 $0.00312 $0.00312
Sonnet 5 $0.00125 $0.00125
Haiku 4.5 $0.00062 $0.00062

Measured yesterday against content hash 6e84124e04aa, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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

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.

Origin

This is a copy

100% identical to typescript — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

pro-kit/templates/languages/typescript.mdc · 50 lines

How it starts

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

TypeScript Rules

Types

  • Define explicit return types for public/exported functions. Inferred is fine for private/internal
  • Use interfaces for object shapes that may be extended. Type aliases for unions/intersections/utility types
  • Prefer unknown over any. Narrow with type guards, typeof, or instanceof before use
  • Use const assertions for literal types (as const) and readonly tuples
  • Use discriminated unions for state machines and result types (type: 'success' | 'error')
  • Avoid type assertions (as Type) except at serialization boundaries. Prefer type guards
  • Null vs undefined: pick one convention for "no value" and stick with it project-wide

Generics

  • Use generics for reusable utilities, not for single-use functions
  • Name generic params descriptively: TItem, TResponse over T, U when multiple
  • Constrain generics with extends when possible: <T extends Record<string, unknown>>
  • Avoid nested generics more than 2 levels deep. Extract intermediate types
  • Default generic params for common cases: <T = string>

Strict Mode

  • Enable strict: true in tsconfig. No exceptions, no partial strict
  • Enable noUncheckedIndexedAccess for safer array/object access
  • Never use @ts-ignore. Use @ts-expect-error with a comment explaining why
  • Enable exactOptionalPropertyTypes to distinguish undefined from missing
  • Enable verbatimModuleSyntax for explicit import/export type annotations

Patterns

  • Use satisfies operator to validate types without widening
  • Use Readonly and ReadonlyArray for data that shouldn't be mutated after creation
  • Prefer Record<K, V> over { [key: string]: V } for index signatures
  • Use Extract/Exclude/Pick/Omit for type transformations. Avoid redefining existing shapes
  • Branded types for IDs and domain values: type UserId = string & { readonly __brand: 'UserId' }
  • Result types over thrown exceptions for expected failures: type Result<T> = { ok: true; data: T } | { ok: false; error: Error }
  • Zod or valibot for runtime validation at API boundaries. Infer types from schemas

Read the full file on GitHub · 50 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. yesterday First seen · 50 lines · 624 tokens per session scan A 6e84124e04aa

Subscribe to this mod's changes

typescript is a cursor rule published in the GitHub repository nedcodes-ok/cursor-doctor (9 stars, last pushed 5mo ago), licensed MIT. It adds 624 tokens to every session, about $0.0031 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to typescript, differing in 0 lines, and is treated as a copy.