typescript-type-safety

typescript-type-safety is a cursor rule for Cursor from pr-pm/prpm. It costs 35 tokens per session (1,663 once invoked), scanned A, original, MIT.

A set of TypeScript rules for replacing unsafe `any` values with defined types, checked unknown values, and reusable type constraints.

In plain words
What is it for?
Use it when fixing TypeScript errors, removing `any`, typing function inputs and outputs, validating parsed data, or adding types for libraries.
Why use it?
It helps prevent type errors from being hidden until the program runs and makes external or unstructured data safer to handle.

Cursor rule for Cursor

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/pr-pm/prpm/typescript-type-safety
Clone the repo
git clone --depth 1 https://github.com/pr-pm/prpm

Made for: Cursor.

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-type-safety

README.md
[![agentmods](https://agentmods.dev/badge/rules/pr-pm/prpm/typescript-type-safety.svg)](https://agentmods.dev/rules/pr-pm/prpm/typescript-type-safety)
Your own site
<a href="https://agentmods.dev/rules/pr-pm/prpm/typescript-type-safety"><img src="https://agentmods.dev/badge/rules/pr-pm/prpm/typescript-type-safety.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,663 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin unknown 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.00035 $0.01663
Opus 5 $0.00017 $0.00831
Sonnet 5 $0.00007 $0.00333
Haiku 4.5 $0.00003 $0.00166

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

Security

Grade A, and why

typescript-type-safety 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 today.

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.

.cursor/rules/typescript-type-safety.mdc · 258 lines

How it starts

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

TypeScript Type Safety

Overview

Zero tolerance for any types. Every any is a runtime bug waiting to happen.

Replace any with proper types using interfaces, unknown with type guards, or generic constraints. Use @ts-expect-error with explanation only when absolutely necessary.

When to Use

Use when you see:

  • : any in function parameters or return types
  • as any type assertions
  • TypeScript errors you're tempted to ignore
  • External libraries without proper types
  • Catch blocks with implicit any

Don't use for:

  • Already properly typed code
  • Third-party .d.ts files (contribute upstream instead)

Type Safety Hierarchy

Prefer in this order:

  1. Explicit interface/type definition
  2. Generic type parameters with constraints
  3. Union types
  4. unknown (with type guards)
  5. never (for impossible states)

Never use: any

Quick Reference

Pattern Bad Good
Error handling catch (error: any) catch (error) { if (error instanceof Error) ... }
Unknown data JSON.parse(str) as any const data = JSON.parse(str); if (isValid(data)) ...
Type assertions (request as any).user (request as AuthRequest).user
Double casting return data as unknown as Type Align interfaces instead: make types compatible
External libs const server = fastify() as any declare module 'fastify' { ... }
Generics function process(data: any) function process<T extends Record<string, unknown>>(data: T)

Implementation

Error Handling

// ❌ BAD
try {
  await operation();
} catch (error: any) {
  console.error(error.message);
}

// ✅ GOOD - Use unknown and type guard
try {
  await operation();
} catch (error) {
  if (error instanceof Error) {
    console.error(error.message);
  } else {
    console.error('Unknown error:', String(error));
  }
}

// ✅ BETTER - Helper function
function toError(error: unknown): Error {
  if (error instanceof Error) return error;
  return new Error(String(error));
}

try {
  await operation();
} catch (error) {
  const err = toError(error);
  console.error(err.message);
}

Read the full file on GitHub · 258 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. today First seen · 258 lines · 35 tokens per session scan A 2ca3e5f315c1

Subscribe to this mod's changes

typescript-type-safety is a cursor rule published in the GitHub repository pr-pm/prpm (120 stars, last pushed 2mo ago), licensed MIT. It adds 35 tokens to every session and 1,663 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.