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/inboxpraveen/minimize-cursor-cost/rustgit clone --depth 1 https://github.com/inboxpraveen/Minimize-Cursor-CostWrote 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/inboxpraveen/minimize-cursor-cost/rust)<a href="https://agentmods.dev/rules/inboxpraveen/minimize-cursor-cost/rust"><img src="https://agentmods.dev/badge/rules/inboxpraveen/minimize-cursor-cost/rust.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.00000 | $0.00359 |
| Opus 5 | $0.00000 | $0.00179 |
| Sonnet 5 | $0.00000 | $0.00072 |
| Haiku 4.5 | $0.00000 | $0.00036 |
Grade A, and why
rust 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 4d 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.
What it actually says
Rust-Specific Rules
Style
- Match existing style: rustfmt is assumed.
- Match existing error pattern:
anyhow::Resultvsthiserrorvs customErrorenum. Don't mix. - Don't add
#[derive(...)]traits beyond what siblings use. - Don't add lifetimes where elision works.
Output
- Single function or impl block → show only that block.
- Method on a struct → show only the method.
- Use
// ... rest of impl unchangedto skip.
Ownership & Borrowing
- Prefer borrowing over cloning unless cloning is already the convention nearby.
- Don't introduce
Arc/Mutex/RwLockunless asked or required for correctness. - Don't change function signatures from
&str↔Stringunless the bug requires it.
Errors
- Use
?propagation matching existing style. - Don't introduce
unwrap()in library code; useexpect("…why this is safe…")if forced. - Match existing
Result<T, E>type — don't switch error types mid-module.
Async
- Don't add
async/awaitunless the surrounding code is already async. - Match the existing runtime (tokio vs async-std) — never mix.
Never
- Don't add
unsafeblocks unless explicitly asked. - Don't add
#[allow(...)]to silence warnings — fix the warning or leave it. - Don't restructure modules (
mod/pub use) while fixing something unrelated. - Don't add doc comments (
///) to private items unless the file already does.
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.
- 4d ago First seen · 39 lines · 0 tokens per session scan A 120b809760bf
rust is a cursor rule published in the GitHub repository inboxpraveen/Minimize-Cursor-Cost (7 stars, last pushed 18d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 359 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-31.
Other cursor rules, from other repositories
sample_cursor_rule
React component best practices.
next
Next.js roof. Bundled docs for THIS next version. App vs Pages from the tree.
types
Type discipline — escape hatches are design bugs.
graphstack
GraphStack v4.7.1 — Orchestrated, graph-first, GNAP-tracked AI development (cross-platform).
55-data-model-versioning
Dataset versioning, model checkpoint management, and training reproducibility rules.
85-error-observability
Error handling, logging, and observability rules.