Audit Python deps for vulnerabilities updates and licenses
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill dependency-audit --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dependency Audit?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-dependency-audit)More formats (shields.io, HTML) on the badges page.
---
name: dependency-audit
description: "Audit Python deps for vulnerabilities updates and licenses"
---
# Dependency Audit
## Check for Vulnerabilities
```bash
# pip-audit
pip install pip-audit
pip-audit
# Safety
pip install safety
safety check
# pip freeze comparison
pip freeze | safety check --stdin
```
## Check for Outdated Packages
```bash
pip list --outdated
# pip-upgrader
pip install pip-upgrader
pip-upgrade
```
## License Checking
```bash
pip install pip-licenses
pip-licenses
pip-licenses --summary
pip-licenses --allow-only "MIT;Apache-2.0"
```
## requirements.txt Hygiene
```bash
# Generate from installed
pip freeze > requirements.txt
# Generate with hashes (secure)
pip freeze --require-hashes > requirements.txt
# Compile from setup.cfg/pyproject.toml
pip install pip-tools
pip-compile pyproject.toml
```
## Automated Audit (Cron)
```bash
hermes cron create \
--schedule "0 9 * * 1" \
--script "scripts/dep-audit.sh" \
--no-agent \
--deliver telegram
```
Script outputs only when issues found (empty = silent).
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.