openshift / effective-go
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/effective-go && curl -o .claude/skills/effective-go/SKILL.md https://fastmcp.me/Skills/DownloadRaw?id=102
Project Skills
This skill will be saved in .claude/skills/effective-go/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Apply Go best practices, idioms, and conventions from golang.org/doc/effective_go. Use when writing, reviewing, or refactoring Go code to ensure idiomatic, clean, and efficient implementations.
2 views
0 installs
Skill Content
--- name: Effective Go description: "Apply Go best practices, idioms, and conventions from golang.org/doc/effective_go. Use when writing, reviewing, or refactoring Go code to ensure idiomatic, clean, and efficient implementations." --- # Effective Go Apply best practices and conventions from the official [Effective Go guide](https://go.dev/doc/effective_go) to write clean, idiomatic Go code. ## When to Apply Use this skill automatically when: - Writing new Go code - Reviewing Go code - Refactoring existing Go implementations ## Key Reminders Follow the conventions and patterns documented at https://go.dev/doc/effective_go, with particular attention to: - **Formatting**: Always use `gofmt` - this is non-negotiable - **Naming**: No underscores, use MixedCaps for exported names, mixedCaps for unexported - **Error handling**: Always check errors; return them, don't panic - **Concurrency**: Share memory by communicating (use channels) - **Interfaces**: Keep small (1-3 methods ideal); accept interfaces, return concrete types - **Documentation**: Document all exported symbols, starting with the symbol name ## References - Official Guide: https://go.dev/doc/effective_go - Code Review Comments: https://github.com/golang/go/wiki/CodeReviewComments - Standard Library: Use as reference for idiomatic patterns