dep-update

Installation
SKILL.md

Dependency Updates & Security

Overview

Safe dependency update workflows for Go, Python (uv), and Bun. Branch per update, test after each.

Core principle: One category at a time. Full test suite after each update. Never batch blindly.

Go Update Workflow

# 1. Check for updates
go list -m -u all

# 2. Update dependencies
go get -u ./...        # all deps
go get -u package@v1.2 # specific
Installs
3
GitHub Stars
3
First Seen
12 days ago
dep-update — vndee/engineering-skills