@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 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 | `127.0.0.1` | HTTP host. Use `0.0.0.0` to allow LAN access. |
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
@@ -15,7 +15,7 @@
15
15
  */
16
16
  export const DEFAULT_CONFIG = {
17
17
  port: 7788,
18
- host: "127.0.0.1",
18
+ host: "0.0.0.0",
19
19
  autoStart: true,
20
20
  maxStoredTasks: 50,
21
21
  publicDir: "public",
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,WAAW;IACjB,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"}
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-setting/roy-plugin-task-show",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "roy-agent plugin: visualize task solving process via tool call flow on a local web service",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-setting/roy-plugin-task-show",
3
- "version": "0.5.1",
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": "127.0.0.1",
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",