@openscout/scout 0.2.63 → 0.2.64
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 +25 -0
- package/dist/client/assets/{arc.es-B2XMIUBi.js → arc.es-DglF81f4.js} +1 -1
- package/dist/client/assets/index-BRvY3oC-.js +159 -0
- package/dist/client/assets/index-CUNnl56m.css +1 -0
- package/dist/client/index.html +2 -2
- package/dist/main.mjs +1084 -1091
- package/dist/pair-supervisor.mjs +39 -10
- package/dist/scout-control-plane-web.mjs +168 -16
- package/dist/scout-web-server.mjs +168 -16
- package/package.json +2 -2
- package/dist/client/assets/index-DB4dwQr2.css +0 -1
- package/dist/client/assets/index-DiSMCren.js +0 -158
- package/dist/control-plane-client/assets/addon-fit-DX4qG4td.js +0 -1
- package/dist/control-plane-client/assets/addon-webgl-DCtw1yLn.js +0 -64
- package/dist/control-plane-client/assets/arc.es-CcKhIPRw.js +0 -188
- package/dist/control-plane-client/assets/index-BGcMYoYJ.css +0 -1
- package/dist/control-plane-client/assets/index-BkEXBsPk.js +0 -140
- package/dist/control-plane-client/assets/xterm-B-qIQCd3.js +0 -16
- package/dist/control-plane-client/index.html +0 -16
- package/dist/control-plane-client/openscout-icon.png +0 -0
- /package/dist/{control-plane-client → client}/assets/index-TVkH_WDG.js +0 -0
package/README.md
CHANGED
|
@@ -172,6 +172,28 @@ Aliases: `runtime:` = `harness:`, `persona:` = `profile:`, `branch:` / `worktree
|
|
|
172
172
|
|
|
173
173
|
If direct send/ask still comes back unresolved, treat that as a routing problem, not a mere "target is offline" problem. The right follow-up is to disambiguate the target, inspect broker context with `scout who` / `scout latest`, or create/register the missing identity. Do not default to pushing the bring-up step back onto the operator for a known target.
|
|
174
174
|
|
|
175
|
+
By default, a label handoff such as `@openscout.harness:claude` should mean
|
|
176
|
+
"use the OpenScout identity on the Claude harness in a fresh session/context."
|
|
177
|
+
Reusing an existing session is an explicit continuity choice, not the default.
|
|
178
|
+
The broker should keep the stable agent name as the address and record the
|
|
179
|
+
concrete session binding in the delivery receipt/history.
|
|
180
|
+
|
|
181
|
+
Session refs are separate route targets for continuing a concrete bound
|
|
182
|
+
session. Use the bare `ref:<suffix>` form in receipts/history, and pass the
|
|
183
|
+
suffix with `--ref`; do not encode refs into `@agent#harness?model` identity
|
|
184
|
+
syntax.
|
|
185
|
+
|
|
186
|
+
```bash
|
|
187
|
+
scout ask --ref 7f3a9c21 "continue from that handoff"
|
|
188
|
+
scout send --ref 7f3a9c21 "status for that same session"
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
Receipts should name both layers, for example:
|
|
192
|
+
|
|
193
|
+
```text
|
|
194
|
+
sent to @openscout#claude via DM (ref:7f3a9c21)
|
|
195
|
+
```
|
|
196
|
+
|
|
175
197
|
## Current Commands
|
|
176
198
|
|
|
177
199
|
```bash
|
|
@@ -227,10 +249,13 @@ scout server open
|
|
|
227
249
|
scout server start
|
|
228
250
|
scout server start --port 3200
|
|
229
251
|
scout server open --path /agents/arc-codex-2.master.mini
|
|
252
|
+
scout server start --public-origin https://scout.my-mac.local
|
|
230
253
|
scout server start --vite-url http://127.0.0.1:43173 # SPA dev server
|
|
231
254
|
scout server start --static --static-root /custom/client
|
|
232
255
|
```
|
|
233
256
|
|
|
234
257
|
`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.
|
|
235
258
|
|
|
259
|
+
The application server derives the LAN hostname `scout.<machine>.local` by default. For a Caddy or other edge proxy, set `--public-origin https://scout.<machine>.local` (or `OPENSCOUT_WEB_PUBLIC_ORIGIN`) so browser origins match the app server's trusted host model.
|
|
260
|
+
|
|
236
261
|
For the same web UI without the full `scout` CLI package, use **`@openscout/web`** (`openscout-web`): it ships its own `dist/client`, bundled Bun server, and pairing supervisor.
|