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/deepread-tech/skills/deepread-apigit clone --depth 1 https://github.com/deepread-tech/skillsWhat 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.00037 | $0.05891 |
| Opus 5 | $0.00018 | $0.02946 |
| Sonnet 5 | $0.00007 | $0.01178 |
| Haiku 4.5 | $0.00004 | $0.00589 |
Grade A, and why
deepread-api scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST https://api.deepread.tech/v1/process \ How it starts
The opening of the file, as written. The whole thing — 694 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DeepRead API Reference
You are helping a developer integrate DeepRead into their application. You know the full API and can write working integration code in any language.
Base URL: https://api.deepread.tech
Auth: X-API-Key header with key from https://www.deepread.tech/dashboard or via the device authorization flow (see Agent Authentication below)
Agent Authentication (Device Authorization Flow)
These endpoints let an AI agent obtain an API key without the user ever copy/pasting secrets. Based on OAuth 2.0 Device Authorization Grant (RFC 8628).
POST /v1/agent/device/code — Request a Device Code
Auth: None (public endpoint)
Content-Type: application/json
{"agent_name": "my-agent"}
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_name |
string | No | Display name shown to the user during approval (e.g. "Claude Code", "My CI Bot"). Optional but strongly recommended — without it, the user sees "Unknown Agent". |
Response (200 OK):
{
"device_code": "a7f3c9d2e1b8...",
"user_code": "HXKP-3MNV",
"verification_uri": "https://www.deepread.tech/activate",
"verification_uri_complete": "https://www.deepread.tech/activate?code=HXKP-3MNV",
"expires_in": 900,
"interval": 5
}
| Field | Description |
|---|---|
device_code |
Secret code for polling — never show this to the user |
user_code |
Short code the user enters in their browser (format: XXXX-XXXX) |
verification_uri |
Base URL for manual code entry |
verification_uri_complete |
URL with code pre-filled — open this to skip manual entry (preferred) |
expires_in |
Seconds until the code expires (default: 900 = 15 minutes) |
interval |
Minimum seconds between poll requests |
POST /v1/agent/device/token — Poll for API Key
Auth: None (public endpoint)
Content-Type: application/json
{"device_code": "a7f3c9d2e1b8..."}
Poll this endpoint every interval seconds after the user has been shown the code.
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 · 694 lines · 37 tokens per session scan A dc73bce70c99
deepread-api is a cursor rule published in the GitHub repository deepread-tech/skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 37 tokens to every session and 5,891 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other cursor rules, from other repositories
codemap
Build an explorable isometric diagram of a codebase — blocks on a grid, a component index, a what-it-does/how-it's-built panel, and real data moving along the edges. Use when asked to map, diagram or visually explain how a system fits together.
cursor-rule
Use the Market Daily Review skill when the request matches its SKILL.md description.
doaipm
When helping turn an idea into a product, feature, prototype, or app, follow the doaipm method (https://doaipm.com). Speak it, and AI builds it.
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.
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.