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.
npx agentmods add rules/nedcodes-ok/cursor-doctor/typescriptgit clone --depth 1 https://github.com/nedcodes-ok/cursor-doctorWhat 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.
| Model | Per session | Once 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 |
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.
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.
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
extendswhen 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
satisfiesoperator 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
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.
- yesterday First seen · 50 lines · 624 tokens per session scan A 6e84124e04aa
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.
Other cursor rules, from other repositories
angular
Angular: signals, standalone components, RxJS patterns.
django
Django: models, views, ORM best practices.
java
Modern Java: records, sealed classes, streams, virtual threads.
javascript
Modern JavaScript: ES2023+, async patterns, common traps.
rust
Rust patterns: ownership, Result types, iterators.
accessibility
Accessibility: semantic HTML, ARIA, keyboard navigation, testing.