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 skills/sumonmselim/agentguard/gonpx skills add SumonMSelim/agentguard --skill gogit clone --depth 1 https://github.com/SumonMSelim/agentguardWrote 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/skills/sumonmselim/agentguard/go)<a href="https://agentmods.dev/skills/sumonmselim/agentguard/go"><img src="https://agentmods.dev/badge/skills/sumonmselim/agentguard/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 | $0.00034 | $0.01691 |
| Opus 5 | $0.00017 | $0.00846 |
| Sonnet 5 | $0.00007 | $0.00338 |
| Haiku 4.5 | $0.00003 | $0.00169 |
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.
How it starts
The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Go
Project structure
go.modat repo root. Module path matches repo URL:module github.com/org/repo- Pin Go version in
go.mod:go 1.25. Toolchain auto-selects viatoolchaindirective - Tool dependencies via
go.modtooldirectives (1.24+).go get -tool golang.org/x/tools/cmd/stringer - Standard layout:
cmd/for binaries,internal/for private packages,pkg/only if genuinely public - No circular imports.
internal/enforces package boundaries go.sumcommitted. Never manually edited
Errors
- Errors are values. Return
erroras last return value - Wrap with context:
fmt.Errorf("op failed: %w", err). Always%w, not%v, when caller may inspect - Sentinel errors:
var ErrNotFound = errors.New("not found"). Useerrors.Isto check, not== - Custom error types: implement
Error() string. Useerrors.Asto extract - Never ignore errors.
_ = f()only with explicit justification in comment - No
panicin library code. Reserve for truly unrecoverable states inmain - Check errors immediately after call. No deferred error checks buried in logic
Interfaces
- Define interfaces at point of use (consumer), not point of implementation
- Small interfaces. Prefer single-method interfaces:
io.Reader,io.Writer - Accept interfaces, return concrete types
- No interface for a single implementation unless testing or future extensibility is clear
interface{}→any(Go 1.18+). Useanyeverywhere- Embed interfaces to compose:
type ReadWriter interface { Reader; Writer }
Generics
- Use generics to eliminate identical logic across types. Not for premature abstraction
- Constrain tightly:
[T int | int64]over[T any]when type matters comparableconstraint for map keys and equality checksgolang.org/x/exp/slicesandmapspatterns now in stdlib (slices,mapspackages, 1.21+)- Range over func iterators (1.22+): use
iter.Seqanditer.Seq2for custom iterables - Generic type aliases fully supported (1.24+):
type Set[T comparable] = map[T]struct{}
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 · 106 lines · 0 tokens per session scan A 2cdfc837d672
go is a skill published in the GitHub repository SumonMSelim/agentguard (56 stars, last pushed 1mo ago), licensed MIT. It adds 34 tokens to every session and 1,691 once invoked, about $0.0002 per session on Opus 5. 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 skills, from other repositories
go-idioms
写 Go 时使用。地道 Go:错误处理、并发、接口的正确姿势。.
ast-grep
Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for…
gen-test
Generate idiomatic tests for Go packages and handlers in the Meshery project.
golang-testing
Production-ready Golang tests — table-driven tests, testify suites and mocks, parallel tests, fuzzing, fixtures, goroutine leak detection with goleak, snapshot testing, code coverage, integration tests, idiomatic test naming. Use when writing or reviewing Go tests, choosing a testing approach, setting up Go test CI…
ax-go-agent-optimize
Use when writing Go code with github.com/ax-llm/ax/packages/go for agent optimization, verified agent-playbook evolution, evaluators, judges, optimizer artifacts, BootstrapFewShot, and GEPA.
gmeasure
Benchmark and measure Go code with gmeasure — an Experiment groups named Measurements, recorded via RecordValue/RecordDuration/MeasureDuration or repeated Sample/SampleValue/SampleDuration with SamplingConfig, timed inline with a Stopwatch, summarized through GetStats/Stats (StatMin/Max/Mean/Median/StdDev…