
Dependency Updater
- 3.8k installs
- 2.2k repo stars
- Updated March 5, 2026
- softaworks/agent-toolkit
dependency-updater is an agent skill for auto-detect project type and apply safe dependency updates with prompts for breaking major bumps.
About
The dependency-updater skill Smart dependency management for any language. Auto-detects project type, applies safe updates automatically, prompts for major versions, diagnoses and fixes dependency issues. Smart dependency management for any language with automatic detection and safe updates. The skill auto-detects your project type and handles the rest. Trigger Example --------- --------- Update dependencies "update dependencies", "update deps" Check outdated "check for outdated packages" Fix dependency issues "fix my dependency problems" Security audit "audit dependencies for vulnerabilities" Diagnose deps "diagnose dependency issues" Language Package File Update Tool Audit Tool ---------- -------------- ------------- ------------ Node.js package.json taze npm audit Python requirements.txt, pyproject.toml pip-review safety, pip-audit Go go.mod go get -u govulncheck Rust Cargo.toml cargo update cargo audit Ruby Gemfile bundle update bundle audit Java pom.xml, build.gradle mvn versions: mvn dependency: .NET .csproj dotnet outdated dotnet li
- [ ] Updates scanned without errors
- [ ] MINOR/PATCH auto-applied
- [ ] MAJOR updates prompted individually
- [ ] Fixed versions untouched
- [ ] Lock file updated
Dependency Updater by the numbers
- 3,835 all-time installs (skills.sh)
- +18 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #42 of 1,453 DevOps & CI/CD skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
dependency-updater capabilities & compatibility
- Capabilities
- [ ] updates scanned without errors · [ ] minor/patch auto applied · [ ] major updates prompted individually · [ ] fixed versions untouched · [ ] lock file updated
- Use cases
- ci cd · devops
What dependency-updater says it does
Smart dependency management for any language with automatic detection and safe updates.
The skill auto-detects your project type and handles the rest.
│ Step 1: DETECT PROJECT TYPE │
npx skills add https://github.com/softaworks/agent-toolkit --skill dependency-updaterAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 3.8k |
|---|---|
| repo stars | ★ 2.2k |
| Security audit | 3 / 3 scanners passed |
| Last updated | March 5, 2026 |
| Repository | softaworks/agent-toolkit ↗ |
How do I auto-detect project type and apply safe dependency updates with prompts for breaking major bumps with documented agent guidance?
Auto-detect project type and apply safe dependency updates with prompts for breaking major bumps.
Who is it for?
Developers who need devops & ci/cd help during ship work.
Skip if: Skip when the task falls outside DevOps & CI/CD scope described in SKILL.md.
When should I use this skill?
Auto-detect project type and apply safe dependency updates with prompts for breaking major bumps.
What you get
Completed devops & ci/cd workflow aligned with SKILL.md steps and validation.
- Updated dependency manifests and lockfiles
- Security audit report
By the numbers
- [ ] Updates scanned without errors
- [ ] MINOR/PATCH auto-applied
- [ ] MAJOR updates prompted individually
Files
Dependency Updater
Smart dependency management for any language with automatic detection and safe updates.
---
Quick Start
update my dependenciesThe skill auto-detects your project type and handles the rest.
---
Triggers
| Trigger | Example |
|---|---|
| Update dependencies | "update dependencies", "update deps" |
| Check outdated | "check for outdated packages" |
| Fix dependency issues | "fix my dependency problems" |
| Security audit | "audit dependencies for vulnerabilities" |
| Diagnose deps | "diagnose dependency issues" |
---
Supported Languages
| Language | Package File | Update Tool | Audit Tool |
|---|---|---|---|
| Node.js | package.json | taze | npm audit |
| Python | requirements.txt, pyproject.toml | pip-review | safety, pip-audit |
| Go | go.mod | go get -u | govulncheck |
| Rust | Cargo.toml | cargo update | cargo audit |
| Ruby | Gemfile | bundle update | bundle audit |
| Java | pom.xml, build.gradle | mvn versions:* | mvn dependency:* |
| .NET | *.csproj | dotnet outdated | dotnet list package --vulnerable |
---
Quick Reference
| Update Type | Version Change | Action |
|---|---|---|
| Fixed | No ^ or ~ | Skip (intentionally pinned) |
| PATCH | x.y.z → x.y.Z | Auto-apply |
| MINOR | x.y.z → x.Y.0 | Auto-apply |
| MAJOR | x.y.z → X.0.0 | Prompt user individually |
---
Workflow
User Request
│
▼
┌─────────────────────────────────────────────────────┐
│ Step 1: DETECT PROJECT TYPE │
│ • Scan for package files (package.json, go.mod...) │
│ • Identify package manager │
├─────────────────────────────────────────────────────┤
│ Step 2: CHECK PREREQUISITES │
│ • Verify required tools are installed │
│ • Suggest installation if missing │
├─────────────────────────────────────────────────────┤
│ Step 3: SCAN FOR UPDATES │
│ • Run language-specific outdated check │
│ • Categorize: MAJOR / MINOR / PATCH / Fixed │
├─────────────────────────────────────────────────────┤
│ Step 4: AUTO-APPLY SAFE UPDATES │
│ • Apply MINOR and PATCH automatically │
│ • Report what was updated │
├─────────────────────────────────────────────────────┤
│ Step 5: PROMPT FOR MAJOR UPDATES │
│ • AskUserQuestion for each MAJOR update │
│ • Show current → new version │
├─────────────────────────────────────────────────────┤
│ Step 6: APPLY APPROVED MAJORS │
│ • Update only approved packages │
├─────────────────────────────────────────────────────┤
│ Step 7: FINALIZE │
│ • Run install command │
│ • Run security audit │
└─────────────────────────────────────────────────────┘---
Commands by Language
Node.js (npm/yarn/pnpm)
# Check prerequisites
scripts/check-tool.sh taze "npm install -g taze"
# Scan for updates
taze
# Apply minor/patch
taze minor --write
# Apply specific majors
taze major --write --include pkg1,pkg2
# Monorepo support
taze -r # recursive
# Security
npm audit
npm audit fixPython
# Check outdated
pip list --outdated
# Update all (careful!)
pip-review --auto
# Update specific
pip install --upgrade package-name
# Security
pip-audit
safety checkGo
# Check outdated
go list -m -u all
# Update all
go get -u ./...
# Tidy up
go mod tidy
# Security
govulncheck ./...Rust
# Check outdated
cargo outdated
# Update within semver
cargo update
# Security
cargo auditRuby
# Check outdated
bundle outdated
# Update all
bundle update
# Update specific
bundle update --conservative gem-name
# Security
bundle auditJava (Maven)
# Check outdated
mvn versions:display-dependency-updates
# Update to latest
mvn versions:use-latest-releases
# Security
mvn dependency:tree
mvn dependency-check:check.NET
# Check outdated
dotnet list package --outdated
# Update specific
dotnet add package PackageName
# Security
dotnet list package --vulnerable---
Diagnosis Mode
When dependencies are broken, run diagnosis:
Common Issues & Fixes
| Issue | Symptoms | Fix |
|---|---|---|
| Version Conflict | "Cannot resolve dependency tree" | Clean install, use overrides/resolutions |
| Peer Dependency | "Peer dependency not satisfied" | Install required peer version |
| Security Vuln | npm audit shows issues | npm audit fix or manual update |
| Unused Deps | Bloated bundle | Run depcheck (Node) or equivalent |
| Duplicate Deps | Multiple versions installed | Run npm dedupe or equivalent |
Emergency Fixes
# Node.js - Nuclear reset
rm -rf node_modules package-lock.json
npm cache clean --force
npm install
# Python - Clean virtualenv
rm -rf venv
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# Go - Reset modules
rm go.sum
go mod tidy---
Security Audit
Run security checks for any project:
# Node.js
npm audit
npm audit --json | jq '.metadata.vulnerabilities'
# Python
pip-audit
safety check
# Go
govulncheck ./...
# Rust
cargo audit
# Ruby
bundle audit
# .NET
dotnet list package --vulnerableSeverity Response
| Severity | Action |
|---|---|
| Critical | Fix immediately |
| High | Fix within 24h |
| Moderate | Fix within 1 week |
| Low | Fix in next release |
---
Anti-Patterns
| Avoid | Why | Instead |
|---|---|---|
| Update fixed versions | Intentionally pinned | Skip them |
| Auto-apply MAJOR | Breaking changes | Prompt user |
| Batch MAJOR prompts | Loses context | Prompt individually |
| Skip lock file | Irreproducible builds | Always commit lock files |
| Ignore security alerts | Vulnerabilities | Address by severity |
---
Verification Checklist
After updates:
- [ ] Updates scanned without errors
- [ ] MINOR/PATCH auto-applied
- [ ] MAJOR updates prompted individually
- [ ] Fixed versions untouched
- [ ] Lock file updated
- [ ] Install command ran
- [ ] Security audit passed (or issues noted)
---
<details> <summary><strong>Deep Dive: Project Detection</strong></summary>
The skill auto-detects project type by scanning for package files:
| File Found | Language | Package Manager |
|---|---|---|
package.json | Node.js | npm/yarn/pnpm |
requirements.txt | Python | pip |
pyproject.toml | Python | pip/poetry |
Pipfile | Python | pipenv |
go.mod | Go | go modules |
Cargo.toml | Rust | cargo |
Gemfile | Ruby | bundler |
pom.xml | Java | Maven |
build.gradle | Java/Kotlin | Gradle |
*.csproj | .NET | dotnet |
Detection order matters for monorepos: 1. Check current directory first 2. Then check for workspace/monorepo patterns 3. Offer to run recursively if applicable
</details>
<details> <summary><strong>Deep Dive: Node.js with taze</strong></summary>
Prerequisites
# Install taze globally (recommended)
npm install -g taze
# Or use npx
npx tazeSmart Update Flow
# 1. Scan all updates
taze
# 2. Apply safe updates (minor + patch)
taze minor --write
# 3. For each major, prompt user:
# "Update @types/node from ^20.0.0 to ^22.0.0?"
# If yes, add to approved list
# 4. Apply approved majors
taze major --write --include approved-pkg1,approved-pkg2
# 5. Install
npm install # or pnpm install / yarnAuto-Approve List
Some packages have frequent major bumps but are backward-compatible:
| Package | Reason |
|---|---|
lucide-react | Icon library, majors are additive |
@types/* | Type definitions, usually safe |
</details>
<details> <summary><strong>Deep Dive: Version Strategies</strong></summary>
Semantic Versioning
MAJOR.MINOR.PATCH (e.g., 2.3.1)
MAJOR: Breaking changes - requires code changes
MINOR: New features - backward compatible
PATCH: Bug fixes - backward compatibleRange Specifiers
| Specifier | Meaning | Example |
|---|---|---|
^1.2.3 | Minor + Patch OK | >=1.2.3 <2.0.0 |
~1.2.3 | Patch only | >=1.2.3 <1.3.0 |
1.2.3 | Exact (fixed) | Only 1.2.3 |
>=1.2.3 | At least | Any >=1.2.3 |
* | Any | Latest (dangerous) |
Recommended Strategy
{
"dependencies": {
"critical-lib": "1.2.3", // Exact for critical
"stable-lib": "~1.2.3", // Patch only for stable
"modern-lib": "^1.2.3" // Minor OK for active
}
}</details>
<details> <summary><strong>Deep Dive: Conflict Resolution</strong></summary>
Node.js Conflicts
Diagnosis:
npm ls package-name # See dependency tree
npm explain package-name # Why installed
yarn why package-name # Yarn equivalentResolution with overrides:
// package.json
{
"overrides": {
"lodash": "^4.18.0"
}
}Resolution with resolutions (Yarn):
{
"resolutions": {
"lodash": "^4.18.0"
}
}Python Conflicts
Diagnosis:
pip check
pipdeptree -p package-nameResolution:
# Use virtual environment
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# Or use constraints
pip install -c constraints.txt -r requirements.txt</details>
---
Script Reference
| Script | Purpose |
|---|---|
scripts/check-tool.sh | Verify tool is installed |
scripts/run-taze.sh | Run taze with proper flags |
---
Related Tools
| Tool | Language | Purpose |
|---|---|---|
| taze | Node.js | Smart dependency updates |
| npm-check-updates | Node.js | Alternative to taze |
| pip-review | Python | Interactive pip updates |
| cargo-edit | Rust | Cargo dependency management |
| bundler-audit | Ruby | Security auditing |
Dependency Updater
Smart dependency management for any programming language with automatic detection and safe updates.
Purpose
The Dependency Updater skill provides intelligent, language-agnostic dependency management that:
- Auto-detects your project type by scanning for package files (package.json, go.mod, Cargo.toml, etc.)
- Applies safe updates automatically (minor and patch versions)
- Prompts for major updates individually to prevent breaking changes
- Respects intentionally pinned versions by skipping fixed dependencies
- Runs security audits to identify vulnerabilities
- Diagnoses and fixes common dependency issues
This skill eliminates the manual work of checking for outdated packages across different ecosystems while maintaining safety through semantic versioning awareness.
When to Use
Use this skill when you want to:
| Scenario | Trigger Phrases |
|---|---|
| Update dependencies | "update dependencies", "update deps", "update my packages" |
| Check for outdated packages | "check for outdated packages", "what packages need updating" |
| Fix dependency problems | "fix my dependency problems", "resolve dependency conflicts" |
| Security audit | "audit dependencies for vulnerabilities", "check for security issues" |
| Diagnose issues | "diagnose dependency issues", "why won't my dependencies install" |
Quick Start:
update my dependenciesThe skill will auto-detect your project type and handle everything.
Supported Languages
| Language | Package File | Update Tool | Audit Tool |
|---|---|---|---|
| Node.js | package.json | taze | npm audit |
| Python | requirements.txt, pyproject.toml, Pipfile | pip-review | safety, pip-audit |
| Go | go.mod | go get -u | govulncheck |
| Rust | Cargo.toml | cargo update | cargo audit |
| Ruby | Gemfile | bundle update | bundle audit |
| Java | pom.xml, build.gradle | mvn versions:* | mvn dependency-check:check |
| .NET | *.csproj | dotnet outdated | dotnet list package --vulnerable |
How It Works
The skill follows a systematic 7-step workflow:
1. DETECT PROJECT TYPE
Scan for package files and identify the package manager
2. CHECK PREREQUISITES
Verify required tools are installed, suggest installation if missing
3. SCAN FOR UPDATES
Run language-specific outdated checks and categorize updates
4. AUTO-APPLY SAFE UPDATES
Automatically apply MINOR and PATCH updates
5. PROMPT FOR MAJOR UPDATES
Ask user about each MAJOR update individually (breaking changes)
6. APPLY APPROVED MAJORS
Update only the packages the user approved
7. FINALIZE
Run install command and security auditUpdate Classification
| Update Type | Version Change | Action |
|---|---|---|
| Fixed | No ^ or ~ prefix | Skip (intentionally pinned) |
| PATCH | 1.2.3 to 1.2.4 | Auto-apply |
| MINOR | 1.2.3 to 1.3.0 | Auto-apply |
| MAJOR | 1.2.3 to 2.0.0 | Prompt user individually |
Key Features
Language-Agnostic Detection
The skill automatically identifies your project by scanning for common package files:
package.json- Node.js (npm/yarn/pnpm)requirements.txt/pyproject.toml/Pipfile- Pythongo.mod- GoCargo.toml- RustGemfile- Rubypom.xml/build.gradle- Java/Kotlin*.csproj- .NET
Safe-by-Default Updates
- Minor and patch updates are applied automatically (backward compatible)
- Major updates require explicit approval (may contain breaking changes)
- Fixed/pinned versions are never modified
Security Auditing
Built-in security vulnerability scanning for each ecosystem:
- Identifies vulnerabilities by severity (Critical, High, Moderate, Low)
- Recommends appropriate response times based on severity
- Integrates with ecosystem-specific audit tools
Dependency Diagnosis
Troubleshoots common issues:
- Version conflicts
- Peer dependency problems
- Security vulnerabilities
- Unused dependencies
- Duplicate packages
Usage Examples
Basic Update
update my dependenciesThe skill will scan your project, apply safe updates, and prompt for major versions.
Security-Focused Audit
audit my dependencies for security issuesRuns security scanners and reports vulnerabilities by severity.
Diagnose Problems
my npm install keeps failing, diagnose the issueAnalyzes dependency tree, identifies conflicts, and suggests fixes.
Node.js Specific
# Check prerequisites
scripts/check-tool.sh taze "npm install -g taze"
# Run taze directly
scripts/run-taze.sh
# Run in monorepo mode
scripts/run-taze.sh -rPrerequisites
General Requirements
Each language ecosystem requires its standard package manager:
- Node.js: npm, yarn, or pnpm
- Python: pip
- Go: go modules
- Rust: cargo
- Ruby: bundler
- Java: Maven or Gradle
- .NET: dotnet CLI
Recommended Tools
For the best experience, install these optional but recommended tools:
| Language | Tool | Install Command |
|---|---|---|
| Node.js | taze | npm install -g taze |
| Python | pip-review | pip install pip-review |
| Python | pip-audit | pip install pip-audit |
| Go | govulncheck | go install golang.org/x/vuln/cmd/govulncheck@latest |
| Rust | cargo-audit | cargo install cargo-audit |
| Ruby | bundler-audit | gem install bundler-audit |
Output
Update Summary
After running, you will see:
- List of auto-applied minor/patch updates
- Prompts for each major update decision
- Final package count and versions
- Security audit results
Security Audit Results
Vulnerabilities are reported with severity levels:
| Severity | Recommended Response |
|---|---|
| Critical | Fix immediately |
| High | Fix within 24 hours |
| Moderate | Fix within 1 week |
| Low | Fix in next release |
Best Practices
Do
- Commit lock files - Always commit package-lock.json, yarn.lock, go.sum, etc.
- Review major updates - Check changelogs before approving major version bumps
- Run tests after updates - Verify your application still works
- Address security issues promptly - Prioritize by severity level
- Use version ranges appropriately -
^for active libraries,~for stable ones, exact for critical dependencies
Avoid
- Don't auto-approve all majors - Breaking changes require code modifications
- Don't ignore security alerts - Vulnerabilities can be exploited
- Don't update fixed versions - They were pinned for a reason
- Don't skip the lock file - It ensures reproducible builds
Version Range Strategy
{
"dependencies": {
"critical-lib": "1.2.3", // Exact for critical dependencies
"stable-lib": "~1.2.3", // Patch only for stable libraries
"modern-lib": "^1.2.3" // Minor OK for actively maintained
}
}Emergency Fixes
When dependencies are completely broken:
Node.js - Nuclear Reset
rm -rf node_modules package-lock.json
npm cache clean --force
npm installPython - Clean Virtual Environment
rm -rf venv
python -m venv venv
source venv/bin/activate
pip install -r requirements.txtGo - Reset Modules
rm go.sum
go mod tidyVerification Checklist
After running updates, verify:
- [ ] Updates scanned without errors
- [ ] Minor/patch updates auto-applied
- [ ] Major updates prompted individually
- [ ] Fixed versions remained untouched
- [ ] Lock file updated
- [ ] Install command succeeded
- [ ] Security audit passed (or issues noted)
- [ ] Tests pass
- [ ] Application runs correctly
Related Tools
| Tool | Language | Purpose | Link |
|---|---|---|---|
| taze | Node.js | Smart dependency updates | GitHub |
| npm-check-updates | Node.js | Alternative to taze | GitHub |
| pip-review | Python | Interactive pip updates | GitHub |
| cargo-edit | Rust | Cargo dependency management | GitHub |
| bundler-audit | Ruby | Security auditing | GitHub |
License
MIT
#!/bin/bash
# Check if a tool is installed and provide installation instructions if not
TOOL_NAME="$1"
INSTALL_CMD="$2"
if [ -z "$TOOL_NAME" ]; then
echo "Usage: check-tool.sh <tool-name> [install-command]"
exit 1
fi
if command -v "$TOOL_NAME" &> /dev/null; then
echo "OK: $TOOL_NAME is installed"
$TOOL_NAME --version 2>/dev/null || true
exit 0
else
echo "MISSING: $TOOL_NAME is not installed"
if [ -n "$INSTALL_CMD" ]; then
echo "Install with: $INSTALL_CMD"
fi
exit 1
fi
#!/bin/bash
# Run taze for Node.js dependency updates
# Usage: run-taze.sh [-r] [additional-args]
# -r: Recursive mode for monorepos
set -e
# Check if taze is installed
if ! command -v taze &> /dev/null; then
echo "ERROR: taze is not installed"
echo ""
echo "Install options:"
echo " npm install -g taze # Global install (recommended)"
echo " npx taze # One-time via npx"
exit 1
fi
# Check if package.json exists
if [ ! -f "package.json" ]; then
echo "ERROR: No package.json found in current directory"
exit 2
fi
# Run taze with provided arguments
echo "Running taze..."
taze "$@"
Related skills
Forks & variants (2)
Dependency Updater has 2 known copies in the catalog totaling 263 installs. They canonicalize to this original listing.
- connorads - 249 installs
- cachemoney - 14 installs
How it compares
dependency-updater is an agent skill for auto-detect project type and apply safe dependency updates with prompts for breaking major bumps, not a generic alternative.
FAQ
Who is dependency-updater for?
Developers using DevOps & CI/CD workflows with agent-guided SKILL.md steps.
When should I use dependency-updater?
Auto-detect project type and apply safe dependency updates with prompts for breaking major bumps.
Is dependency-updater safe to install?
Review the Security Audits panel on this page before installing in production.