@openscout/scout 0.2.46 → 0.2.47
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/README.md +10 -2
- package/dist/control-plane-client/assets/{arc.es-CehM6B37.js → arc.es-BkYc1VKe.js} +1 -1
- package/dist/control-plane-client/assets/index-DLYQAPHm.js +9 -0
- package/dist/control-plane-client/index.html +1 -1
- package/dist/main.mjs +502 -60
- package/dist/scout-control-plane-web.mjs +5 -0
- package/dist/scout-web-server.mjs +5 -0
- package/package.json +2 -2
- package/dist/control-plane-client/assets/index-D17d1jzn.js +0 -9
package/README.md
CHANGED
|
@@ -65,11 +65,13 @@ scout version
|
|
|
65
65
|
scout doctor
|
|
66
66
|
scout setup
|
|
67
67
|
scout runtimes
|
|
68
|
+
scout whoami
|
|
68
69
|
scout send
|
|
69
70
|
scout speak
|
|
70
71
|
scout ask
|
|
71
72
|
scout watch
|
|
72
73
|
scout who
|
|
74
|
+
scout latest
|
|
73
75
|
scout enroll
|
|
74
76
|
scout broadcast
|
|
75
77
|
scout up
|
|
@@ -78,20 +80,26 @@ scout ps
|
|
|
78
80
|
scout restart
|
|
79
81
|
scout pair
|
|
80
82
|
scout server start
|
|
83
|
+
scout server open
|
|
81
84
|
scout tui
|
|
82
85
|
```
|
|
83
86
|
|
|
84
|
-
### Web UI (`scout server start`)
|
|
87
|
+
### Web UI (`scout server start`, `scout server open`)
|
|
85
88
|
|
|
86
89
|
Runs the same Scout desktop web stack as the repo’s `bun run web` entry (Hono + shared IPC services). **Bun must be on your PATH.** Publish builds ship `dist/scout-web-server.mjs` and `dist/client/` (Vite build); when `dist/client/index.html` is present, **`scout server start` defaults to static assets** unless you pass `--vite-url` to proxy a dev server.
|
|
87
90
|
|
|
88
91
|
```bash
|
|
92
|
+
scout whoami
|
|
93
|
+
scout who
|
|
94
|
+
scout latest
|
|
95
|
+
scout server open
|
|
89
96
|
scout server start
|
|
90
97
|
scout server start --port 3200
|
|
98
|
+
scout server open --path /agents/arc-codex-2.master.mini
|
|
91
99
|
scout server start --vite-url http://127.0.0.1:43173 # SPA dev server
|
|
92
100
|
scout server start --static --static-root /custom/client
|
|
93
101
|
```
|
|
94
102
|
|
|
95
|
-
Use `scout server` or `scout server help` for full flags.
|
|
103
|
+
`scout server open` reuses an already-running matching Scout server on that port, or starts one in the background and opens the browser for you. Use `scout server` or `scout server help` for full flags.
|
|
96
104
|
|
|
97
105
|
For a standalone **lightweight** web UI, see **`@openscout/web`** (`openscout-web`): it ships its own `dist/client`, bundled Bun server, and pairing supervisor. The full desktop UI remains vendored with the CLI build; the lightweight web package no longer boots through `scout server control-plane start`.
|