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/gogit 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/go)<a href="https://agentmods.dev/rules/inboxpraveen/minimize-cursor-cost/go"><img src="https://agentmods.dev/badge/rules/inboxpraveen/minimize-cursor-cost/go.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.1 | $0.00000 | $0.00354 |
| Opus 5 | $0.00000 | $0.00177 |
| Sonnet 5 | $0.00000 | $0.00071 |
| Haiku 4.5 | $0.00000 | $0.00035 |
Grade A, and why
go 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.
What it actually says
Go-Specific Rules
Style
- Match existing style: gofmt is assumed; never reformat unrelated lines.
- Match existing error-handling pattern:
errors.Newvsfmt.Errorfvserrors.Wrap. Don't mix. - Match existing logger (e.g.,
log/slog,zap,logrus). Don't introduce a new one. - Don't add
// Package X ...doc comments unless the file already has them.
Output
- Single-function edit → show only that function.
- Method on a struct → show only the method, not the struct definition.
- Use
// ... rest of file unchangedto skip.
Imports
- Show only the new import lines being added.
- Group: stdlib, external, internal — matching existing grouping.
Errors & Returns
- Always return an error from functions that can fail; do not panic in library code.
- Match the existing convention for sentinel errors vs typed errors.
- Don't wrap errors more than once in the same call site.
Concurrency
- Don't introduce goroutines or channels unless asked.
- Don't add
sync.Mutexto existing code unless the bug is a race. - Always pair
go func()with a way to wait/cancel — never fire-and-forget in library code.
Never
- Don't add
init()unless asked. - Don't add interfaces speculatively. Define an interface only at the consumer.
- Don't change
any↔interface{}style unless the file is consistent the other way. - Don't add struct tags beyond what the existing code uses.
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 · 39 lines · 0 tokens per session scan A 751db7f77ab5
go is a cursor rule published in the GitHub repository inboxpraveen/Minimize-Cursor-Cost (7 stars, last pushed 20d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 354 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
go
Go patterns: error wrapping, goroutines, interfaces.
go-backend
Go Backend Execution Agent.
golang
golang 编码规则和最佳实践。.
go
Cursor rule "go" from tjamet/har-mcp, covering go development rules for cursor, project structure, build and run commands, code style and coding.
go-backend-scalability-cursorrules-prompt-file
Cursor rules for Go development with backend scalability.
go-servemux-rest-api-cursorrules-prompt-file
Cursor rules for Go development with ServeMux REST API integration.