go

go is a cursor rule for Cursor from inboxpraveen/Minimize-Cursor-Cost. It costs 0 tokens per session (354 once invoked), scanned A, original, Apache-2.0.

A set of rules for editing Go code, a programming language designed for compiled applications and services. It covers formatting, errors, logging, imports, and safe use of concurrency such as goroutines and channels.

In plain words
What is it for?
Use it when changing Go functions or methods, adding imports, handling errors, working with logs, or reviewing concurrent code.
Why use it?
It keeps changes consistent with the existing Go project and avoids introducing new logging or concurrency patterns without need. It also encourages returning errors instead of crashing library code.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Install

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.

agentmods
npx agentmods add rules/inboxpraveen/minimize-cursor-cost/go
Clone the repo
git clone --depth 1 https://github.com/inboxpraveen/Minimize-Cursor-Cost

Made for: Cursor.

Wrote 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.

agentmods badge for go

README.md
[![agentmods](https://agentmods.dev/badge/rules/inboxpraveen/minimize-cursor-cost/go.svg)](https://agentmods.dev/rules/inboxpraveen/minimize-cursor-cost/go)
Your own site
<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>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 354 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash 751db7f77ab5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

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.

lean-cursor/.cursor/rules/go.mdc · 39 lines

What it actually says

Go-Specific Rules

Style

  • Match existing style: gofmt is assumed; never reformat unrelated lines.
  • Match existing error-handling pattern: errors.New vs fmt.Errorf vs errors.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 unchanged to 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.Mutex to 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 anyinterface{} style unless the file is consistent the other way.
  • Don't add struct tags beyond what the existing code uses.
Changes

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.

  1. 5d ago First seen · 39 lines · 0 tokens per session scan A 751db7f77ab5

Subscribe to this mod's changes

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.