go-standards-audit

go-standards-audit is a skill for Claude Code, Codex from gopherguides/gopher-ai. It costs 65 tokens per session (1,298 once invoked), scanned A, original, MIT.

A standards review for Go projects that checks documentation, concurrency code, dependencies, and project structure against Gopher Guides’ standards. It includes checking documentation comments for exported Go names.

In plain words
What is it for?
Reviewing Go project structure, exported-code documentation, concurrency patterns, dependency choices, and compliance with the stated Gopher Guides standards.
Why use it?
It gives a project-specific checklist for consistency and maintainability beyond basic syntax checking. Local tools can provide the analysis, with optional API-based insights when configured.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Reviewing Go project structure, exported-code documentation, concurrency patterns, dependency choices, and compliance with the stated Gopher Guides standards.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gopherguides/gopher-ai/go-standards-audit
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.

Any agent
npx skills add gopherguides/gopher-ai --skill go-standards-audit
Clone the repo
git clone --depth 1 https://github.com/gopherguides/gopher-ai

Made for: Claude Code, Codex.

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-standards-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/gopherguides/gopher-ai/go-standards-audit/github.svg)](https://agentmods.dev/skills/gopherguides/gopher-ai/go-standards-audit)
Your own site
<a href="https://agentmods.dev/skills/gopherguides/gopher-ai/go-standards-audit"><img src="https://agentmods.dev/badge/skills/gopherguides/gopher-ai/go-standards-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for go-standards-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/gopherguides/gopher-ai/go-standards-audit"><img src="https://agentmods.dev/badge/skills/gopherguides/gopher-ai/go-standards-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,298 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00065 $0.01298
Opus 5 $0.00032 $0.00649
Sonnet 5 $0.00013 $0.00260
Haiku 4.5 $0.00006 $0.00130

Measured 8d ago against content hash bc7154bb4775, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

go-standards-audit 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -H "Authorization: Bearer $GOPHER_GUIDES_API_KEY" \
agent-skills/skills/go-standards-audit/SKILL.md · 184 lines

How it starts

The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Go Standards Audit

Gopher Guides coding standards enforcement. Validates Go projects against professional standards for documentation, concurrency, dependencies, and project structure.

API Integration (Optional)

If GOPHER_GUIDES_API_KEY is set, verify it:

curl -s -H "Authorization: Bearer $GOPHER_GUIDES_API_KEY" \
  https://gopherguides.com/api/gopher-ai/me

If not set, local analysis tools (go vet, staticcheck, golangci-lint) still provide comprehensive analysis. Set the key for enhanced API-powered insights. Get your key at gopherguides.com.

What It Checks

1. Documentation Completeness (Godoc)

Every exported type, function, method, and package should have proper documentation:

# Find exported symbols missing documentation
# Look for exported funcs/types without preceding comments
grep -rn "^func [A-Z]" --include="*.go" | while read line; do
  file=$(echo "$line" | cut -d: -f1)
  linenum=$(echo "$line" | cut -d: -f2)
  prevline=$((linenum - 1))
  prev=$(sed -n "${prevline}p" "$file")
  if [[ ! "$prev" =~ ^// ]]; then
    echo "Missing godoc: $line"
  fi
done

Standards:

  • Package comments in doc.go for non-trivial packages
  • All exported names have comments starting with the name
  • Comments are complete sentences
  • Examples in _test.go files for complex APIs

2. Concurrency Patterns

Review goroutine usage for correctness:

  • Context propagation — All long-running functions accept context.Context
  • Goroutine lifecycle — Every goroutine has a clear exit path
  • Channel usage — Buffered vs unbuffered chosen intentionally
  • Mutex vs Channel — Mutexes for state, channels for coordination
  • errgroup — Used for coordinating multiple goroutines
  • Race detectiongo test -race ./... passes
# Run race detector
go test -race -count=1 ./...

# Check for common concurrency issues
go vet -copylocks ./...

3. Dependency Management

# Check for outdated dependencies
go list -m -u all

# Verify module integrity
go mod verify

# Check for unused dependencies
go mod tidy -diff

# Review direct dependencies
go list -m -f '{{if not .Indirect}}{{.Path}} {{.Version}}{{end}}' all

Read the full file on GitHub · 184 lines

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. 8d ago First seen · 184 lines · 65 tokens per session scan A bc7154bb4775

Subscribe to this mod's changes

go-standards-audit is a skill published in the GitHub repository gopherguides/gopher-ai (21 stars, last pushed today), licensed MIT. It adds 65 tokens to every session and 1,298 once invoked, about $0.0003 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-30.