writing-go-code
Installation
SKILL.md
Go Development Standards
Project-specific Go coding standards for this codebase.
Companion Skills
applying-effective-go— General Go idioms from the official Effective Go documentation (naming, control flow, error handling philosophy, concurrency patterns). Complementary to this skill.writing-go-tests— Test conventions, mock usage, assertions, naming. Always load when writing test files.
Code Organization
// 1. Struct definition
type MyService struct {
logger Logger
fs FileSystem
}