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/sanjeed5/awesome-cursor-rules-mdc/angulargit clone --depth 1 https://github.com/sanjeed5/awesome-cursor-rules-mdcWhat 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.02444 | $0.02444 |
| Opus 5 | $0.01222 | $0.01222 |
| Sonnet 5 | $0.00489 | $0.00489 |
| Haiku 4.5 | $0.00244 | $0.00244 |
Grade A, and why
angular 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 — 373 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Angular Best Practices
This guide outlines the definitive best practices for Angular development, ensuring consistency, maintainability, and optimal performance. Adhere to these rules strictly.
1. Code Organization and Structure
1.1 One Concept Per File (SRP)
Rule: Each file must contain a single Angular concept (e.g., one component, one directive, one pipe, one service, one interface).
Explanation: This enforces the Single Responsibility Principle (SRP), improving modularity, readability, and testability. Exceptions are rare and only for tightly coupled, non-exported elements.
❌ BAD:
// user.model-and-service.ts
export interface User { id: string; name: string; }
@Injectable({ providedIn: 'root' })
export class UserService {
// ... fetches users
}
✅ GOOD:
// user.model.ts
export interface User { id: string; name: string; }
// user.service.ts
@Injectable({ providedIn: 'root' })
export class UserService {
// ... fetches users
}
1.2 Consistent Naming Conventions
Rule: Follow kebab-case for file names (feature-name.type.ts) and PascalCase for class names. Use standard type suffixes.
Explanation: Consistent naming makes files easy to locate and understand at a glance.
❌ BAD:
// MyUserList.component.ts
export class UserListComp { /* ... */ }
// authservice.ts
export class AuthenticationService { /* ... */ }
✅ GOOD:
// user-list.component.ts
export class UserListComponent { /* ... */ }
// auth.service.ts
export class AuthService { /* ... */ }
2. Component Architecture
2.1 Standalone Components by Default
Rule: Always create standalone components, directives, and pipes. Avoid NgModules for new features unless strictly necessary for legacy integration or specific library patterns.
Explanation: Standalone components simplify the Angular mental model, reduce boilerplate, and improve tree-shaking.
❌ BAD:
// app.module.ts
@NgModule({
declarations: [MyComponent],
imports: [CommonModule],
// ...
})
export class AppModule { }
// my.component.ts
@Component({
selector: 'app-my',
template: `<p>My Component</p>`,
styleUrls: ['./my.component.css'],
})
export class MyComponent { }
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 · 373 lines · 0 tokens per session scan A 99ba2c2891bb
angular is a cursor rule published in the GitHub repository sanjeed5/awesome-cursor-rules-mdc (3,570 stars, last pushed 3mo ago), licensed CC0-1.0. It adds 2,444 tokens to every session, about $0.0122 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-08-30.
Other cursor rules, from other repositories
as-contract-cast-smell
// ❌ WRONG — bypasses the family ContractSerializer seam const contract = JSON.parse(raw) as Contract; const contract = JSON.parse(raw) as Contract .
no-bare-casts
No bare as casts in production TypeScript. Use blindCast (value) from @internal/utils/casts as the auditable escape hatch, castAs (value) for declarative-only assertions, or rewrite to eliminate the cast. as const is exempt. Test files are exempt.
no-barrel-files
Avoid barrel files and unnecessary re-exports.
generic-parameters
Generic parameter defaults (avoid pointless defaults).
object-hasown
Use Object.hasOwn() instead of hasOwnProperty().
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.