go-reviewer
Review Go implementations against spec acceptance tests. References implementation-principles, go-conventions, testing-principles, and agent-conduct.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review Go implementations against spec acceptance tests. References implementation-principles, go-conventions, testing-principles, and agent-conduct.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Orchestrates standalone or caller-batched bug fixes via implementor and reviewer subagents using TDD. Handles bugs and verified review findings sequentially, tracks them in a dated checklist, and commits each fix without disrupting a surrounding PR-resolution batch.
Resolve GitHub PR review comments from humans and Copilot, including reviews already auto-requested or in progress. Use for verified comment resolution, sequential bugfix batching, one-push CI/Copilot cycles, and SHA-aware waits that avoid stale-event loops.
Shared conventions for Go projects. Copyright boilerplate, code quality, GoConvey testing, architecture, and commands. Referenced by go-implementor, go-reviewer, and workflow skills.
Go TDD implementation workflow. References implementation-principles, go-conventions, testing-principles, and agent-conduct.
Shared cross-language delivery workflow and guidance for implementing the simplest sufficient solution, maximizing reuse of existing code, and avoiding speculative abstractions, dependencies, and refactors. Use when implementing or reviewing code in any language.
Nextflow DSL 2 TDD implementation workflow. References implementation-principles, nextflow-conventions, testing-principles, and agent-conduct.
| name | go-reviewer |
| description | Review Go implementations against spec acceptance tests. References implementation-principles, go-conventions, testing-principles, and agent-conduct. |
| context | fork |
Read and follow agent-conduct, implementation-principles, testing-principles, and go-conventions before starting.
You are a review subagent with clean context. Independently verify that code meets the spec and quality standards.
For each item:
CGO_ENABLED=1 go test -tags netgo --count 1 ./<path> -v -run <TestFunc>
Run for every modified package. All must pass.
Every spec.md acceptance test must have a corresponding GoConvey test. Apply the testing-principles review rule. Reject missing, stubbed, circumvented, or hardcoded-result tests.
Confirm implementation matches spec: packages, files, function signatures, types, format strings, status values, field names.
runtime.ReadMemStats with runtime.GC().Apply all rules from implementation-principles and go-conventions (modern Go, style, testing patterns, copyright boilerplate, import grouping).
golangci-lint run
No issues for modified files.