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/quinnjr/google-mcp/typescriptgit clone --depth 1 https://github.com/quinnjr/google-mcpWhat 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.01149 |
| Opus 5 | $0.00000 | $0.00575 |
| Sonnet 5 | $0.00000 | $0.00230 |
| Haiku 4.5 | $0.00000 | $0.00115 |
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.
How it starts
The opening of the file, as written. The whole thing — 208 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TypeScript Best Practices
Follow these conventions when writing TypeScript code in this project.
Type Safety
-
Avoid
any- Useunknownfor truly unknown types, then narrow with type guards// Bad function process(data: any) { ... } // Good function process(data: unknown) { if (typeof data === 'string') { ... } } -
Prefer explicit return types - Always declare return types on functions and methods
// Bad function getData() { return { id: 1 }; } // Good function getData(): { id: number } { return { id: 1 }; } -
Use strict null checks - Handle
nullandundefinedexplicitly// Bad const name = user.name.toUpperCase(); // Good const name = user.name?.toUpperCase() ?? 'Unknown';
Access Modifiers
All class members must have explicit access modifiers:
class MyService {
private readonly client: Client;
constructor(client: Client) {
this.client = client;
}
public async getData(): Promise<Data> { ... }
private validateInput(input: string): boolean { ... }
}
- Use
privatefor internal implementation details - Use
publicfor API surface - Use
protectedfor inheritance hierarchies - Use
readonlyfor immutable properties
Naming Conventions
| Type | Convention | Example |
|---|---|---|
| Classes | PascalCase | UserService |
| Interfaces | PascalCase | UserConfig |
| Type aliases | PascalCase | UserId |
| Enums | PascalCase | UserRole |
| Enum members | UPPER_CASE or PascalCase | ADMIN or Admin |
| Functions | camelCase | getUserById |
| Variables | camelCase | userCount |
| Constants | UPPER_SNAKE_CASE | MAX_RETRIES |
| Private members | camelCase (no underscore prefix) | private data |
Type Imports
Use type-only imports when importing types:
// Bad
import { User, UserService } from './user';
// Good
import { type User, UserService } from './user';
// or
import type { User } from './user';
import { UserService } from './user';
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.
- 2d ago First seen · 208 lines · 0 tokens per session scan A a1906631f81f
typescript is a cursor rule published in the GitHub repository quinnjr/google-mcp (11 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,149 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
archcore-files
Enforce MCP-only operations when working with .archcore/ files.
dev_workflow
Guide for using Taskmaster to manage task-driven development workflows.
execution
Repository execution and verification commands.
cosmosmith
Cosmosmith project rules adapter.
no-crux-frontmatter
This is a regular rule file that does not have crux: true in its frontmatter. It should be ignored by the CRUX compression hook.
fix-issue
Implement a fix following the human-thinking loop — understand the root cause, plan the minimal change, implement, verify the problem is actually gone.