go
Installation
SKILL.md
Go Programming Language
Guidelines for working effectively with Go projects.
Reading Dependency Source Files
To see source files from a dependency, or to answer questions about a dependency:
go mod download -json MODULE
Use the returned Dir path to read the source files.
Reading Documentation
Use go doc to read documentation for packages, types, functions, etc: