@aiwg/cockpit 2026.6.8 → 2026.6.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/desktop/README.md CHANGED
@@ -18,7 +18,7 @@ Bridge (127.0.0.1:PORT, token-gated /api) ── proxies ──▶ agentic-sandb
18
18
  desktop window (this app) ◀── same UI ──▶ VS Code webview / browser
19
19
  ```
20
20
 
21
- ## Build (toolchain-gated)
21
+ ## Build
22
22
 
23
23
  Requires the Rust toolchain + Tauri prerequisites. On Linux: `webkit2gtk-4.1`,
24
24
  `libsoup-3.0`, `libappindicator`. Then:
@@ -26,14 +26,14 @@ Requires the Rust toolchain + Tauri prerequisites. On Linux: `webkit2gtk-4.1`,
26
26
  ```bash
27
27
  cargo install tauri-cli --version '^2' # once
28
28
  cd apps/cockpit/desktop
29
- cargo tauri init # generates icons/ + capabilities/ boilerplate (one-time)
30
29
  cargo tauri dev # run against a launched Bridge
31
30
  cargo tauri build # produce a bundle
32
31
  ```
33
32
 
34
- > The repo ships the load-the-Bridge logic (`main.rs`), the Tauri config, and the
35
- > frontend splash. `cargo tauri init` fills in the platform boilerplate (icons,
36
- > v2 capabilities) that is environment-specific and not checked in.
33
+ The repo ships the load-the-Bridge logic (`main.rs`), the Tauri config, the
34
+ frontend splash, a locked Rust dependency graph, and the generated desktop icon
35
+ set needed by Tauri. `cargo tauri build` has been verified on Linux to produce
36
+ `.deb`, `.rpm`, and `.AppImage` bundles.
37
37
 
38
38
  ## Why a token file (not a socket handshake)
39
39