Common Issues
Cluttered won't open
Symptoms: App bounces in dock then disappears, or nothing happens.
Solutions:
- Check macOS version: Cluttered requires macOS 12 (Monterey) or later
- Try right-click → Open: Bypasses Gatekeeper for first launch
- Check Console.app: Look for crash logs under Cluttered
- Reinstall: Download fresh from cluttered.dev/download
"App is damaged" warning
This usually means Gatekeeper is blocking the app:
# Remove quarantine flag
xattr -cr /Applications/Cluttered.app
Then try opening again.
Scan finds no projects
Possible causes:
- Wrong scan location: Check Settings → Scan Locations
- Projects are excluded: Check Settings → Exclusions
- Non-standard structure: Projects need marker files (package.json, etc.)
- Permission denied: Cluttered needs access to those directories
Try this:
- Add your project folder directly to scan locations
- Ensure no overly broad exclusions
- Check System Settings → Privacy → Full Disk Access
Scan is very slow
Normal scan times:
- 10-50 projects: 5-10 seconds
- 50-200 projects: 10-30 seconds
- 200+ projects: 30-60 seconds
If slower than expected:
- Exclude large directories: Downloads, external drives
- Check disk health: Run
diskutil verifyVolume / - Limit scan depth: In Settings → Scan Locations
- Close other disk-heavy apps: Spotlight, backups
Space not recovered after cleaning
Check these:
- Trash not emptied: Files are in Trash until you empty it
- Finder not refreshed: Press ⌘⇧. in Finder
- System reporting delay: Storage info can lag by minutes
Verify cleanup:
# Check Trash size
du -sh ~/.Trash
# Check specific project
du -sh ~/projects/my-project/node_modules
Projects showing wrong activity status
Activity detection uses:
- Git commit history
- File modification times
- Running processes
- VS Code workspace data
If incorrect:
- Git history missing: Clone might not have full history
- File times reset: Some tools reset modification times
- Process detection: Make sure dev servers are running when scanning
License not recognized
Solutions:
- Re-enter license: Settings → License → Enter License Key
- Check internet: License validation requires connectivity
- Contact support: support@cluttered.dev
Error Messages
"Permission denied"
Cluttered needs access to scan directories.
Fix:
- System Settings → Privacy & Security → Full Disk Access
- Add Cluttered to the list
- Restart Cluttered
"Could not move to Trash"
The Trash might be full or permissions are wrong.
Fix:
# Check Trash permissions
ls -la ~/.Trash
# Fix permissions if needed
chmod 700 ~/.Trash
"Project is currently in use"
A running process is using files in that project.
Fix:
- Stop dev servers (
npm run dev, etc.) - Close IDE windows for that project
- Wait a few seconds and retry
Getting Help
Built-in Help
- ⌘? opens help overlay
- Tooltips on hover explain features
- Status bar shows current operation
Online Resources
- Documentation - Full guides
- GitHub Issues - Bug reports
- GitHub Discussions - Questions
Contact Support
For Pro users and billing questions:
- Email: support@cluttered.dev
- Response time: Within 24-48 hours
Reporting Bugs
Include this information:
- macOS version: Apple menu → About This Mac
- Cluttered version: Cluttered → About Cluttered
- Steps to reproduce: What you did before the issue
- Expected vs actual: What should happen vs what did
- Screenshots: If visual issue
- Console logs: If crash (Console.app → Cluttered)
Diagnostic Information
Generate Diagnostic Report
- Open Cluttered
- Help → Generate Diagnostic Report
- Save the file
- Attach to support email
This includes:
- System information
- Cluttered settings (no personal data)
- Recent logs
- Scan statistics
Manual Log Access
# View recent logs
log show --predicate 'subsystem == "dev.cluttered"' --last 1h
# Export to file
log show --predicate 'subsystem == "dev.cluttered"' --last 24h > cluttered-logs.txt
Reset Cluttered
If all else fails, reset to factory state:
Soft Reset (keeps license)
- Settings → Reset to Defaults
- Restart Cluttered
Full Reset
# Remove all Cluttered data
rm -rf ~/Library/Application\ Support/Cluttered
rm -rf ~/Library/Preferences/dev.cluttered.plist
rm -rf ~/Library/Caches/dev.cluttered
# Then reinstall
Note: This removes your license. You'll need to re-enter it.