go
Installation
SKILL.md
When to use this skill
- You need to know which Go version or toolchain this repo uses.
- You are deciding between vendored, offline, or local
third_party/builds. - You are writing code for TinyGo, embedded targets, or legacy Windows.
How to use
- Check
AGENTS.mdand eachgo.modfor the toolchain. - Run
make allfrom the repo root to format, vet, test, and build allmcp/*servers. - Use
go mod vendororGOFLAGS=-mod=vendorfor offline or air-gapped builds. - See the
mcp-toolkitskill for repo-wide build and module conventions.
Examples
- "Build all servers with
make allandmake gosec." - "Vendor dependencies for offline use with
go mod vendor." - "Check the
micronvendored parser underthird_party/."