Can I download an installer today?
Yes. Download the 0.1.0 DMG (17 MB, Universal, runs on both Intel and Apple silicon, needs macOS 11 or later). It is signed with a Developer ID and notarized by Apple, so it opens without a Gatekeeper prompt. The app also checks for its own updates.
Can I get something back if I delete the wrong thing?
User-scope deletions all go to the Trash through NSFileManager and can be restored from there. System-scope actions are not executed at all right now — they refuse with requires_admin — so there is no path that quietly removes a system file. Every run is written to ~/Library/Logs/mole.
Does it upload my files or usage data?
The repository has no analytics, telemetry, or crash-reporting code, and the window CSP is limited to default-src 'self'. The only outbound requests happen when you deliberately check for software updates: Apple's bundle-ID lookup, an app's own Sparkle feed, and the GitHub release API.
How does this relate to the Mole CLI?
Tidy is Mole's desktop surface, and its safety layer is a Rust port of the CLI's. Public product copy uses Tidy; internal crate names, compatibility events, and shared logs keep the Mole name. operations.log and deletions.log stay byte-compatible, so mo history reads both.
Why are some rows not actionable?
The interface names the cause: unchanged (target missing or already healthy), apps_running (close the named app first), probe_failed (the step could not be proven safe), requires_admin (needs the unreleased privileged helper), skipped (whitelisted or blocked by another safety condition). Disabled controls keep their label and expose the reason instead of just dimming.
Is there a Windows or Linux build?
Not currently. The adapter layer is mole-macos and depends on NSFileManager Trash semantics and the macOS privileged-helper model; no other platform implementation exists yet.