Help us improve
Share bugs, ideas, or general feedback.
From ai-kit
Reviews Go code changes in git, fetching library docs via Context7 MCP and delegating analysis to the golang-pro agent across 8 quality areas.
npx claudepluginhub ivklgn/ai-kitHow this skill is triggered — by the user, by Claude, or both
Slash command
/ai-kit:review-golangThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are performing a comprehensive Go code review. Follow these steps exactly.
Reviews Go backend code changes, detecting BubbleTea, Wish SSH, Prometheus, ZeroLog, tests; loads specialized skills with optional parallel subagents.
Reviews Go code against style guide, focusing on critical bugs, race conditions, and maintainability issues. Use for PRs, feature branches, or completed work reviews.
Reviews Go code against community style standards for formatting, documentation, error handling, and naming using checklists from Go Wiki and Uber guide. Use before PRs or code reviews.
Share bugs, ideas, or general feedback.
You are performing a comprehensive Go code review. Follow these steps exactly.
Run these commands to find changed .go files:
git diff --name-only HEAD -- '*.go'
git diff --cached --name-only -- '*.go'
Combine and deduplicate the results. Exclude _test.go files from the primary review list but keep them for the test quality review area.
If NO changed .go files are found, use AskUserQuestion to ask the user which Go files or directories to review. Do not proceed without files.
This step is critical — the golang-pro agent does NOT have Context7 MCP tools, so you must fetch docs now and pass them along.
go.mod to identify third-party dependencies (non-stdlib, non-internal modules).import statements. Identify which third-party libraries are actually used.mcp__context7__resolve-library-id with the library's module path (e.g., github.com/spf13/cobra)
b. If resolved, call mcp__context7__get-library-docs with the resolved ID and a topic query relevant to how the library is used in the changed codeLimit to the 3-5 most important libraries to avoid overwhelming the review context.
Use the Task tool with subagent_type: "golang-pro" to run the review. Pass a prompt that includes:
.go file paths (both source and test files)Construct the prompt as follows:
You are reviewing Go code changes. Read each file listed below and produce a structured review.
## Files to Review
{list of file paths}
## Library Documentation Context
{pre-fetched Context7 docs for third-party libraries used in these files}
## Review Areas
Analyze each file across these 8 areas:
1. **Go Idioms & Code Quality** — Non-idiomatic patterns, naming violations, struct design issues
2. **Error Handling** — Swallowed errors, missing error checks, incorrect error wrapping, sentinel vs type errors
3. **Memory & Allocations** — Unnecessary allocations, missing pre-allocation for known-size slices, string concatenation in loops. Only flag practical issues, no micro-optimizations.
4. **Performance Patterns** — Unoptimal algorithms, unnecessary work in hot paths, missing caching where obvious
5. **Dead Code** — Unused functions, unreachable branches, commented-out code left behind
6. **Code Duplication** — Repeated logic that would clearly benefit from extraction (3+ occurrences or complex blocks). Do NOT suggest extraction for simple 2-3 line patterns.
7. **Test Quality** — Missing edge cases, brittle assertions, test isolation issues, missing error case tests
8. **Library Usage** — Incorrect or suboptimal use of stdlib and third-party libraries. Use the library documentation provided above to verify correct API usage.
## Review Rules
- Be minimal and optimal — don't overcomplicate suggestions
- Be context-specific — no generic advice, only what matters for THIS code
- Simple > complex — never suggest an overengineered solution
- Every finding MUST include a file:line reference
- If a review area has no findings, omit it entirely
- Do NOT suggest adding comments, docstrings, or type annotations unless there is a clear correctness issue
- Do NOT suggest error handling for impossible scenarios
- Do NOT suggest abstractions for one-time code
## Output Format
Group findings by review area. For each finding:
**[Area Name]**
- `file.go:42` — Description of the issue and suggested fix
If everything looks good, say so briefly. Do not pad the review with praise or filler.
The golang-pro agent will return the structured review. Present it directly to the user. Do not add extra commentary or re-analyze — the review stands as-is.