-
Notifications
You must be signed in to change notification settings - Fork 1
Privacy and Security
Nick edited this page Dec 8, 2025
·
1 revision
ClipStash is designed with privacy as the core architecture, not an afterthought.
| Check | Status |
|---|---|
| Internet connections | ❌ None |
| Analytics/telemetry | ❌ None |
| Cloud sync | ❌ None |
| External APIs | ❌ None |
| Accounts required | ❌ None |
The app is sandboxed with no network entitlements. It literally cannot make network requests.
All data is stored locally in:
~/Library/Application Support/ClipStash/
├── clipstash.db # SQLite database
└── images/ # Saved images
ClipStash respects macOS clipboard metadata:
-
org.nspasteboard.ConcealedType— Automatically skipped (password managers) -
org.nspasteboard.TransientType— Automatically skipped (temporary data)
These can be toggled in Settings → Privacy.
The following are automatically ignored:
- 1Password
- Bitwarden
- LastPass
- Dashlane
- Apple Keychain Access
You can add more apps to the ignore list manually.
Pin sensitive items to enable AES-GCM encryption with Keychain-stored keys.
- Select item →
⌘⌫ - Or right-click → Delete
- Settings → Diagnostics → Clear History
# Remove app
rm -rf /Applications/ClipStash.app
# Remove data
rm -rf ~/Library/Application\ Support/ClipStash