xe-go-style
Installation
SKILL.md
Xe's Go Style Guide
Write Go code following the conventions and patterns used by Xe Iaso.
Project Structure
├── cmd/ # Main applications (each subdirectory is a binary)
│ ├── x/ # CLI with subcommands
│ │ ├── main.go
│ │ └── cmd/ # Subcommand packages
│ └── sakurajima/ # Service binaries
│ ├── main.go
│ └── internal/ # Command-specific internal packages
├── internal/ # Private packages shared across commands
├── web/ # Web-related services and API clients
└── gen/ # Generated code (protobuf)