A simple Python script that permanently deletes all directories inside ~/Library/Caches on macOS.
Apple and installed apps dump a ton of cached bullshit here that they hold onto indefinitely. Clearing it out is a quick way to free up storage without breaking anything.
# Preview what will be deleted
python3 clean_caches.py --dry-run
# Delete everything
python3 clean_caches.pyYou'll be prompted to confirm before anything is deleted.
Enjoy!