@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 +5 -5
- package/desktop/src-tauri/Cargo.lock +4389 -0
- package/desktop/src-tauri/icons/128x128.png +0 -0
- package/desktop/src-tauri/icons/128x128@2x.png +0 -0
- package/desktop/src-tauri/icons/32x32.png +0 -0
- package/desktop/src-tauri/icons/icon.icns +0 -0
- package/desktop/src-tauri/icons/icon.ico +0 -0
- package/desktop/src-tauri/icons/icon.png +0 -0
- package/desktop/src-tauri/tauri.conf.json +8 -2
- package/package.json +1 -1
- package/shell-core/smoke.mjs +7 -1
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
|
|
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
|
-
|
|
35
|
-
|
|
36
|
-
|
|
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
|
|