agentsclimarketplace

Windows disk cleanup safety

Skill 717qwq/windows-disk-cleanup-safety

Use when freeing disk space on a Windows machine (C: drive full, "low disk space") and deciding what is safe to delete — telling cache apart from irreplaceable user data, and avoiding app folders that break when deleted directly.From its SKILL.md

Install
npx -y skills add 717qwq/windows-disk-cleanup-safety

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.9 KB, 665 tokens by cl100k_base, as published. Nobody here has run it

Windows Disk Cleanup Safety

Overview

Cache rebuilds itself; data does not. When freeing disk space, the only real risk is irreversibly deleting something the user can never get back. A folder is not deletable because it is big — it is deletable only once you have identified what it is. Classify every large item before touching it, and never delete an app's whole data folder when the app has its own cleanup.

Classify every large item

TierWhat it isRule
CacheRebuilds itself invisibly, zero cost (HTTP / shader / game-asset caches, %TEMP%)Safe to delete the contents (keep the folder)
Reclaimable storeRebuilds, but at a cost — re-download, slower first build, offline pain (package stores: .nuget\packages, conda / npm / pip / yarn stores, Docker images)Delete only with the user aware of the cost
User dataNever regenerates (chat history, game saves, documents, browser logins/extensions, deleted files still in the Recycle Bin)Never auto-delete — point it out, let the user decide

A big folder is not deletable because it is big. It is deletable because you identified what it is.

App-specific traps

Most "I deleted a folder and broke something" disasters are here. Never rm an app's whole data folder — use its own cleanup path.

App / areaTrap if you delete the folderSafe approach
Messengers (WeChat, QQ, Telegram)Corrupts the message database — chat history lostUse the app's in-app storage management
Browsers (Edge, Chrome)Wiping User Data loses logins, extensions, site dataDelete only Cache, Code Cache, GPUCache, DawnCache; never IndexedDB, Extensions, Local Storage, Service Worker
Collaboration apps (Feishu/Lark, Slack, Teams)Forces re-login and re-download of filesClear cache from the app's settings
Package managers (npm, pip, conda, yarn, NuGet)Breaks the "no re-download" guarantee or corrupts the storeOfficial commands: npm cache clean --force, pip cache purge, conda clean -a -y, yarn cache clean, dotnet nuget locals all --clear
Recycle BinThese are the user's own deleted-but-recoverable files, not cacheConfirm before emptying (Clear-RecycleBin)
System files (Windows.old, hiberfil.sys, Windows\Temp, update cache)Manual delete fails or breaks the system; needs adminUse built-in tools: cleanmgr → "Clean up system files", or powercfg /h off to remove the hibernation file

What ships with it: 3 files

4.9 KB alongside SKILL.md

Keep looking

Skills are one crate of 326,149. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.