@ai-setting/roy-plugin-task-show 0.5.1 → 0.6.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 +1 -1
- package/dist/types.js +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
- package/plugin.json +3 -3
package/README.md
CHANGED
|
@@ -163,7 +163,7 @@ All config lives in `plugin.json` (and is overridable at construction time):
|
|
|
163
163
|
| key | type | default | description |
|
|
164
164
|
| ---------------- | -------- | ----------- | -------------------------------------------------------- |
|
|
165
165
|
| `port` | number | `7788` | HTTP port for the visualization service. |
|
|
166
|
-
| `host` | string | `
|
|
166
|
+
| `host` | string | `0.0.0.0` | HTTP host. Use `0.0.0.0` to allow LAN access. |
|
|
167
167
|
| `autoStart` | boolean | `true` | Start the HTTP server when `init()` is called. |
|
|
168
168
|
| `maxStoredTasks` | number | `50` | Max sessions kept in memory. Older ones are evicted. |
|
|
169
169
|
| `publicDir` | string | `public` | Directory holding the static frontend. |
|
package/dist/types.js
CHANGED
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAwFH;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,cAAc,GAAmB;IAC5C,IAAI,EAAE,IAAI;IACV,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAwFH;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,cAAc,GAAmB;IAC5C,IAAI,EAAE,IAAI;IACV,IAAI,EAAE,SAAS;IACf,SAAS,EAAE,IAAI;IACf,cAAc,EAAE,EAAE;IAClB,SAAS,EAAE,QAAQ;CACpB,CAAC;AAgFF;;;;GAIG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAG,KAAK,CAAC;AAE/C;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,iBAAiB,CAAC"}
|
package/package.json
CHANGED
package/plugin.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-setting/roy-plugin-task-show",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"type": "tool-plugin",
|
|
5
5
|
"description": "Visualize the tool call chain of a task on a local web service with real-time SSE updates. v0.5.0+: page refreshes stream over GET /api/events (Server-Sent Events). Subscribes to tool:before.execute, tool:after.execute, task:before.create, task:after.create, task:after.complete (preferred, 2026-07-10+), and task:after.update (legacy fallback).",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
},
|
|
45
45
|
"host": {
|
|
46
46
|
"type": "string",
|
|
47
|
-
"default": "
|
|
48
|
-
"description": "HTTP host the local visualization service binds to"
|
|
47
|
+
"default": "0.0.0.0",
|
|
48
|
+
"description": "HTTP host the local visualization service binds to (use 0.0.0.0 for LAN access, 127.0.0.1 for local-only)"
|
|
49
49
|
},
|
|
50
50
|
"autoStart": {
|
|
51
51
|
"type": "boolean",
|