go-code-review
Installation
SKILL.md
Go Code Review
Best practices and common issues to check when reviewing Go code.
When to Use
- Reviewing Go code for the Grizz agent
- Conducting code quality assessments
- Preparing code for production
- Learning Go idioms and best practices
Error Handling
Check All Errors
// BAD: Ignoring error
result, _ := doSomething()