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/brighton-labs/railguard-cursor-coding/fastapi-secure-railguard-availablegit clone --depth 1 https://github.com/brighton-labs/railguard-cursor-codingWrote 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/brighton-labs/railguard-cursor-coding/fastapi-secure-railguard-available)<a href="https://agentmods.dev/rules/brighton-labs/railguard-cursor-coding/fastapi-secure-railguard-available"><img src="https://agentmods.dev/badge/rules/brighton-labs/railguard-cursor-coding/fastapi-secure-railguard-available.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.00727 | $0.00727 |
| Opus 5 | $0.00364 | $0.00364 |
| Sonnet 5 | $0.00145 | $0.00145 |
| Haiku 4.5 | $0.00073 | $0.00073 |
Grade A, and why
fastapi-secure-railguard-available 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 5d 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 — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Overview
This rule provides secure-by-default coding conventions for FastAPI projects, including:
- API design and route handling
- Auth/session control
- Secure handling of path/query/body input
- Output formatting and response control
- Logging, dependency injection, and context reasoning
Input validation (e.g. pydantic, zod-like schemas, sanitization, type safety) is enforced globally via:
.cursor/rules/railguard-input-validation.mdc
(This rule uses the RAILGUARD Framework for reflective, behavioral AI reasoning.)
API Route Design
- Use explicit HTTP methods (
@app.post,@app.get, etc.) - Always return structured responses using
JSONResponse,Response, or typed Pydantic models - Avoid wildcard
@app.route("*")routes
Authentication & Tokens
- Never handle JWT tokens, secrets, or password checks inside path-level routes
- Delegate to service layers or secure utility functions
- Use OAuth2PasswordBearer, not raw
Authorizationheader parsing - Ensure password hashing uses
bcryptorargon2; never store plaintext
Request Handling
- Avoid using untyped
request: Requestas the only parameter — instead use structured Pydantic models - Do not parse
.form(),.json()manually unless necessary — FastAPI handles this securely by default - Always use dependency injection for DB access, background jobs, and auth checks (e.g.,
Depends(...))
Response Handling
- Avoid returning raw dictionaries or untyped JSON
- Ensure all API responses are typed, even in
async defroutes - Use exception handlers (e.g.
@app.exception_handler(...)) to manage untrusted input or auth failures
Logging & Observability
- Use the
loggingmodule, notprint() - Mask sensitive fields in logs (passwords, tokens, API keys)
- Do not log raw request bodies unless explicitly scrubbed
Security Add-ons
- Set security headers via middleware (e.g.
X-Frame-Options,X-Content-Type-Options) - Apply rate limiting for public-facing endpoints
- Use CORS properly — restrict allowed origins to production domains
- Avoid
eval,exec,pickle.load()unless required and sandboxed
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.
- 5d ago First seen · 103 lines · 727 tokens per session scan A 42d30818a386
fastapi-secure-railguard-available is a cursor rule published in the GitHub repository brighton-labs/railguard-cursor-coding (13 stars, last pushed 1y ago), licensed MIT. It adds 727 tokens to every session, about $0.0036 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
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
cli-error-handling
CLI command error handling patterns.
family-instance-domain-actions
Family instance domain action implementation patterns.
prefer-assertions-over-defensive-checks
Prefer assertions over defensive checks when data is guaranteed to be valid.
prefer-direct-imports-over-module-mocks
Prefer extracting a testable core over vi.mock / vi.resetModules when unit tests need to reach production logic entangled with config, env, or singletons.