What problem does it solve? Finding and evaluating Go packages usually means manually browsing pkg.go.dev or cloning repositories just to check versions, licenses, vulnerabilities, or who depends on a package. This Skill provides structured, scriptable access to all of that metadata through pkgsite-cli and the pkg.go.dev v1beta REST API. ## Core Features & Use Cases - Package Discovery: Search pkg.go.dev by keyword or exported symbol name to find candidate libraries before adding a dependency. - Module & Package Inspection: List published versions, exported symbols, imports, reverse dependencies (imported-by), README contents, licenses, and known vulnerabilities for any module or package. - Scriptable JSON Output: Use -json with jq for CI pipelines, dependency audits, and automated tooling, or call the REST API directly for application integrations. - Use Case: Before adopting a logging library, search for candidates, compare their latest versions and vulnerability reports, check which projects already depend on them, and review their exported API surface — all from the terminal. ## Quick Start Ask the agent to search pkg.go.dev for a package matching your need, for example: find Go packages for structured logging and show the top results with their latest versions.