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/eliornl/rolemule/google-oauthgit clone --depth 1 https://github.com/eliornl/rolemuleWhat 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.01782 |
| Opus 5 | $0.00000 | $0.00891 |
| Sonnet 5 | $0.00000 | $0.00356 |
| Haiku 4.5 | $0.00000 | $0.00178 |
Grade A, and why
google-oauth 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 yesterday.
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 — 161 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Google OAuth Integration
Configuration
OAuth is opt-in — it activates only when both env vars are set:
GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-client-secret
Check at runtime:
settings.is_google_oauth_configured # bool property
OAuth Flow (3-step — never puts the JWT in a URL)
| Step | Endpoint | Who calls it |
|---|---|---|
| 1. Initiate | GET /api/v1/auth/google |
Browser |
| 2. Callback | GET /api/v1/auth/google/callback |
Google redirect |
| 3. Exchange | POST /api/v1/auth/oauth/exchange-code |
Frontend JS |
Step 1 — Initiate
- Validates
redirect_urlis a relative path only (starts with/, not//). - Generates a
secrets.token_urlsafe(32)CSRF state token. - Stores
{"redirect": safe_redirect}in Redis underoauth_state:{state}with 10-minute TTL. - Rejects the request (503) if Redis is unavailable — never sends OAuth traffic without a verifiable state.
Step 2 — Callback
- Atomically reads and deletes
oauth_state:{state}with a single RedisGETDELcall (requires Redis ≥ 6.2). If the key is absent or expired, redirects to/auth/login?error=invalid_state— never proceeds.- Do not split this into
GET+DELETE— a race condition would let two concurrent callbacks both pass validation with the same state code.
- Do not split this into
- Re-validates the
redirectpath from Redis (relative-only check). - Exchanges the Google code via
httpx.AsyncClient(timeout=httpx.Timeout(10.0)). Both the token exchange and user-info fetch must specify a timeout — without one the worker hangs indefinitely if Google is slow. - Creates or updates the
Userrecord (new user → create; returning user → update). - Issues a
_make_jwt(...)for the user. - Stores the JWT in Redis under
oauth_code:{exchange_code}with 30-second TTL. - Redirects to
{redirect_path}?code={exchange_code}— the JWT never appears in a URL.
Step 3 — Exchange
# Frontend calls this immediately after the OAuth redirect lands
POST /api/v1/auth/oauth/exchange-code
{"code": "<exchange_code_from_url>"}
# Response
{"access_token": "<jwt>", "token_type": "bearer"}
The exchange code is deleted from Redis on first use (one-time only). If the code is missing or expired the endpoint returns HTTP 400.
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.
- yesterday First seen · 161 lines · 0 tokens per session scan A 122700291b97
google-oauth is a cursor rule published in the GitHub repository eliornl/rolemule (37 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,782 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
cursorrules
Agent2 is a framework for building production AI agents with typed HTTP APIs. PydanticAI handles the agent loop. Agent2 handles everything else: API, auth, pause/resume, approvals, provider routing, knowledge search.
product-manager
Holistic product leader who owns the full product lifecycle — from discovery and strategy through roadmap, stakeholder alignment, go-to-market, and outcome measurement. Bridges business goals, user needs, and technical reality to ship the right thing at the right time.
api-tester
Expert API testing specialist focused on comprehensive API validation, performance testing, and quality assurance across all systems and third-party integrations.
developer-advocate
Expert developer advocate specializing in building developer communities, creating compelling technical content, optimizing developer experience (DX), and driving platform adoption through authentic engineering engagement. Bridges product and engineering teams with external developers.
architectural-and-structural-rules
The project follows a layered architecture with clear separation of concerns.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.