go-dev
Installation
SKILL.md
Go Development Skill
Go is a statically typed, compiled programming language designed for simplicity, concurrency, and performance.
Quick Tips
Working with Dependencies
To see source files from a dependency, or to answer questions about a dependency, run:
go mod download -json MODULE
Use the returned Dir path to read the files.
Reading Documentation
Use the built-in documentation tool:
Related skills