typescript

typescript is a cursor rule for Cursor from gabriel-romero-poza/synapse-mcp. It costs 0 tokens per session (239 once invoked), scanned A, original, MIT.

A set of TypeScript and Node.js coding rules for the Synapse project. It covers strict typing, modern module syntax, asynchronous code, error handling, file paths, and package management.

In plain words
What is it for?
Use it to guide TypeScript changes, especially error handling, imports and exports, asynchronous operations, cross-platform paths, and pnpm-based dependency updates.
Why use it?
It reduces inconsistent code and common mistakes such as ignored errors, unsafe file paths, and dependencies managed with the wrong package tool.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Good fit Use it to guide TypeScript changes, especially error handling, imports and exports, asynchronous operations, cross-platform paths, and pnpm-based dependency updates.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/gabriel-romero-poza/synapse-mcp/typescript
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.

Clone the repo
git clone --depth 1 https://github.com/gabriel-romero-poza/synapse-mcp

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

README.md
[![agentmods](https://agentmods.dev/badge/rules/gabriel-romero-poza/synapse-mcp/typescript.svg)](https://agentmods.dev/rules/gabriel-romero-poza/synapse-mcp/typescript)
Your own site
<a href="https://agentmods.dev/rules/gabriel-romero-poza/synapse-mcp/typescript"><img src="https://agentmods.dev/badge/rules/gabriel-romero-poza/synapse-mcp/typescript.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 239 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00000 $0.00239
Opus 5 $0.00000 $0.00120
Sonnet 5 $0.00000 $0.00048
Haiku 4.5 $0.00000 $0.00024

Measured 7d ago against content hash 4b72c8bee1cf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, 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 7d 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.

.cursor/rules/typescript.mdc · 33 lines

What it actually says

TypeScript standards

  • Strict: Respect tsconfig.json (strict mode). No any without a brief comment.
  • Module: ESM only ("type": "module"). Use import/export.
  • Async: Prefer async/await; handle errors (no empty catch).
  • Paths: Use path.join() or path.resolve() for file paths so behavior is correct on Windows and Unix.
  • Agnostic: No product-specific logic (no hardcoded app names, domains, or business rules in core).

Error handling:

// ❌ BAD
try {
  await doSomething();
} catch (e) {}

// ✅ GOOD
try {
  await doSomething();
} catch (err) {
  console.error('[synapse] failed to load docs:', err);
  throw err; // or return a safe default
}

Dependencies: Use pnpm. Do not add npm-specific files (e.g. package-lock.json).

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. 7d ago First seen · 33 lines · 0 tokens per session scan A 4b72c8bee1cf

Subscribe to this mod's changes

typescript is a cursor rule published in the GitHub repository gabriel-romero-poza/synapse-mcp (0 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 239 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-31.