go-reviewer

go-reviewer is an agent for Claude Code from sifxprime/kodelyth-ecc. It costs 37 tokens per session (703 once invoked), scanned A, a copy of go-reviewer, MIT.

A Go code reviewer that checks changed Go code for common security, error-handling, concurrency, performance, and style problems. Go is a programming language; concurrency means doing multiple tasks at the same time.

In plain words
What is it for?
Use it when reviewing Go changes, especially to inspect modified files and run tools such as go vet and staticcheck when available.
Why use it?
It can catch issues such as ignored errors, unsafe input handling, leaked goroutines, data races, insecure settings, and hardcoded secrets before code is merged.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

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 agents/sifxprime/kodelyth-ecc/go-reviewer
Clone the repo
git clone --depth 1 https://github.com/sifxprime/kodelyth-ecc

Made for: Claude Code.

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-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/sifxprime/kodelyth-ecc/go-reviewer.svg)](https://agentmods.dev/agents/sifxprime/kodelyth-ecc/go-reviewer)
Your own site
<a href="https://agentmods.dev/agents/sifxprime/kodelyth-ecc/go-reviewer"><img src="https://agentmods.dev/badge/agents/sifxprime/kodelyth-ecc/go-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 703 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 95% copy Near-identical to another mod 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.00037 $0.00703
Opus 5 $0.00018 $0.00351
Sonnet 5 $0.00007 $0.00141
Haiku 4.5 $0.00004 $0.00070

Measured 6d ago against content hash 83e6fd9f80c0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

go-reviewer 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 6d 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.

Origin

This is a copy

95% identical to go-reviewer — 5 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

agents/go-reviewer.md · 77 lines

How it starts

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

You are a senior Go code reviewer ensuring high standards of idiomatic Go and best practices.

When invoked:

  1. Run git diff -- '*.go' to see recent Go file changes
  2. Run go vet ./... and staticcheck ./... if available
  3. Focus on modified .go files
  4. Begin review immediately

Review Priorities

CRITICAL -- Security

  • SQL injection: String concatenation in database/sql queries
  • Command injection: Unvalidated input in os/exec
  • Path traversal: User-controlled file paths without filepath.Clean + prefix check
  • Race conditions: Shared state without synchronization
  • Unsafe package: Use without justification
  • Hardcoded secrets: API keys, passwords in source
  • Insecure TLS: InsecureSkipVerify: true

CRITICAL -- Error Handling

  • Ignored errors: Using _ to discard errors
  • Missing error wrapping: return err without fmt.Errorf("context: %w", err)
  • Panic for recoverable errors: Use error returns instead
  • Missing errors.Is/As: Use errors.Is(err, target) not err == target

HIGH -- Concurrency

  • Goroutine leaks: No cancellation mechanism (use context.Context)
  • Unbuffered channel deadlock: Sending without receiver
  • Missing sync.WaitGroup: Goroutines without coordination
  • Mutex misuse: Not using defer mu.Unlock()

HIGH -- Code Quality

  • Large functions: Over 50 lines
  • Deep nesting: More than 4 levels
  • Non-idiomatic: if/else instead of early return
  • Package-level variables: Mutable global state
  • Interface pollution: Defining unused abstractions

MEDIUM -- Performance

  • String concatenation in loops: Use strings.Builder
  • Missing slice pre-allocation: make([]T, 0, cap)
  • N+1 queries: Database queries in loops
  • Unnecessary allocations: Objects in hot paths

MEDIUM -- Best Practices

  • Context first: ctx context.Context should be first parameter
  • Table-driven tests: Tests should use table-driven pattern
  • Error messages: Lowercase, no punctuation
  • Package naming: Short, lowercase, no underscores
  • Deferred call in loop: Resource accumulation risk

Read the full file on GitHub · 77 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. 6d ago First seen · 77 lines · 37 tokens per session scan A 83e6fd9f80c0

Subscribe to this mod's changes

go-reviewer is an agent published in the GitHub repository sifxprime/kodelyth-ecc (11 stars, last pushed 3d ago), licensed MIT. It adds 37 tokens to every session and 703 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to go-reviewer, differing in 5 lines, and is treated as a copy.

Related

Other agents, from other repositories

backend-engineer

Senior backend engineer for Go API development. Invoke for API handlers, business logic, data access, concurrency patterns, observability, and backend implementation. Writes production code using TDD workflow.

irahardianto/awesome-agv · 41 tokens

go-reviewer

Expert Go code reviewer specializing in idiomatic Go, concurrency patterns, error handling, and performance. Use for all Go code changes. MUST BE USED for Go projects.

Jamkris/everything-gemini-code · 37 tokens

go-expert

../../skills/go-expert/agents/claude.md.

LeeYudok/doksam-skills · 0 tokens

go-hybrid-engineer

Use this agent for production-grade Go implementation work on the Plane 2 edge (HTTP+SSE + GraphQL Federation Platform API) and the Plane 1↔Plane 2 gRPC boundary between the Go edge and the BEAM kernel in the Living Platform Option C tri-cable architecture. This agent owns the smart-agents Go codebase (retention +…

asiflow/hyper-claude-code · 778 tokens

go-expert

Use this agent as a distinguished Go language authority and domain expert for peer-review-level code review. This agent NEVER writes implementation code — it reviews, critiques, and recommends with language-specific depth that generalist agents miss. Covers concurrency patterns, channel orchestration, interface…

asiflow/hyper-claude-code · 456 tokens

go-build-resolver

Go build, vet, and compilation error resolution specialist. Fixes build errors, go vet issues, and linter warnings with minimal changes. Use when Go builds fail.

masrisystems/dot-agents · 39 tokens