mit einem Klick
disk-usage
Analyze disk usage and find large files
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Analyze disk usage and find large files
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Security assessment of a codebase — minimal mode for runner validation
Daily fetch from a fixed public allowlist; score against the user's interests file; cluster into themes; push the digest to the configured channel
Read-only retrieval over the daily-digest kept set. Slash-invoke with `/librarian <question>`; returns items verbatim with citations.
Math calculations and unit conversions
Parse and analyze CSV data
Docker container management
| name | disk-usage |
| description | Analyze disk usage and find large files |
| disable-model-invocation | false |
| permissions | {"tools":{"allow":["exec"]},"egress":{"mode":"deny"},"inference":{"allow":["*"]}} |
Analyze disk space and find what's taking up room.
df -hdu -sh .du -sh */ | sort -rhdu -h --max-depth=2 | sort -rh | head -20find . -type f -exec du -h {} + | sort -rh | head -20find . -size +100M -type f -exec ls -lh {} \;find . -size +1G -type f -exec ls -lh {} \;find /var/log -name "*.gz" -mtime +30 -type ffind / -name "core.*" -type f 2>/dev/nulldocker system df (if Docker is installed)du -sh /var/cache/apt/archives/