Disk Cleaner
Analyze disk usage, find large/old files, and suggest safe cleanup actions.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/sa9saq/disk-cleanerDisk Cleaner
Analyze disk usage and identify cleanup opportunities.
Instructions
-
Filesystem overview:
df -h --output=source,size,used,avail,pcent,target | grep -v tmpfs -
Directory analysis (top space consumers):
du -sh /path/* 2>/dev/null | sort -rh | head -20 -
Find large files:
find /path -type f -size +100M -exec ls -lh {} \; 2>/dev/null | sort -k5 -rh | head -20 -
Find old files (not modified in 90+ days):
find /path -type f -mtime +90 -size +10M -exec ls -lh {} \; 2>/dev/null | sort -k5 -rh -
Common cleanup targets:
# Package caches du -sh ~/.cache/pip ~/.npm/_cacache ~/.cache/yarn 2>/dev/null # Docker docker system df 2>/dev/null # Logs du -sh /var/log/* 2>/dev/null | sort -rh | head -10 # Trash du -sh ~/.local/share/Trash 2>/dev/null # Temp du -sh /tmp 2>/dev/null -
Report format:
💾 Disk Report — /home (85% used, 12GB free) ## Top Space Users | Path | Size | Last Modified | |------|------|---------------| | ~/Downloads | 8.2 GB | various | | ~/.cache | 3.1 GB | today | ## Cleanup Suggestions | Action | Saves | Command | Risk | |--------|-------|---------|------| | Clear npm cache | ~1.2 GB | npm cache clean --force | 🟢 Safe | | Docker prune | ~4.5 GB | docker system prune -a | 🟡 Review | | Old logs | ~800 MB | find /var/log -mtime +30 -delete | 🟡 Review |
Security
- Never auto-delete — always show commands and let user confirm
- Use
trashoverrmwhen available (recoverable) - Skip
/proc,/sys,/devin scans - Don't scan directories outside user's permission
Edge Cases
- Permission denied: Use
2>/dev/nullto suppress; note inaccessible dirs - Symlinks: Use
-not -type lto avoid counting symlinked data twice - Mounted drives: Identify mount points; don't accidentally clean external storage
Requirements
- Standard Unix tools:
du,df,find,sort - No API keys needed
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-sa9saq-disk-cleaner": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
threat-model
Threat modeling and attack scenario design. Identify risks before they become vulnerabilities. STRIDE, attack trees, risk matrix.
Sns Auto Poster
Schedule and automate social media posts to X/Twitter with cron-based queue management.
security-review
Comprehensive security review for code, configs, and operations. OWASP, prompt injection, crypto security. Auto-triggers on security-related changes.
Process Monitor
Monitor system processes, identify top CPU/memory consumers, and alert on resource thresholds.
Readme Generator
Auto-generate comprehensive README.md files by analyzing project structure and configuration.