What problem does it solve? Looking up Go package documentation, API signatures, available versions, importers, and known vulnerabilities normally requires manually browsing pkg.go.dev. This Skill lets an AI agent answer those questions directly through the godig CLI or MCP server, which queries the pkg.go.dev API and the Go vulnerability database. ## Core Features & Use Cases - Package and symbol documentation: Retrieve full package docs or token-efficient single-symbol signatures and runnable examples for any Go module. - Version and dependency intelligence: List all versions, major versions, go.mod dependencies, licenses, and which packages import a given module. - Vulnerability checks: Query the Go vulnerability database (vuln.go.dev) to see whether a dependency has known CVEs. - Use Case: Before adding a new Go library, ask the agent to run godig overview and godig vulns on the module to review its latest version, license, and security posture in one step. ## Quick Start Ask the agent to show the documentation and known vulnerabilities for the Go package github.com/samber/lo using godig.