@mono-agent/operator-adapter 0.12.0 → 0.13.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
@@ -16,7 +16,7 @@ Loopback operator endpoints for local mono-agent surfaces:
16
16
  does not fit, becomes a bounded `oversized_event` marker. Other frame kinds are
17
17
  unaffected.
18
18
  - the live SSE event relay, which streams the host's in-process run-event bus to
19
- read-only operator surfaces such as `mono-agent sessions`.
19
+ read-only operator surfaces such as the `@mono-agent/session-web` PWA.
20
20
 
21
21
  Both endpoints keep their existing wire contracts, routes, env vars, defaults,
22
22
  auth behavior, and error behavior.
@@ -1,6 +1,6 @@
1
1
  export declare const DEFAULT_HOST = "127.0.0.1";
2
2
  export declare const DEFAULT_PORT = 0;
3
- export declare const DEFAULT_BASE_PATH = "/tui";
3
+ export declare const DEFAULT_BASE_PATH = "/gui";
4
4
  /**
5
5
  * Wire schema version surfaced by GET /v1/info so a version-skewed TUI can
6
6
  * detect an incompatible agent before starting a turn.
@@ -1,6 +1,6 @@
1
1
  export const DEFAULT_HOST = "127.0.0.1";
2
2
  export const DEFAULT_PORT = 0;
3
- export const DEFAULT_BASE_PATH = "/tui";
3
+ export const DEFAULT_BASE_PATH = "/gui";
4
4
  /**
5
5
  * Wire schema version surfaced by GET /v1/info so a version-skewed TUI can
6
6
  * detect an incompatible agent before starting a turn.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-agent/operator-adapter",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "Loopback operator adapters for mono-agent: structured TUI NDJSON turns and read-only live SSE run-event streams.",
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-only",
@@ -26,7 +26,7 @@
26
26
  "README.md"
27
27
  ],
28
28
  "dependencies": {
29
- "@mono-agent/agent-contracts": "0.12.0",
29
+ "@mono-agent/agent-contracts": "0.13.0",
30
30
  "express": "^5.1.0"
31
31
  },
32
32
  "devDependencies": {