typescript

A set of rules for using TypeScript with strict type checking, reusable generics, and explicit ways to represent different states. TypeScript adds type information to JavaScript code.

In plain words
What is it for?
Use it when designing interfaces and type aliases, writing generic utilities, modelling success and error states, configuring strict mode, and reviewing TypeScript code.
Why use it?
It catches more mistakes before the program runs and avoids unsafe values such as unrestricted any types.

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/cursorrules-collection/typescript
Clone the repo
git clone --depth 1 https://github.com/nedcodes-ok/cursorrules-collection
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 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.00624 $0.00624
Opus 5 $0.00312 $0.00312
Sonnet 5 $0.00125 $0.00125
Haiku 4.5 $0.00062 $0.00062

Measured 2d ago 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 2d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

rules-mdc/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. 2d ago 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/cursorrules-collection (37 stars, last pushed 6mo 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. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.