| name | source-command-check-deps |
| description | Check for outdated or vulnerable dependencies |
source-command-check-deps
Use this skill when the user asks to run the migrated source command check-deps.
Command Template
Check project dependencies for updates and vulnerabilities.
Execute the following checks:
- List outdated packages:
uv pip list --outdated
- Check for security vulnerabilities:
safety check
- Review pyproject.toml dependencies
- Check for deprecated package warnings
Report back with:
- List of outdated packages with current and latest versions
- Security vulnerabilities found (if any)
- Recommendations for which packages to update
- Potential breaking changes to watch for
- Commands to update specific packages
Ask if I want to update any packages before proceeding.