@sjawhar/opencode-legion-envoy 0.9.0 → 0.10.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/README.md +13 -0
- package/dist/src/server.js +807 -166
- package/package.json +4 -3
- package/skills/dispatch/SKILL.md +196 -45
- package/src/server.ts +73 -26
- package/dist/bin/dispatch-mcp-shim.js +0 -4889
- package/src/config/index.ts +0 -69
- package/src/config/schema.ts +0 -21
- package/src/dispatch-mcp.ts +0 -113
package/README.md
CHANGED
|
@@ -8,6 +8,19 @@ This package exposes:
|
|
|
8
8
|
- `envoy_unsubscribe`
|
|
9
9
|
- `envoy_list`
|
|
10
10
|
- `envoy_send`
|
|
11
|
+
- `envoy_publish`
|
|
12
|
+
- `envoy_role_set`
|
|
13
|
+
- `envoy_whoami`
|
|
14
|
+
- `envoy_sessions`
|
|
15
|
+
- `dispatch`
|
|
16
|
+
|
|
17
|
+
`dispatch` raises or continues a durable question thread for the human (a GitHub
|
|
18
|
+
issue on the Dispatch dashboard). The tool is present when `dispatch.enabled` is set in
|
|
19
|
+
envoy.json (`~/.config/opencode/envoy.json`, merged with `<repo>/.opencode/envoy.json`) or
|
|
20
|
+
when `DISPATCH_MCP_URL` names the service endpoint explicitly; the service URL otherwise
|
|
21
|
+
comes from `dispatch.serverUrl`. Each call fills the target repo from the session's working
|
|
22
|
+
directory and stamps the thread with the OpenCode session id and title, and the session is
|
|
23
|
+
auto-subscribed to the thread so the reply arrives back through Envoy.
|
|
11
24
|
|
|
12
25
|
It also maintains the live session registry metadata needed for Envoy to discover OpenCode sessions and their API ports.
|
|
13
26
|
|