@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 +1 -1
- package/skills/dispatch/SKILL.md +8 -5
package/package.json
CHANGED
package/skills/dispatch/SKILL.md
CHANGED
|
@@ -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
|
|
361
|
-
**Steer**. The incoming Dispatch frame names
|
|
362
|
-
reply on the same open issue with the existing
|
|
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
|
|
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.
|
|
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
|
|