skills/modelscope.cn/disk-space-analyzer

disk-space-analyzer

SKILL.md

Disk Space Analyzer

Analyze disk space usage and identify files that can be safely cleaned. Data source and scripts differ by OS — do not reuse Windows scripts on macOS or vice versa.

First: determine the current operating system, then follow the workflow for that system only.

System check

Before any workflow steps, determine the OS:

  • Windows: sys.platform == "win32" or user is on Windows.
  • macOS: sys.platform == "darwin" or user is on Mac.

You can run:

python3 -c "import sys; print(sys.platform)"

(win32 → Windows, darwin → macOS)

Installs
1
First Seen
Jun 4, 2026
disk-space-analyzer from modelscope.cn