Install
openclaw skills install @anydefai/anydef-encLocal-Only Agent Data Encryption. High-security MK->KEK->DEK hierarchy for local agent data.
openclaw skills install @anydefai/anydef-encThis skill provides mandatory encryption for OpenClaw agents. It operates in Local Manual Mode, meaning no external network requests are made, and encryption keys are derived from a user passphrase.
window.storage.memory, assets) encrypted by the KEK and stored in window.storage.crypto operations happen via standard Web APIs in your browser.Configure which scopes to protect in your settings:
history: Conversation logs.memory: Agent's semantic memory.assets: All uploaded files.import { EncryptionService } from './encryption-service.js';
// Unlock once per session
await EncryptionService.unlock('your-passphrase');
// Use throughout the session
const secretData = await EncryptionService.encrypt('memory', 'Sensitive intelligence...');