Disk Cleanup

SkillFiles & storage

Use when df says disk is above 80% full or the user wants to reclaim storage space on a VM.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Disk Cleanup skill

What this skill tells your AI

The instructions your AI receives, as published by moonlight-lupin/agent-skills in devops/disk-cleanup/SKILL.md and read by ahel’s review.

Reclaim disk space on a Linux VM. The skill runs a triage — survey every space consumer, split targets into safe vs ask, execute the approved set, then verify the delta.

When to Use

  • User says "disk cleanup", "free up space", "clean up the VM"
  • Disk usage above 80%
  • After large builds, git operations, or Docker image accumulation

Procedure

1. Baseline

df -h

Done: used and available numbers recorded for all mounts for the before/after comparison.

2. Survey

Requires root for apt, journalctl, and /var/log operations. Non-root users can survey but cannot clean system paths.

Build a ranked list of every consumer over ~50M. Survey all mounts, not just /.

# All mounts (not just /)
df -h
df -i                           # inode exhaustion — "No space left on device" with free blocks

# Deleted-but-open files (canonical "df says full, du says empty" case)
lsof +L1 2>/dev/null | head -20

# Hermes data + user caches + tmp (stay on one filesystem, don't cross mounts)
du -xsh ~/.hermes/*/ 2>/dev/null | sort -rh | head -20
du -xsh ~/.hermes/projects/*/ 2>/dev/null | sort -rh | head -20
du -xsh ~/.cache/*/ 2>/dev/null | sort -rh | head -15
du -xsh /tmp/* 2>/dev/null | sort -rh | head -15

# Memory store (if Mnemosyne is installed)
du -xsh ~/.hermes/mnemosyne/data/* 2>/dev/null | sort -rh

# Session checkpoints (if present)
du -xsh ~/.hermes/checkpoints/store/ 2>/dev/null

# Docker
docker system df                # shows build cache separately from images
docker images --format "{{.Size}}\t{{.Repository}}:{{.Tag}}" | sort -rh | head -25
docker ps -a --filter "status=exited" --format "{{.Image}}" | sort -u

# System
du -xsh /var/cache/apt /var/log ~/.cache/pip ~/.cache/uv 2>/dev/null
journalctl --disk-usage
find /var/log \( -name "*.gz" -o -name "*.1" -o -name "*.old" \) 2>/dev/null

# Bloated git repos (orphaned tmp_pack files from interrupted operations)
find ~/.hermes/projects -name ".git" -type d -exec sh -c 'du -sh "$1" 2>/dev/null' _ {} \; | sort -rh | head -10

Done: every consumer over 50M identified with its size. All mounts surveyed. Inode exhaustion and deleted-but-open files checked.

3. Triage

Split every found target into two buckets. Present the table to the user before executing.

Safe — execute without asking:

TargetCommandReclaims
uv cacheuv cache pruneUp to full cache size
pip cachepip cache purgeUp to full cache size
apt cacheapt autoclean~100M typical
Journal logsjournalctl --vacuum-size=50MDown to 50M
Rotated logsfind /var/log \( -name "*.gz" -o -name "*.1" -o -name "*.old" \) -delete~20M typical
Browser automation cachesrm -rf ~/.cache/puppeteer ~/.cache/ms-playwright~650M; re-downloads if needed
Dangling Docker imagesdocker image prune -fVaries
Docker build cachedocker builder prune -f --filter until=168h --reserved-space 10GBOften multi-GB; bounded: skips cache younger than 7 days, always keeps 10GB

Ask first — user must confirm:

TargetRiskCommand
git gc aggressiveDestroys recoverable objects (dropped stashes, orphaned commits after bad reset). Aggressive repack temporarily grows disk use.cd /repo && git gc --aggressive --prune=now
apt autoremoveMay remove wanted packages. Review the list before confirming.apt autoremove (without -y)
Old DB backupsConfirm current DB is healthy first. Use explicit paths, not globs.rm /path/to/specific-backup.bak
Stale /tmp dirsDirectory mtime does not track activity inside. List before deleting.find /tmp -maxdepth 1 -mtime +3 -type d -name "*_*" | xargs ls -ld then confirm
Docker images for stopped containersMay want to restart laterdocker rmi <image>
Session checkpoint storesMay contain recoverable state
Large skill references (PDFs, maps, RAG indexes)User data
Large project uploadsUser data
Docker images for running servicesDisruptive

Done: table presented with safe-only total and with-ask total. User has approved a set.

4. Execute

Run the commands from the Safe table for each approved target. Capture before/after size for each.

For Docker stopped containers + images (requires two steps):

docker rm $(docker ps -a --filter "status=exited" --filter "ancestor=IMAGE" -q)
docker rmi IMAGE

Done: every approved target cleaned. Before/after size captured for each.

5. Verify

df -h

Compare per-mount against baseline from step 1.

Done: total reclaimed reported per mount. Used/free compared against baseline.

Pitfalls

ProblemCauseFix
df shows free blocks but writes fail with ENOSPCInode exhaustion — millions of small files. Check df -i.Locate with find <mount> -xdev -type f | head -100000 | wc -l per directory, then clear the offending cache/spool. Disk-size cleanup will not help.
df says full but du shows nothingA process holds a deleted file open. Check lsof +L1.Identify the holding process with lsof +L1, restart it (or truncate via cat /dev/null > /proc/<pid>/fd/<n>). No file deletion reclaims this.
git gc reclaims nothingNo orphaned objects — just large historyAccept the size or run git repack -ad for marginal compression
tmp_pack files persist after gcGit process still running or lock filefuser .git/objects/pack/*.pack to find the process, retry after it ends
Docker rmi fails "image is in use"Stopped container still references itdocker rm the container first, then docker rmi
apt autoremove lists wanted packagesAuto-removable deps flagged incorrectlyReview the list before confirming; skip with apt-mark manual <pkg>
journalctl --vacuum-size failsJournald service issuesystemctl restart systemd-journald then retry
uv cache prune failsuv not in PATHUse python -m uv cache prune

Signals

GitHub stars
65
Forks
11
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
disk-cleanup
Source
github.com/moonlight-lupin/agent-skills