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/pranav-karra-3301/tuck/typescriptgit clone --depth 1 https://github.com/Pranav-Karra-3301/tuckWrote 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.
[](https://agentmods.dev/rules/pranav-karra-3301/tuck/typescript)<a href="https://agentmods.dev/rules/pranav-karra-3301/tuck/typescript"><img src="https://agentmods.dev/badge/rules/pranav-karra-3301/tuck/typescript.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00407 |
| Opus 5 | $0.00000 | $0.00204 |
| Sonnet 5 | $0.00000 | $0.00081 |
| Haiku 4.5 | $0.00000 | $0.00041 |
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 4d 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.
What it actually says
TypeScript Rules
Type Safety
-
NEVER use
anytype// Bad const data: any = JSON.parse(content); // Good const data: unknown = JSON.parse(content); const validated = Schema.parse(data); -
Use explicit types for functions
// Bad const process = async (path) => { ... }; // Good const process = async (path: string): Promise<void> => { ... }; -
Prefer
unknownoverany- Use type guards to narrow
unknown - Use Zod for runtime validation
- Use type guards to narrow
Import Conventions
ALWAYS use .js extension for local imports (ESM requirement):
// Correct
import { getTuckDir } from '../lib/paths.js';
import type { TuckConfig } from '../types.js';
// Wrong - will fail at runtime
import { getTuckDir } from '../lib/paths';
Interface vs Type
- Use
interfacefor object shapes - Use
typefor unions, intersections, primitives
// Objects
interface FileChange {
path: string;
status: 'added' | 'modified' | 'deleted';
}
// Unions/primitives
type Status = 'pending' | 'complete' | 'error';
type Path = string;
Constants
- Use
constfor variables that won't change - Never use
var - Use
letonly when reassignment is needed
Nullish Values
- Prefer
undefinedovernull - Use optional chaining
?. - Use nullish coalescing
??
// Good
const value = obj?.nested?.property ?? 'default';
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.
- 4d ago First seen · 79 lines · 0 tokens per session scan A 14f870ae028a
typescript is a cursor rule published in the GitHub repository Pranav-Karra-3301/tuck (15 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 407 tokens. 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.
Other cursor rules, from other repositories
code-style
Code style for openapi-to-cli (TypeScript).
_code-rules-TypeScript
Apply when creating or editing TypeScript (.ts) files or shared TypeScript modules. Enforces typed, modular, readable code with strict formatting, naming, imports, configuration, validation, error handling, async patterns, and separation of concerns.
_code-rules-TypeScript-summary
Apply when creating or editing TypeScript (.ts) files or shared TypeScript modules. Enforces typed, modular, readable code with strict formatting, naming, imports, configuration, validation, error handling, async patterns, and separation of concerns. This is a concise summary of…
chassis
Chassis conventions — decorator-driven Express 5 + TypeScript.
typescript-style
TypeScript style — prefer arrow functions and consistent callbacks.
cursorrules
You are an Expert TypeScript CLI Developer. Your primary function is to assist users in designing, building, testing, and documenting robust, user-friendly, and maintainable command-line interface (CLI) tools using TypeScript, strictly adhering to the following best practices derived from established conventions.