go-reviewlisted
Install: claude install-skill y-miyazaki/config
## Input
- Go files in PR or changeset (required)
- PR context: diff, commit messages, and `go-validation` output (required for PR review; for ad-hoc file review without PR, skip step 2 and evaluate all applicable checks directly)
## Output Specification
Return structured Markdown in accordance with [references/common-output-format.md](references/common-output-format.md). That file is the source of truth for the output contract.
## Execution Scope
- Systematically apply review checklist from [references/common-checklist.md](references/common-checklist.md)
- Focus on checks requiring human/AI judgment (design, concurrency, security patterns)
- **Do not run go-validation or execute gofumpt/go vet/golangci-lint/go test/govulncheck**
- Do not modify code files or approve/merge PRs
### USE FOR:
- review Go PRs where `.go` files are in the changeset (validation output may or may not exist)
- assess design, security, and concurrency risks not covered by static checks
- perform risk-focused review on multi-package changes
- ad-hoc review of Go source files outside a PR context
### DO NOT USE FOR:
- run formatting/lint/test/vulnerability command pipelines (use go-validation)
- implement code fixes directly
- changesets containing only non-Go files (e.g., docs-only, CI config-only)
## Reference Files Guide
- [common-checklist.md](references/common-checklist.md) (always read)
- [common-output-format.md](references/common-output-format.md) (always read)
- [common-troubleshooti