TL;DR — Quick Summary
kondo finds and cleans build artifacts (node_modules, target, .build, __pycache__) across your projects. Reclaim gigabytes of disk space with a single command.
kondo declutters dev machines. Find and remove build artifacts — reclaim gigabytes.
Installation
# macOS
brew install kondo
# Cargo
cargo install kondo
Usage
# Scan current directory
kondo
# Scan specific path
kondo ~/projects
# Scan with age filter (older than 3 months)
kondo --older 3m
# Just show what would be cleaned (dry run)
kondo --dry-run
Summary
- kondo finds build artifacts across projects
- node_modules, target, pycache, vendor, .build
- Shows size before deletion — interactive
- Age-based filtering (—older 3m)
- Written in Rust — fast directory scanning