go-review-patterns

go-review-patterns is a skill for Claude Code, Codex from mickeyyaya/refactoring-skills. It costs 67 tokens per session (3,355 once invoked), scanned A, original, MIT.

A Go code-review guide covering goroutines, cancellation, errors, slices, maps, interfaces, and nil values.

In plain words
What is it for?
Use it when reviewing Go pull requests involving web handlers, background workers, data access, or newly started goroutines.
Why use it?
It helps catch Go-specific failures that can appear only during errors, concurrency, or heavy use, such as leaked goroutines and unsafe nil handling.

Skill for Claude CodeCodex

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

Good fit Use it when reviewing Go pull requests involving web handlers, background workers, data access, or newly started goroutines.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mickeyyaya/refactoring-skills/go-review-patterns
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 mickeyyaya/refactoring-skills --skill go-review-patterns
Clone the repo
git clone --depth 1 https://github.com/mickeyyaya/refactoring-skills

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-review-patterns

README.md
[![agentmods](https://agentmods.dev/badge/skills/mickeyyaya/refactoring-skills/go-review-patterns/github.svg)](https://agentmods.dev/skills/mickeyyaya/refactoring-skills/go-review-patterns)
Your own site
<a href="https://agentmods.dev/skills/mickeyyaya/refactoring-skills/go-review-patterns"><img src="https://agentmods.dev/badge/skills/mickeyyaya/refactoring-skills/go-review-patterns/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-review-patterns

Your own site · 80×15
<a href="https://agentmods.dev/skills/mickeyyaya/refactoring-skills/go-review-patterns"><img src="https://agentmods.dev/badge/skills/mickeyyaya/refactoring-skills/go-review-patterns.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,355 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00067 $0.03355
Opus 5 $0.00034 $0.01677
Sonnet 5 $0.00013 $0.00671
Haiku 4.5 $0.00007 $0.00335

Measured 11d ago against content hash 2fca8a87ea00, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

go-review-patterns 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 11d 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.

skills/go-review-patterns/SKILL.md · 318 lines

How it starts

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

Go Code Review Patterns

Overview

Go has a small surface area but a unique set of failure modes that do not appear in other languages. Explicit error returns, a cooperative concurrency model built on goroutines, and structural typing through interfaces create patterns that look fine to reviewers from other backgrounds but silently break under load or in error paths.

This guide focuses on six areas where Go code most commonly fails in production: goroutine leaks, context propagation gaps, error handling discipline, slice/map pitfalls, interface design mistakes, and nil traps.

Load this skill when reviewing any Go PR that touches HTTP handlers, background workers, data access layers, or any code that spawns goroutines. Cross-reference review-accuracy-calibration before posting — Go has low false positive risk overall, but goroutine and nil interface bugs are easy to miss in small diffs.

Quick Reference

Review Dimension Severity Primary Red Flag
Goroutine leak HIGH go func() with no termination path in the spawning scope
Missing context cancellation HIGH Goroutine does I/O with no ctx.Done() case in select
Context stored in struct MEDIUM type Foo struct { ctx context.Context }
Context not passed to I/O MEDIUM db.Query(sql) instead of db.QueryContext(ctx, sql)
Ignored error on I/O HIGH f, _ := os.Open(...) — error discarded with blank identifier
Error compared with == HIGH if err == ErrNotFound instead of errors.Is(err, ErrNotFound)
Nil map write CRITICAL var m map[string]int; m["key"] = 1 — panics at runtime
Nil interface trap HIGH Returning typed nil as error — never nil-checks to true
Concurrent map read/write CRITICAL Map accessed from multiple goroutines without sync.RWMutex
Slice append aliasing MEDIUM Shared underlying array after append with sufficient capacity
Exported interface from impl package MEDIUM Interface defined in same package as its only implementation
defer inside loop HIGH defer f.Close() in for loop — defers accumulate until function exit
init() with side effects MEDIUM func init() dialing network, registering globals, reading files
Empty interface{} / any abuse LOW–MEDIUM Public API fields typed any masking a design problem

Read the full file on GitHub · 318 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. 11d ago First seen · 318 lines · 67 tokens per session scan A 2fca8a87ea00

Subscribe to this mod's changes

go-review-patterns is a skill published in the GitHub repository mickeyyaya/refactoring-skills (6 stars, last pushed 5mo ago), licensed MIT. It adds 67 tokens to every session and 3,355 once invoked, about $0.0003 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-31.