@agent-relay/harness-driver 8.0.4 → 8.1.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/dist/types.d.ts +6 -6
- 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
|
|
27
|
-
* authenticates with. When omitted, the
|
|
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
|
|
53
|
-
* authenticates with. When omitted, the
|
|
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
|
|
87
|
-
* authenticates with. When omitted, the
|
|
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
|
+
"version": "8.1.0",
|
|
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
|
|
51
|
+
"@agent-relay/sdk": "8.1.0",
|
|
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
|
|
57
|
-
"@agent-relay/broker-darwin-x64": "8.0
|
|
58
|
-
"@agent-relay/broker-linux-arm64": "8.0
|
|
59
|
-
"@agent-relay/broker-linux-x64": "8.0
|
|
60
|
-
"@agent-relay/broker-win32-x64": "8.0
|
|
56
|
+
"@agent-relay/broker-darwin-arm64": "8.1.0",
|
|
57
|
+
"@agent-relay/broker-darwin-x64": "8.1.0",
|
|
58
|
+
"@agent-relay/broker-linux-arm64": "8.1.0",
|
|
59
|
+
"@agent-relay/broker-linux-x64": "8.1.0",
|
|
60
|
+
"@agent-relay/broker-win32-x64": "8.1.0"
|
|
61
61
|
},
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public"
|