について
このスキルは、Goコードのレビューに構造化されたチェックリストを提供し、慣用的なパターン、エラーハンドリング、テストカバレッジに焦点を当てています。差分(PRなど)または完全なファイル/パッケージのレビューモードで動作します。セキュリティやパフォーマンスに特化した監査ではなく、一般的なコード品質レビューにご利用ください。
クイックインストール
Claude Code
推奨npx skills add eduardo-sl/go-agent-skills -a claude-code/plugin add https://github.com/eduardo-sl/go-agent-skillsgit clone https://github.com/eduardo-sl/go-agent-skills.git ~/.claude/skills/go-code-reviewこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします
ドキュメント
Go Code Review
Structured code review process for Go. Reviews should be constructive, specific, and cite the relevant principle behind each finding.
Operating Modes
Pick the mode that matches the request before starting:
- Diff review (default) — review only the changed lines plus enough surrounding context to judge them. Use for PRs and working-tree changes.
- File/package review — review the named files or packages in full, including their tests.
- Full audit — sweep the entire codebase. Use the strategy in "Auditing Large Codebases" below and aggregate everything into one report.
Review Process
Execute these steps in order. For each finding, classify severity:
- 🔴 BLOCKER — Must fix before merge. Correctness, data loss, security.
- 🟡 WARNING — Should fix. Maintainability, idiomatic Go, clarity.
- 🟢 SUGGESTION — Consider improving. Style, naming, documentation.
0. Run the Toolchain First
Before reading code manually, let the tools catch the mechanical issues (skip any tool that is not installed and note it in the report):
go build ./... # it must compile
go vet ./... # suspicious constructs
golangci-lint run # if the repo has a config
go test -race ./... # tests pass, no data races
Report tool findings alongside manual findings — a failing go vet is
an automatic 🔴 BLOCKER. Never report an issue a tool already proves
absent.
1. Correctness & Safety
Error Handling
- Every error is checked. No blank identifier
_discarding errors silently. - Errors are wrapped with context:
fmt.Errorf("fetch user %d: %w", id, err). - Error values compared with
errors.Is()/errors.As(), never==. - No
panicoutside ofinit()or truly unrecoverable situations. - Errors handled exactly once — no log-and-return patterns.
Nil Safety
- Pointer receivers checked before dereference when nil is a valid state.
- Map reads guarded or use comma-ok idiom.
- Channel operations consider closed/nil channels.
- Slice operations check bounds where relevant.
Concurrency
- Shared mutable state protected by
sync.Mutexor channels. - No goroutine leaks — every goroutine has a clear termination path.
- Context propagation: all blocking calls accept and respect
context.Context. sync.WaitGrouporerrgroup.Groupused for goroutine lifecycle.
2. API Design
- Exported functions have doc comments starting with the function name.
- Accept interfaces, return concrete types.
- Use functional options (
WithTimeout(d)) over config structs for optional params. - Context is always the first parameter:
func Foo(ctx context.Context, ...). - Return
erroras the last return value. - Avoid
boolparameters — prefer named types or options.
3. Idiomatic Go
- Uses
:=for local variables,varfor zero-value intent. - No unnecessary
elseafter return/continue/break. - Guard clauses and early returns reduce nesting.
deferused for cleanup, placed right after resource acquisition.rangeused over manual index iteration where appropriate.- Struct literals use field names.
- Interfaces defined at consumer, not producer.
4. Package Structure
- Package names are short, lowercase, singular nouns.
- No circular dependencies between packages.
internal/used for non-public packages.cmd/contains main packages, one per binary.- Clear separation of concerns — no god packages.
5. Testing
- Test functions follow
TestXxxnaming convention. - Table-driven tests used for multiple input/output combinations.
- Test helpers use
t.Helper()for clean stack traces. - No test logic in
init()— useTestMainwhen needed. - Tests use
testify/assertortestify/requireconsistently, or stdlib only. - Edge cases covered: empty input, nil, zero values, max values.
t.Parallel()used where safe.
6. Documentation
- All exported types, functions, and constants have doc comments.
- Doc comments start with the name of the entity.
- Package-level doc comment in
doc.gofor non-trivial packages. - Complex algorithms or business logic have inline comments explaining why.
7. Dependencies
go.modhas no replace directives in committed code (except monorepos).- No unused dependencies.
- Dependencies are from well-maintained, reputable sources.
- Indirect dependencies are understood and acceptable.
Auditing Large Codebases
When the scope exceeds ~20 files, do not read everything in one linear pass. Split the audit into independent passes:
- Enumerate packages (
go list ./...) and group them by layer (handlers, services, stores, shared libraries). - Run one focused pass per concern from sections 1-7 (correctness, API design, idioms, structure, testing, docs, dependencies).
- If your environment supports delegating work to parallel sub-agents or tasks, assign each pass to one — they are independent by design. Otherwise run them sequentially, one concern at a time.
- Require every finding to cite
file.go:lineand severity so the final aggregation is mechanical: merge, deduplicate, sort by severity.
Review Output Format
## Code Review Summary
**Files reviewed:** <list>
**Overall assessment:** APPROVE | REQUEST CHANGES | COMMENT
### Findings
#### 🔴 BLOCKER: <title>
- **File:** `path/to/file.go:42`
- **Issue:** <what is wrong>
- **Why:** <which principle or guideline>
- **Fix:** <concrete suggestion>
#### 🟡 WARNING: <title>
...
#### 🟢 SUGGESTION: <title>
...
### What's Done Well
<genuine positive observations — always include at least one>
GitHub リポジトリ
よくある質問
go-code-review Skillとは何ですか?
go-code-review はeduardo-sl が作成した Claude Skillです。Skillは、Claudeが必要に応じて読み込む指示とリソースをまとめ、追加の指示なしで go-code-review に関連するタスクを実行できるようにします。
go-code-review をインストールするには?
このページのインストールコマンドを使用してください。go-code-review をプラグインとして Claude Code に追加するか、リポジトリを skills ディレクトリにクローンし、Claudeを再起動してSkillを読み込みます。
go-code-review はどのカテゴリに属しますか?
go-code-review は テスト カテゴリに属します。
go-code-review は無料で利用できますか?
はい。go-code-review は AIMCP に掲載されており、無料でインストールできます。
関連スキル
このClaudeスキルは、lm-evaluation-harnessを実行し、MMLUやGSM8Kなど60以上の標準化学術タスクでLLMをベンチマークします。開発者がモデルの品質を比較し、トレーニングの進捗を追跡し、学術的な結果を報告するために設計されています。このツールはHuggingFaceやvLLMモデルを含む様々なバックエンドをサポートしています。
このスキルは、cron式を使用してWorkersをスケジュールするためのCloudflare Cron Triggersの実装に関する包括的な知識を提供します。定期的なタスクの設定、メンテナンスジョブ、自動化されたワークフローの構築を網羅し、無効なcron式やタイムゾーン問題といった一般的な課題への対処法も含みます。開発者はこれを使用して、スケジュールされたハンドラーの設定、cronトリガーのテスト、WorkflowsやGreen Computeとの連携を構成できます。
このClaude Skillは、Playwrightベースのツールキットを提供し、Pythonスクリプトを通じてローカルWebアプリケーションのテストを可能にします。フロントエンドの検証、UIデバッグ、スクリーンショット撮影、ログ表示を実現し、サーバーライフサイクルを管理します。ブラウザ自動化タスクにご利用いただけますが、コンテキストの汚染を避けるため、スクリプトのソースコードを読むのではなく直接実行してください。
このスキルは、開発者がテストの合格を確認し、構造化された統合オプションを提示することで、完成した作業を仕上げることを支援します。実装が完了した後のマージ、PR作成、ブランチの整理といったワークフローを案内します。コードが準備できてテスト済みの際に使用し、開発プロセスを体系的に完了させましょう。
