Trust
Uninstall & keys
Three paths: clean uninstall, uninstall but keep keys, and rotate keys without uninstalling. Each one is a single command.
Clean uninstall
sh
seed uninstall --wipe --confirmRemoves binaries, the vault, the log, and identity keys from the keystore. Irreversible. The signed log is exported to ~/seed-final-proof.cbor before deletion so you keep the receipt.
Keep keys for later
sh
seed uninstall --keep-keys --confirmRemoves binaries and the vault but leaves identity keys in the keystore. A future seed clearance setup rebinds them.
Rotate keys
sh
seed identity create --label rotated
seed clearance revoke --all
# attach assistants again under the new identity
seed clearance connect --profile claude-desktopWhat stays on disk
| Path | Wipe | Keep keys | Rotate |
|---|---|---|---|
| ~/.local/bin/seed* | removed | removed | kept |
| $XDG_DATA_HOME/seed/vault | removed | removed | kept |
| $XDG_DATA_HOME/seed/log | exported then removed | removed | kept (extended) |
| OS keystore (identity) | removed | kept | old revoked, new added |