@sjawhar/opencode-legion-envoy 1.19.0 → 1.20.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sjawhar/opencode-legion-envoy",
3
- "version": "1.19.0",
3
+ "version": "1.20.0",
4
4
  "type": "module",
5
5
  "main": "dist/src/server.js",
6
6
  "exports": {
@@ -357,9 +357,10 @@ It returns `details` `{ issue, topic, message }`. `body` is capped at 2,000 char
357
357
 
358
358
  ### Targeted agent messages
359
359
 
360
- A human can target the issue message at a live Envoy session or role as **BTW**, **Aside**, or
361
- **Steer**. The incoming Dispatch frame names the issue and includes a `reply_with` instruction;
362
- reply on the same open issue with the existing tool, never a new targeted send:
360
+ A human or any bearer caller over HTTP, such as a test rig can target the issue message at a
361
+ live Envoy session or role as **BTW**, **Aside**, or **Steer**. The incoming Dispatch frame names
362
+ the issue and includes a `reply_with` instruction; reply on the same open issue with the existing
363
+ tool, never a new targeted send:
363
364
 
364
365
  ```ts
365
366
  dispatch_message({
@@ -369,9 +370,11 @@ dispatch_message({
369
370
  })
370
371
  ```
371
372
 
372
- `in_reply_to` correlates the answer under the human's message in its Conversation card. A BTW
373
+ `in_reply_to` correlates the answer under the asker's message in its Conversation card. A BTW
373
374
  delivery can post its answer automatically; use this call when the frame asks the primary agent to
374
- reply. Agent bearers cannot set `target` or `delivery`.
375
+ reply. `dispatch_message` itself never carries `target` or `delivery`: agent-to-agent traffic goes
376
+ through Envoy or the hub. A bearer that targets over HTTP names its own session in `actor`
377
+ (`{kind: "session", id}`), and the card shows that session as the author.
375
378
 
376
379
  ## What comes back
377
380