A beautiful cloak around Claude Code CLI.
clauke is a lightweight desktop wrapper around the claude CLI. It doesn't reimplement any Claude functionality — it simply spawns claude --output-format stream-json and renders the streaming events in a polished UI.
- Multi-tab sessions — run parallel conversations, fork from any message
- Streaming markdown — syntax-highlighted code blocks, tables, diffs
- Tool call cards — collapsible display for every tool invocation with inline diffs
- Sub-agent tracking — live sidebar showing nested agent activity
- File explorer — browse project files, click to open in built-in editor, diff stats overlay
- Built-in file editor — CodeMirror 6 with syntax highlighting for 15+ languages (JS/TS, Rust, Python, Go, C/C++, Java, HTML, CSS, YAML, SQL, and more)
- Change tracker — sidebar showing all code changes per session, grouped by file with expandable diffs
- In-chat search — find messages across the conversation (Ctrl+F)
- Task panel — TodoWrite tasks rendered as a checklist
- Context indicator — visual fill bar showing context window usage, always visible token stats
- Session history — archive and restore past conversations
- Settings — theme, MCP servers, hooks, permission modes, editor preference (VS Code, Cursor, Sublime Text, Antigravity, Neovim)
- Keyboard shortcuts — Ctrl+T/W/L/B/F/J/1-9, Ctrl+/ for cheatsheet
- Custom titlebar — frameless window, draggable, native window controls
- Tiny footprint — uses system WebView2, no bundled Chromium (~3 MB installer)
- Claude Code CLI installed and authenticated (
claudemust be in PATH) - Node.js 18+
- Rust toolchain (for building from source)
- Windows 10/11 with WebView2 runtime (pre-installed on Windows 11)
Download the latest release from the Releases page:
| File | Description |
|---|---|
clauke_x.x.x_x64-setup.exe |
NSIS installer (recommended) |
clauke_x.x.x_x64_en-US.msi |
MSI installer |
# Clone the repo
git clone https://github.com/drvcvt/clauke.git
cd clauke
# Install frontend dependencies
npm install
# Run in development mode (hot reload)
npm run tauri dev
# Build release
npm run tauri buildRelease artifacts are written to src-tauri/target/release/bundle/.
| Layer | Technology |
|---|---|
| Shell | Tauri 2 — native desktop, system webview |
| Backend | Rust — CLI process management, IPC |
| Frontend | Svelte 5 — reactive UI with runes |
| Rendering | marked + highlight.js |
| Editor | CodeMirror 6 — built-in file editor with syntax highlighting |
- You type a prompt in the input bar
- The Svelte frontend calls the Rust backend via Tauri IPC
- Rust spawns
claude -p "prompt" --output-format stream-json - Each JSON line from stdout is emitted as a Tauri event
- The frontend parses events into reactive state and renders them
clauke never calls the Anthropic API directly — all interaction goes through the official CLI.
MIT

