deps

Tidy and verify Go module dependencies with checksum validation.

23|1|Updated Feb 1, 2026
One-click install
npx skills add https://github.com/PeterBooker/veloria --skill deps-peterbooker
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deps
Source: https://github.com/PeterBooker/veloria/tree/main/.claude/skills/deps
Command: npx skills add https://github.com/PeterBooker/veloria --skill deps-peterbooker

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill ensures your Go module dependencies are clean, verified, and up-to-date, preventing potential build or runtime issues.

Core Features & Use Cases

  • Dependency Tidy: Automatically removes unused dependencies and adds any missing ones.
  • Checksum Verification: Ensures the integrity of your downloaded dependencies.
  • Change Tracking: Clearly shows any modifications made to your go.mod and go.sum files.
  • Use Case: Before committing changes or creating a pull request, run this Skill to guarantee your project's dependencies are in a consistent and valid state.

Quick Start

Run the deps skill to tidy and verify your Go module dependencies.

Frequently Asked Questions about deps

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I tidy Go module dependencies and verify checksums before a release?

To tidy Go module dependencies and verify checksums, run the skill to automatically clean `go.mod` and `go.sum` files. It removes unused dependencies, adds missing ones, and validates checksums to ensure supply chain integrity before releases or merges.

What does verifying Go module checksums do for my project?

Verifying Go module checksums ensures the integrity of your downloaded dependencies. This process validates that the dependency content has not been tampered with, preventing potential build or runtime issues caused by compromised supply chain components.

When should I tidy my go.mod and go.sum files?

You should tidy your `go.mod` and `go.sum` files before committing changes or creating a pull request. Tidying removes unused dependencies and adds missing ones, guaranteeing your Go project's dependencies remain in a consistent and valid state.

Can I track changes made to go.mod and go.sum during dependency management?

Yes, you can track changes made to `go.mod` and `go.sum` files during dependency management. The skill clearly shows any modifications made while tidying and verifying, allowing you to review dependency additions or removals before committing.

Does this dependency management approach work for Go projects requiring consistent state before code merges?

Yes, this dependency management approach works for Go projects requiring a consistent state before code merges. It tidies modules and verifies checksums, satisfying the need for clean dependency files and accurate supply chain integrity prior to integration.