šŸ”

Secret Vault

Enter your master password to unlock

Your data is encrypted with AES-256-GCM and never leaves your device

šŸ” Secret Vault

Encrypted API Key Manager

0 keys • Encrypted with AES-256-GCM
ā˜ļø Not configured

Add Key

ā˜ļø Cloud Sync Setup

Sync your secrets to Supabase for automatic OpenClaw updates.
All data is encrypted client-side before upload.

Found in Project Settings → API
Public anon key (safe to use client-side)
Quick Setup:
  1. Go to supabase.com → Create free project
  2. Run this SQL in SQL Editor:
    CREATE TABLE secrets (
      id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
      user_id TEXT NOT NULL DEFAULT 'brian',
      encrypted_data TEXT NOT NULL,
      iv TEXT NOT NULL,
      salt TEXT NOT NULL,
      checksum TEXT NOT NULL,
      updated_at TIMESTAMPTZ DEFAULT NOW(),
      UNIQUE(user_id)
    );
  3. Copy URL & Anon Key from Project Settings → API