Launching today

RepoSweep
Reclaim developer disk space without breaking projects
9 followers
Reclaim developer disk space without breaking projects
9 followers
RepoSweep is a safe Mac cleaner for developers. Scan project folders, find node_modules, build caches, logs, and generated files, then move selected items to Trash. RepoSweep scans project folders, developer caches, and Downloads for disposable build outputs, dependencies, and test artifacts. It verifies project context and Git status, explains why each match is safe, revalidates before cleanup, and only moves items to macOS Trash.








How does it handle monorepos with shared node_modules across multiple workspaces, and does it actually verify the package isn't symlinked somewhere else before trashing it?
@arif1grq Great question. RepoSweep scans physical filesystem paths, so a single hoisted root node_modules is reported once, while separate node_modules directories inside individual workspaces are reported separately. It does not traverse or report symbolic links, and immediately before cleanup it verifies again that the candidate itself is not a symlink.
One limitation today: it does not detect other symlinks that point into a real node_modules directory. For unusual linked setups, I recommend leaving that item unselected. Inbound-link detection would be a useful future addition.
The git status check before trashing is a nice touch, gives real peace of mind compared to other cleaners that just nuke whatever looks big. Reclaiming 40gb from old node_modules felt almost too easy.
@aslhant3kk Thank you! That “almost too easy” feeling is exactly why RepoSweep revalidates everything immediately before cleanup and only moves items to Trash. Reclaiming 40 GB is a fantastic result.
The safety checks here are genuinely thoughtful, especially the revalidation pass before hitting Trash. Way too many cleaners just nuke whatever looks old.
Really appreciate that, @ayferrlhu. Safety was the main design principle behind RepoSweep: inspect first, revalidate, then move to Trash only when you're confident.
Love that it checks git status before trashing anything, that alone makes it feel way safer than the typical cleaner apps that nuke half your project.
@ykkoulu6zc5 Thank you! Git status is one of the first safety gates, and RepoSweep checks it again immediately before cleanup. If anything changed, the item is left untouched.
the git status check before trashing anything is genuinely thoughtful, way less scary than my usual rm -rf node_modules ritual.
@aryazdoru5paw The rm -rf node_modules ritual is exactly the moment I wanted to make less stressful 😄 Review first, revalidate, then Trash—still reversible if you change your mind.