# Golang Dependency Management > Estrategias de gestión de dependencias en Go: go.mod, instalación/upgrade de paquetes, Minimal Version Selection, escaneo de vulnerabilidades, tamaño de binarios, Dependabot/Renovate y go.work. Fuente: https://skillsagentes.com/skills/samber/cc-skills-golang/golang-dependency-management Markdown: https://skillsagentes.com/skills/samber/cc-skills-golang/golang-dependency-management.md Repositorio: https://github.com/samber/cc-skills-golang Autor: samber Licencia: MIT Actualizado: el mes pasado Coste de contexto: 109 tok instalada, 2.5k tok al activarse, 8.6k tok con todos los archivos del bundle Bundle: 8 archivos, 34 KB Permisos que pide: read edit write glob grep bash(go:*) bash(golangci-lint:*) bash(git:*) agent bash(govulncheck:*) askuserquestion ## Instalación Un skill son archivos markdown: los mismos archivos valen para cualquier agente y lo único que cambia es el directorio de destino, es decir la bandera `--agent`. Añade `-g` para instalarlo en todos los proyectos de la máquina. ```bash # Claude Code npx -y skills add samber/cc-skills-golang --skill golang-dependency-management --agent claude-code # Cursor npx -y skills add samber/cc-skills-golang --skill golang-dependency-management --agent cursor # Codex npx -y skills add samber/cc-skills-golang --skill golang-dependency-management --agent codex # Gemini CLI npx -y skills add samber/cc-skills-golang --skill golang-dependency-management --agent gemini # Windsurf npx -y skills add samber/cc-skills-golang --skill golang-dependency-management --agent windsurf # Cline npx -y skills add samber/cc-skills-golang --skill golang-dependency-management --agent cline ``` ## Qué hace - Aplica reglas de gestión de dependencias en Go: go.mod/go.sum, instalación, upgrade y eliminación de paquetes - Exige pedir confirmación al usuario antes de añadir una nueva dependencia con go get - Ejecuta govulncheck, go mod tidy y go mod verify como parte del flujo de mantenimiento - Cubre go.work workspaces, resolución de conflictos, vendoring y configuración de Dependabot/Renovate ## Cuándo usarla - Al añadir, quitar o actualizar dependencias de Go - Al auditar vulnerabilidades en el árbol de dependencias - Al resolver conflictos de versiones - Al configurar actualizaciones automáticas de dependencias ## Qué la activa - "Añade la librería google/uuid a mi proyecto Go" - "Actualiza todas mis dependencias con go get -u=patch" - "Revisa vulnerabilidades en mis dependencias con govulncheck" - "Configura Renovate para actualizar dependencias automáticamente" - "Resuelve este conflicto de versiones en go.mod" ## Antes de instalar - Requiere los binarios go y govulncheck (instalable con go install golang.org/x/vuln/cmd/govulncheck@latest). ## Archivos - SKILL.md — 10 KB - evals/evals.json — 11 KB - references/auditing.md — 3 KB - references/automated-updates.md — 2 KB - references/conflicts.md — 2 KB - references/versioning.md — 3 KB - references/visualization.md — 1 KB - references/workspaces.md — 1 KB ## SKILL.md Reproducido tal cual desde samber/cc-skills-golang bajo MIT. Esta sección es el documento original y está en inglés. **Persona:** You are a Go dependency steward. You treat every new dependency as a long-term maintenance commitment — you ask whether the standard library already solves the problem before reaching for an external package. **Dependencies:** - govulncheck: `go install golang.org/x/vuln/cmd/govulncheck@latest` # Go Dependency Management ## AI Agent Rule: Ask Before Adding Dependencies **Before running `go get` to add any new dependency, AI agents MUST ask the user for confirmation.** AI agents can suggest packages that are unmaintained, low-quality, or unnecessary when the standard library already provides equivalent functionality. Using `go get -u` to upgrade an existing dependency is safe. Before proposing a dependency, evaluate: - Does the standard library already cover the use case? - Is the license compatible? - Are there well-known alternatives? - What it does and why it's needed? The `samber/cc-skills-golang@golang-popular-libraries` skill contains a curated list of vetted, production-ready libraries. Prefer recommending packages from that list. When no vetted option exists, favor well-known packages from the Go team (`golang.org/x/...`) or established organizations over obscure alternatives. ## Key Rules - `go.sum` MUST be committed — it records cryptographic checksums of every dependency version, letting `go mod verify` detect supply-chain tampering. Without it, a compromised proxy could silently substitute malicious code - `govulncheck ./...` or `go tool govulncheck ./...` before every release — catches known CVEs in your dependency tree before they reach production - Maintenance status, license compatibility, and stdlib alternatives are important considerations before adding a dependency — every dependency increases attack surface, maintenance burden, and binary size - `go mod tidy` before every commit that changes dependencies — removes unused modules and adds missing ones, keeping go.mod honest ## go.mod & go.sum ### Essential Commands | Command | Purpose | | ----------------- | -------------------------------------------- | | `go mod tidy` | Add missing deps, remove unused ones | | `go mod download` | Download modules to local cache | | `go mod verify` | Verify cached modules match go.sum checksums | | `go mod vendor` | Copy deps into `vendor/` directory | | `go mod edit` | Edit go.mod programmatically (scripts, CI) | | `go mod graph` | Print the module requirement graph | | `go mod why` | Explain why a module or package is needed | ### Vendoring Use `go mod vendor` when you need hermetic builds (no network access), reproducibility guarantees beyond checksums, or when deploying to environments without module proxy access. CI pipelines and Docker builds sometimes benefit from vendoring. Run `go mod vendor` after any dependency change and commit the `vendor/` directory. ## Installing & Upgrading Dependencies ### Adding a Dependency ```bash go get github.com/google/uuid # Latest version go get github.com/google/uuid@v1.6.0 # Specific version go get github.com/google/uuid@latest # Explicitly latest go get github.com/google/uuid@ # Specific commit (pseudo-version) ``` Before pinning a version, inspect the module's available versions, importers, and known vulnerabilities on pkg.go.dev → See `samber/cc-skills-golang@golang-pkg-go-dev` skill. ### Upgrading ```bash go get -u ./... # Upgrade ALL direct+indirect deps to latest minor/patch go get -u=patch ./... # Upgrade to latest patch only (safer) go get github.com/pkg@v1.5 # Upgrade specific package ``` **Prefer `go get -u=patch`** for routine updates. Patch and minor updates are usually lower risk than major upgrades, but still require review. For dependency updates, run: ```bash go get -u=patch ./... go mod tidy go test ./... go vet ./... govulncheck ./... # or: go tool govulncheck ./... ``` Release notes and changelogs for libraries affecting persistence, serialization, networking, authentication, authorization, cryptography, or public APIs may contain important information about breaking changes. ### Removing a Dependency ```bash go get github.com/google/uuid@none # Mark for removal go mod tidy # Clean up go.mod and go.sum ``` ### Installing CLI Tools For Go 1.24+ modules, pin executable tools in `go.mod` with `tool` directives. Do not create a new `tools.go` blank-import file unless the module must support Go <1.24. ```bash # Add tools to the current module. go get -tool github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest go get -tool golang.org/x/vuln/cmd/govulncheck@latest go get -tool golang.org/x/perf/cmd/benchstat@latest # Run pinned tools reproducibly. go tool golangci-lint run ./... go tool govulncheck ./... go tool benchstat old.txt new.txt # Install all module-pinned tools into GOBIN/PATH when needed. go install tool # Update pinned tools deliberately, then review go.mod/go.sum. go get -u tool go mod tidy ``` `go.mod` shape for a module targeting Go 1.26 or newer. This is an example target, not a cap; keep the project's actual `go` directive and do not change it just to add tools. ```go.mod module example.com/project go 1.26 tool ( github.com/golangci/golangci-lint/v2/cmd/golangci-lint golang.org/x/vuln/cmd/govulncheck golang.org/x/perf/cmd/benchstat ) ``` For Go <1.24 only, use the legacy `tools.go` blank-import workaround: ```go //go:build tools package tools import ( _ "github.com/golangci/golangci-lint/v2/cmd/golangci-lint" _ "golang.org/x/vuln/cmd/govulncheck" ) ``` Rule: Go 1.24+ = `tool` directives. Go <1.24 = `tools.go` fallback. ### Go 1.26+ module target note When using a Go 1.26 or newer toolchain, `go mod init` may create a module with an older default `go` directive. If the project intentionally targets Go 1.26+ APIs, update the directive deliberately: ```bash go mod edit -go=1.26 go mod tidy ``` For future Go versions, use the project's intended target version. Do not use APIs newer than the module's `go` directive until the project explicitly agrees to upgrade it. ## Deep Dives - **[Versioning & MVS](./references/versioning.md)** — Semantic versioning rules (major.minor.patch), when to increment each number, pre-release versions, the Minimal Version Selection (MVS) algorithm (why you can't just pick "latest"), and major version suffix conventions (v0, v1, v2 suffixes for breaking changes). - **[Auditing Dependencies](./references/auditing.md)** — Vulnerability scanning with `govulncheck`, tracking outdated dependencies, analyzing which dependencies make the binary large (`goweight`), and distinguishing test-only vs binary dependencies to keep `go.mod` clean. - **[Dependency Conflicts & Resolution](./references/conflicts.md)** — Diagnosing version conflicts (what `go get` does when you request incompatible versions), resolution strategies (`replace` directives for local development, `exclude` for broken versions, `retract` for published versions that should be skipped), and workflows for conflicts across your dependency tree. - **[Go Workspaces](./references/workspaces.md)** — `go.work` files for multi-module development (e.g., library + example application), when to use workspaces vs monorepos, and workspace best practices. - **[Automated Dependency Updates](./references/automated-updates.md)** — Setting up Dependabot or Renovate for automatic dependency update PRs, auto-merge strategies (when to merge automatically vs require review), and handling security updates. - **[Visualizing the Dependency Graph](./references/visualization.md)** — `go mod graph` to inspect the full dependency tree, `modgraphviz` to visualize it, and interactive tools to find which dependency chains cause bloat. ## Cross-References - → See `samber/cc-skills-golang@golang-continuous-integration` skill for Dependabot/Renovate CI setup - → See `samber/cc-skills-golang@golang-security` skill for vulnerability scanning with govulncheck - → See `samber/cc-skills-golang@golang-popular-libraries` skill for vetted library recommendations ## Quick Reference ```bash # Start a new module go mod init github.com/user/project # Add a dependency go get github.com/google/uuid@v1.6.0 # Upgrade all deps (patch only, safer) go get -u=patch ./... # Remove unused deps go mod tidy # Check for vulnerabilities govulncheck ./... # or: go tool govulncheck ./... # Check for outdated deps go list -u -m -json all | go-mod-outdated -update -direct # Analyze binary size by dependency goweight # Understand why a dep exists go mod why -m github.com/some/module # Visualize dependency graph go mod graph | modgraphviz | dot -Tpng -o deps.png # Verify checksums go mod verify ``` ## Dónde encaja - Categoría: [Herramientas para desarrolladores](https://skillsagentes.com/categorias/herramientas-desarrollo.md) — Skills que cambian cómo tu agente escribe, revisa y despliega código. - Creador: [samber](https://skillsagentes.com/creators/samber.md) — 0 skills en el directorio - [Todas las skills](https://skillsagentes.com/skills.md) - [Ranking de instalaciones](https://skillsagentes.com/ranking.md) ## Otras skills del mismo repositorio - [Golang Lint](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-lint.md): Buenas prácticas de linting y configuración de golangci-lint para proyectos Golang: ejecutar linters, configurar .golangci.yml, suprimir avisos con nolint, interpretar salidas y elegir linters. - [Golang How To](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-how-to.md): Orquestador de skills de Golang, siempre activo en cualquier tarea de código, revisión, debug o setup: carga las skills más relevantes de samber/cc-skills-golang, a menudo varias a la vez. - [Golang Benchmark](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-benchmark.md): Benchmarking, profiling y medición de rendimiento en Golang: escribir y comparar benchmarks, perfilar con pprof, analizar con benchstat y detectar regresiones en CI. - [Golang Testing](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-testing.md): Tests de Golang listos para producción: table-driven, suites y mocks con testify, tests paralelos, fuzzing, fixtures, detección de fugas de goroutines con goleak, snapshot testing, cobertura, tests de integración. - [Golang Performance](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-performance.md): Patrones y metodología de optimización de rendimiento en Golang: si hay cuello de botella X, aplica el patrón Y, una vez que profiling o benchmarks ya lo identificaron. ## Skills relacionadas - [Golang Samber Hot](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-samber-hot.md): Caché en memoria en Golang con samber/hot: algoritmos de expulsión (LRU, LFU, TinyLFU, S3FIFO, ARC, TwoQueue, SIEVE, FIFO), TTL, loaders, sharding y métricas Prometheus. - [Golang Samber Lo](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-samber-lo.md): Helpers funcionales para Go con samber/lo: 500+ funciones genéricas type-safe para slices, maps, canales, strings, math, tuplas y concurrencia. - [Golang Samber Mo](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-samber-mo.md): Tipos monádicos para Golang con samber/mo — Option, Result, Either, Future, IO, Task y State para valores nulos seguros, manejo de errores y composición funcional. - [Golang Samber Slog](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-samber-slog.md): Extensiones de logging estructurado para Go con paquetes samber/slog-****: pipelines multi-handler, sampling, formateo de atributos, middleware HTTP y enrutamiento a backends como Datadog, Sentry o Loki. - [Golang Spf13 Viper](https://skillsagentes.com/skills/samber/cc-skills-golang/golang-spf13-viper.md): Librería de configuración en Go con spf13/viper: precedencia en capas (flag > env > archivo > KV > default), BindPFlag, AutomaticEnv, Unmarshal con mapstructure, Sub, WatchConfig y aislamiento en tests. --- Skills Agentes · [Índice de páginas en markdown](https://skillsagentes.com/sitemap.md) · [Inicio](https://skillsagentes.com/index.md)