dependency-update-checker
CLI tool to check for outdated dependencies in package.json, requirements.txt, pyproject.toml, and other package files.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/derick001/dependency-update-checkerDependency Update Checker
What This Does
A CLI tool that checks for outdated dependencies by running native package manager commands. Currently supports:
- npm: Checks
package.jsondependencies usingnpm outdated - pip: Checks
requirements.txtusingpip list --outdated - poetry: Checks
pyproject.tomlusingpoetry show --outdated(if poetry is installed)
The tool detects which package managers are relevant based on files in the current directory and runs the appropriate checks.
When To Use
- You want a quick overview of outdated dependencies across multiple projects
- You need to check dependency status before updating or deploying
- You're managing multiple projects with different package managers
- You want a consistent interface for checking updates across ecosystems
Usage
Check dependencies in current directory:
python3 scripts/main.py check
Check specific package manager:
python3 scripts/main.py check --manager npm
python3 scripts/main.py check --manager pip
python3 scripts/main.py check --manager poetry
Output format (JSON):
python3 scripts/main.py check --format json
Examples
Example 1: Check all dependencies
cd /path/to/project
python3 scripts/main.py check
Output:
Checking dependencies...
[✓] Found package.json
[✓] Running npm outdated...
┌─────────────────┬─────────┬─────────┬─────────┬──────────────┐
│ Package │ Current │ Wanted │ Latest │ Package Type │
├─────────────────┼─────────┼─────────┼─────────┼──────────────┤
│ express │ 4.17.1 │ 4.18.0 │ 4.18.0 │ dependencies │
│ lodash │ 4.17.20 │ 4.17.21 │ 4.17.21 │ dependencies │
└─────────────────┴─────────┴─────────┴─────────┴──────────────┘
[✓] Found requirements.txt
[✓] Running pip list --outdated...
┌─────────────────┬─────────┬─────────┐
│ Package │ Current │ Latest │
├─────────────────┼─────────┼─────────┤
│ requests │ 2.28.1 │ 2.31.0 │
│ flask │ 2.2.3 │ 2.3.0 │
└─────────────────┴─────────┴─────────┘
Example 2: JSON output
python3 scripts/main.py check --format json
Output:
{
"npm": [
{
"package": "express",
"current": "4.17.1",
"wanted": "4.18.0",
"latest": "4.18.0",
"type": "dependencies"
}
],
"pip": [
{
"package": "requests",
"current": "2.28.1",
"latest": "2.31.0"
}
]
}
Requirements
- Python 3.x
- npm: Required for checking Node.js dependencies
- pip: Required for checking Python dependencies
- poetry: Optional, for checking Poetry projects
Limitations
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-derick001-dependency-update-checker": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
multi-chat-context-manager
CLI tool to store and retrieve conversation contexts per channel/user.
docker-container-cleaner
CLI tool to clean up stopped Docker containers, unused images, volumes, and networks to free up disk space.
ssl-certificate-monitor
Monitor SSL certificates for expiration, security issues, and compliance across domains and subdomains.
secret-detection
Git hook to detect secrets before commit.
ssh-config-manager
CLI tool to manage SSH config files, organize hosts, generate configs, and test connections.