+
+
+
+---
+
+## Key Features
+
+- **Unlimited clipboard history** — every copy is captured and stored locally with full-text search (FTS5)
+- **AES-256-GCM encryption** — optional master password locks your vault; Argon2id key derivation
+- **Auto-lock** — vault locks automatically after a configurable inactivity timeout
+- **Tags** — organize items with color-coded tags; filter by tag from the sidebar
+- **Pin & favorite** — surface important items instantly
+- **WASM plugins** — extend clipboard processing with sandboxed WebAssembly modules
+- **Cross-device sync** — optional HTTP sync to a self-hosted relay server
+- **Global shortcuts** — `⌘⇧V` to show/hide, `⌘⇧C` to quick-paste the most recent item
+- **System tray** — runs silently in the background
+- **CLI** — full `openpaste` command-line interface for scripting and automation
+
+---
+
+## Installation
+
+Download the correct package for your system from the latest [GitHub Releases](https://github.com/YOUR_USERNAME/openpaste/releases).
+
+### 🖥️ macOS
+
+1. **Download**:
+ - **Apple Silicon (M1/M2/M3/M4):** `OpenPaste_x.x.x_aarch64.dmg`
+ - **Intel Mac:** `OpenPaste_x.x.x_x64.dmg`
+
+2. **Install:** Double-click the `.dmg` and drag **OpenPaste** to your Applications folder.
+
+3. **First launch — bypass Gatekeeper** (unsigned build):
+ - Right-click `OpenPaste.app` → **Open** → **Open** in the warning dialog.
+ - Or run in Terminal:
+ ```bash
+ xattr -cr /Applications/OpenPaste.app
+ ```
+
+### 🪟 Windows
+
+1. **Download:** `OpenPaste_x.x.x_x64-setup.exe` (installer) or `OpenPaste_x.x.x_x64.msi`
+2. **Install:** Run the installer and follow the setup wizard.
+3. **SmartScreen:** Click **More info → Run anyway** if Windows flags the unsigned build.
+
+### 🐧 Linux
+
+1. **Download:** `OpenPaste_x.x.x_amd64.deb` (Debian/Ubuntu) or `OpenPaste_x.x.x_amd64.AppImage` (universal)
+
+2. **Install `.deb`:**
+ ```bash
+ sudo dpkg -i OpenPaste_*.deb
+ ```
+
+3. **Run `.AppImage`:**
+ ```bash
+ chmod +x OpenPaste_*.AppImage
+ ./OpenPaste_*.AppImage
+ ```
+
+---
+
+## CLI
+
+The `openpaste` CLI talks to the running daemon over a Unix socket:
+
+```bash
+openpaste list # Show clipboard history
+openpaste search "query" # Full-text search
+openpaste copy
- {selectedItem.content}
-
+ {selectedItem.content_type === 'image' ? (
+
+ {selectedItem.content}
+
+ )}
+
+ Plugins are WebAssembly modules that transform clipboard text. Drop a{' '}
+ .wasm{' '}
+ file in ~/.local/share/openpaste/plugins/{' '}
+ or load one manually below.
+
+ Sync your clipboard history across devices via a self-hosted relay server + (or any server running the OpenPaste HTTP API). +
+ + {/* Status banners */} + {syncError && ( +