@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 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.