# CodeBurn Menubar (Windows) Tauri 2.x tray app that surfaces CodeBurn in the Windows notification area. It is the Windows mirror of the native macOS menubar in `../mac/`, which stays the authoritative look and feel; this project mirrors its layout, colors, and data via the shared `tokens.json`. Linux (ksni / AppIndicator) support is compiled and kept working for dev, but it is **experimental and unreleased** - Linux users should use the GNOME extension in `../gnome/`. The releases this repo cuts from here are Windows only. Not everything crosses over: the spend badge is a second tray icon carrying the number as its bitmap, which only the Windows notification area provides. `tray_badge` is compiled out on Linux, the `set_tray_badge` command reports it as unsupported there, and the frontend hides the control behind `TRAY_BADGE_SUPPORTED` in `src/lib/platform.ts`. Anything else that is Windows-only must be cfg-gated the same way, or the ubuntu leg of CI fails on dead code. ## Architecture ``` windows/ ├── src/ React + TypeScript popover UI (runs inside the Tauri webview) ├── src-tauri/ │ ├── src/ │ │ ├── main.rs binary entry │ │ ├── lib.rs tray, window lifecycle, state wiring │ │ ├── cli.rs argv-validated spawn of the codeburn CLI │ │ ├── config.rs ~/.config/codeburn/config.json read/write under a lock │ │ ├── plan.rs Claude OAuth quota (port of mac/.../ClaudeSubscriptionService.swift) │ │ └── fx.rs Frankfurter fetch + 24h disk cache + [0.0001, 1e6] clamp │ ├── capabilities/ Tauri v2 permission manifests │ └── icons/ tray + bundle icons └── tokens.json shared design tokens (also consumed by mac/ at build time) ``` ## Prerequisites (Windows) ```powershell # Rust winget install Rustlang.Rustup rustup target add x86_64-pc-windows-msvc # WebView2 Runtime winget install Microsoft.EdgeWebView2Runtime # Microsoft C++ Build Tools (ships with Visual Studio Installer; pick "Desktop development with C++") ``` ## Prerequisites (macOS / Linux, dev only) Tauri builds on macOS and Linux for inner-loop UI iteration. The shipping macOS product is the Swift app in `../mac/`, so we don't cut a Tauri Mac release. ```bash # macOS brew install rust node # Ubuntu / Debian sudo apt update sudo apt install -y \ build-essential curl wget file \ libwebkit2gtk-4.1-dev \ libayatana-appindicator3-dev \ librsvg2-dev \ libssl-dev \ libxdo-dev \ libgtk-3-dev ``` ## Run the dev server ```bash cd windows npm install npm run tauri dev ``` Under the hood this starts Vite on `localhost:1420`, builds `src-tauri/target/debug/codeburn-menubar`, and opens a window wired to the dev server with hot reload for the React code. The tray icon appears at the same time. If the codeburn CLI isn't on PATH (dev builds from this monorepo), point the app at your local build: ```bash npm --prefix .. run build CODEBURN_BIN="node $(pwd)/../dist/cli.js" npm run tauri dev ``` `CODEBURN_BIN` is validated against a strict allowlist (alphanumerics plus `._/-` and space; `\ : ( )` also allowed on Windows) before use; anything else falls back to auto-resolution. Without `CODEBURN_BIN` the app looks for `codeburn` (`codeburn.cmd` / `codeburn.exe` on Windows) on the inherited `PATH`, then in the usual npm and node prefixes (`%APPDATA%\npm`, `%LOCALAPPDATA%\Programs\nodejs`, pnpm, Volta, scoop, `/opt/homebrew/bin`, `~/.npm-global/bin`), and finally on Windows in the live user and machine `PATH` read from the registry, so a CLI installed after the tray app was launched is still found. Only absolute directory entries are considered - empty or relative `PATH` entries are skipped so nothing is ever resolved out of the current working directory. If nothing is found, or `codeburn --version` is older than `MIN_CLI_VERSION` (`src-tauri/src/cli.rs`), the popover shows a setup screen with the install command and a "Check again" button. That gate is probed once on mount, before the first payload fetch. `MIN_CLI_VERSION` is **0.9.9**: the first release whose `codeburn status --format menubar-json` accepts `--no-optimize`, which the app's quiet background refreshes always pass. Every payload field the popover reads (`current.providers`, `current.cacheHitPercent`, `history.daily[].topModels`) also exists at that version. ## Refresh policy Mirrors `mac/Sources/CodeBurnMenubar/RefreshCadence.swift`: each CLI fetch is a full Node process, so the cadence follows popover visibility. - popover visible: 60 s tick, full fetch (optimize findings included) - popover hidden: 120 s tick, `today`/`all` only, `--no-optimize` - on show: immediate refresh when the visible key is older than 60 s ## Plan / quota The Plan pill (visible on the Claude tab, or when Claude is the only detected provider) reads Claude Code's OAuth credentials from `~/.claude/.credentials.json`, calls `https://api.anthropic.com/api/oauth/usage`, and stores one snapshot per window under `~/.cache/codeburn/subscription-snapshots.json` (`CODEBURN_CACHE_DIR` override) so a freshly reset window can still show last cycle's final. This is the same file format the macOS app writes. Nothing is logged: the credential blob never leaves the Rust side. On a 401 we do **not** call the token refresh endpoint. Claude's refresh token is single-use and rotates, so spending it would invalidate the token Claude Code itself is holding and break the user's login. Like `ClaudeCredentialStore.refreshAfter401` on macOS, we re-read Claude's own credential file for a token it has already rotated, and report a transient failure when there isn't one yet. ## Build a production package ```bash # Windows (.msi): run from a Windows host npm run tauri build # Linux (experimental): produces .deb, .rpm, .AppImage under src-tauri/target/release/bundle/ npm run tauri build ``` ## Security model - **Process spawn**: every call into the codeburn CLI goes through `CodeburnCli::fetch_menubar_payload`, which builds argv explicitly and runs the binary directly (no `sh -c`). `CODEBURN_BIN` is allowlisted before use. Windows system tools (`reg.exe`, `cmd.exe`) are invoked by absolute path under `%SystemRoot%\System32` so `CreateProcess`'s current-directory search can never pick up a planted binary; `claude` is resolved from absolute `PATH` directories the same way. - **Pipes**: stdout is capped at 20 MB, stderr at 256 KB, total wall time at 60 s. A hung CLI cannot pin file descriptors or memory. - **Config writes**: `~/.config/codeburn/config.json` writes run under a POSIX `flock` on `~/.config/codeburn/.config.lock`. On Windows the same path uses a create-new lock file. Note that this lock is advisory *between instances of this app only* - the codeburn CLI does not take it - so it narrows, but does not eliminate, a concurrent-write race. A live holder keeps its file handle open and Windows will not unlink an open file, so the staleness sweep can only ever reclaim a lock whose owner is gone (after 30 s). - **Snapshot writes**: `subscription-snapshots.json` refuses a symlinked target and is written 0600 on unix, mirroring `mac/Sources/CodeBurnMenubar/Security/SafeFile.swift`. - **Credentials**: the Plan view reads `~/.claude/.credentials.json` with a 64 KB cap and refuses symlinks; the access token is only ever sent to the Anthropic usage endpoint over TLS, and the refresh token is never read or sent at all. - **FX fetches**: Frankfurter response is parsed as JSON and the rate is clamped to `[0.0001, 1_000_000]` before it touches displayed numbers. Stale cache preferred over poisoned fresh data. - **CSP**: `connect-src` restricted to `self`, `ipc:`, and `https://api.frankfurter.app`. No inline scripts. ## CI and release tags - `.github/workflows/windows-menubar-ci.yml` runs on any `windows/**` change: `tsc --noEmit`, `cargo clippy -D warnings` and `cargo test` on windows-latest + ubuntu-latest, plus a release build smoke on Windows. - `windows-v*` tag (e.g. `windows-v0.9.20`) triggers `.github/workflows/release-menubar-windows.yml`; publishes the `.msi` (plus its sha256) to a "Windows Menubar vX" release. Unsigned for now, so Windows SmartScreen prompts on first run until a signing cert is in place. - `codeburn menubar` installs from those assets (`src/menubar-installer.ts`): it pins the tag to the CLI's own version (`windows-v`), falls back to a scan of the newest `windows-v*` release carrying both assets, verifies the sha256 before anything executes the file, then runs `%SystemRoot%\System32\msiexec.exe /i /passive /norestart` and launches the exe named by the product's Uninstall registry key. Renaming the bundle or the MSI asset breaks that lookup — `WINDOWS_RELEASE` and `WINDOWS_PRODUCT_NAME` in the installer have to move with it. ## Pending work 1. Code signing for the Windows `.msi` to remove the SmartScreen warning. 2. Linux: decide whether to ship at all (the GNOME extension in `../gnome/` covers that surface today) or promote the ksni tray out of experimental.