| name | repo-cleanup-list-untracked-files |
| description | Sub-skill of repo-cleanup: List Untracked Files (+3). |
| version | 2.2.0 |
| category | _internal |
| type | reference |
| scripts_exempt | true |
List Untracked Files (+3)
List Untracked Files
git status --porcelain | grep "^??"
git status --porcelain | grep "^??" | cut -c4- | xargs -I {} sh -c 'du -h "{}" 2>/dev/null'
Find Large Files
find . -type f -size +1M -exec ls -lh {} \;
find . -type f -size +10M -exec ls -lh {} \;
find . -type f -exec du -h {} + 2>/dev/null | sort -rh | head -20
Find Duplicates
find . -name "*.md" -path "*/agents/*" -type f
find . -type f -name "*.py" | xargs -I {} basename {} | sort | uniq -d
find . -type f -exec md5sum {} + | sort | uniq -w32 -d
Find Hidden Directories
find . -maxdepth 1 -type d -name ".*" | grep -v "^\./\.git$"
du -sh .*/