@agent-relay/harness-driver 8.0.3 → 8.0.5

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +6 -6
  2. package/package.json +7 -7
package/dist/types.d.ts CHANGED
@@ -23,8 +23,8 @@ export interface SpawnPtyInput {
23
23
  agentResultSchema?: JsonSchema;
24
24
  /** Optional pre-minted relaycast agent token (`at_live_<hex>`, from
25
25
  * Relaycast agent registration). The
26
- * broker plumbs this as `RELAY_AGENT_TOKEN`, which the relaycast MCP
27
- * authenticates with. When omitted, the relaycast MCP auto-mints a token
26
+ * broker plumbs this as `RELAY_AGENT_TOKEN`, which the Agent Relay MCP
27
+ * authenticates with. When omitted, the Agent Relay MCP auto-mints a token
28
28
  * using `RELAY_WORKSPACE_KEY` + the spawn name; that is the recommended path.
29
29
  * Note: this is a relaycast credential, NOT a relayfile/relayauth token —
30
30
  * override `env.RELAYFILE_TOKEN` on the constructor for relayfile auth. */
@@ -49,8 +49,8 @@ export interface SpawnHeadlessInput {
49
49
  agentResultSchema?: JsonSchema;
50
50
  /** Optional pre-minted relaycast agent token (`at_live_<hex>`, from
51
51
  * Relaycast agent registration). The
52
- * broker plumbs this as `RELAY_AGENT_TOKEN`, which the relaycast MCP
53
- * authenticates with. When omitted, the relaycast MCP auto-mints a token
52
+ * broker plumbs this as `RELAY_AGENT_TOKEN`, which the Agent Relay MCP
53
+ * authenticates with. When omitted, the Agent Relay MCP auto-mints a token
54
54
  * using `RELAY_WORKSPACE_KEY` + the spawn name; that is the recommended path.
55
55
  * Note: this is a relaycast credential, NOT a relayfile/relayauth token —
56
56
  * override `env.RELAYFILE_TOKEN` on the constructor for relayfile auth. */
@@ -83,8 +83,8 @@ export interface SpawnCliInput {
83
83
  agentResultSchema?: JsonSchema;
84
84
  /** Optional pre-minted relaycast agent token (`at_live_<hex>`, from
85
85
  * Relaycast agent registration). The
86
- * broker plumbs this as `RELAY_AGENT_TOKEN`, which the relaycast MCP
87
- * authenticates with. When omitted, the relaycast MCP auto-mints a token
86
+ * broker plumbs this as `RELAY_AGENT_TOKEN`, which the Agent Relay MCP
87
+ * authenticates with. When omitted, the Agent Relay MCP auto-mints a token
88
88
  * using `RELAY_WORKSPACE_KEY` + the spawn name; that is the recommended path.
89
89
  * Note: this is a relaycast credential, NOT a relayfile/relayauth token —
90
90
  * override `env.RELAYFILE_TOKEN` on the constructor for relayfile auth. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/harness-driver",
3
- "version": "8.0.3",
3
+ "version": "8.0.5",
4
4
  "description": "Managed harness driver for Agent Relay — attach, wrap, spawn, inject, and observe agent runtimes",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -48,16 +48,16 @@
48
48
  "check": "tsc -p tsconfig.json --noEmit"
49
49
  },
50
50
  "dependencies": {
51
- "@agent-relay/sdk": "8.0.3",
51
+ "@agent-relay/sdk": "8.0.5",
52
52
  "ws": "^8.18.3",
53
53
  "zod": "^3.23.8"
54
54
  },
55
55
  "optionalDependencies": {
56
- "@agent-relay/broker-darwin-arm64": "8.0.3",
57
- "@agent-relay/broker-darwin-x64": "8.0.3",
58
- "@agent-relay/broker-linux-arm64": "8.0.3",
59
- "@agent-relay/broker-linux-x64": "8.0.3",
60
- "@agent-relay/broker-win32-x64": "8.0.3"
56
+ "@agent-relay/broker-darwin-arm64": "8.0.5",
57
+ "@agent-relay/broker-darwin-x64": "8.0.5",
58
+ "@agent-relay/broker-linux-arm64": "8.0.5",
59
+ "@agent-relay/broker-linux-x64": "8.0.5",
60
+ "@agent-relay/broker-win32-x64": "8.0.5"
61
61
  },
62
62
  "publishConfig": {
63
63
  "access": "public"