@plurnk/plurnk-agui 0.11.2 → 0.11.7

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/.env.defaults ADDED
@@ -0,0 +1,18 @@
1
+ # @plurnk/plurnk-agui — the daemon's AG-UI+ client-interface module.
2
+ # Owned prefix: PLURNK_AGUI_* (ecosystem standard: every package ships its knobs;
3
+ # the daemon assembles all installed members' files into one floor at boot).
4
+ # The listener's ADDRESS is the daemon's surface (PLURNK_HOST/PLURNK_PORT — owned
5
+ # by plurnk-service); the module owns the semantics on that surface.
6
+
7
+ # Bearer for the module's edge authz. Empty = local trust (the loopback bind is
8
+ # the boundary); set a value and every request must carry `authorization: Bearer <it>`.
9
+ PLURNK_AGUI_TOKEN=
10
+
11
+ # Per-run turn cap handed to the engine when a run doesn't carry its own maxTurns.
12
+ # Empty = no module-level cap (the engine's own ceiling still applies).
13
+ PLURNK_AGUI_MAX_TURNS=
14
+
15
+ # SSE heartbeat cadence in milliseconds (agui#3). A long model generation emits no
16
+ # events, and consumer stacks kill silent bodies (undici defaults to 300s); a
17
+ # comment frame every cadence keeps every consumer fed. 0 disables.
18
+ PLURNK_AGUI_HEARTBEAT_MS=15000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plurnk/plurnk-agui",
3
- "version": "0.11.2",
3
+ "version": "0.11.7",
4
4
  "description": "The plurnk daemon's transport daughter — owns the client interface, serving AG-UI+ (the Agent-User Interaction Protocol + plurnk metadata extensions) as the sole client interaction surface. In-process module activated at the daemon's boot plug-point; any AG-UI frontend is a plurnk client.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "files": [
19
19
  "dist/**/*",
20
- ".env.example",
20
+ ".env.defaults",
21
21
  "README.md",
22
22
  "SPEC.md"
23
23
  ],
@@ -27,8 +27,8 @@
27
27
  "scripts": {
28
28
  "test": "npm run test:lint && npm run test:unit && npm run test:intg",
29
29
  "test:lint": "tsc --noEmit",
30
- "test:unit": "node --env-file-if-exists=.env.example --test src/*.test.ts",
31
- "test:intg": "node --env-file-if-exists=.env.example --test test/intg/*.test.ts",
30
+ "test:unit": "node --env-file-if-exists=.env.defaults --test src/*.test.ts",
31
+ "test:intg": "node --env-file-if-exists=.env.defaults --test test/intg/*.test.ts",
32
32
  "deps:fresh": "npm outdated",
33
33
  "prepare": "git config core.hooksPath .githooks || true; npm run build",
34
34
  "prepublishOnly": "npm test",
@@ -60,7 +60,7 @@
60
60
  "access": "public"
61
61
  },
62
62
  "dependencies": {
63
- "@plurnk/plurnk-execs-mcp": "0.7.4",
64
- "@plurnk/plurnk-grammar": "0.76.9"
63
+ "@plurnk/plurnk-execs-mcp": "0.7.5",
64
+ "@plurnk/plurnk-grammar": "0.76.10"
65
65
  }
66
66
  }
package/.env.example DELETED
@@ -1,7 +0,0 @@
1
- # @plurnk/plurnk-agui — the daemon's transport daughter (in-process module).
2
- # The daemon's composition root reads these and hands them to Module.init:
3
- # PLURNK_HOST / PLURNK_PORT the AG-UI+ listener — plurnk's ONE client surface
4
- # PLURNK_AGUI_TOKEN bearer for the module's edge authz (empty = loopback trust)
5
- # PLURNK_AGUI_MAX_TURNS per-run turn cap default
6
- # Documented authoritatively in plurnk-service/.env.example; the module owns the
7
- # semantics, the daemon owns the read. This package has no standalone process.