agent-relay-orchestrator 0.109.0 → 0.110.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/package.json +2 -2
- package/src/spawn/command.ts +1 -0
- package/src/spawn/types.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-relay-orchestrator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.110.0",
|
|
4
4
|
"description": "Agent Relay orchestrator — manages agent lifecycle across hosts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"agent-relay-providers": "0.104.1",
|
|
20
|
-
"agent-relay-sdk": "0.2.
|
|
20
|
+
"agent-relay-sdk": "0.2.95",
|
|
21
21
|
"callmux": "0.23.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
package/src/spawn/command.ts
CHANGED
|
@@ -93,6 +93,7 @@ export function buildEnv(opts: SpawnOptions & { label: string; agentId: string }
|
|
|
93
93
|
...(opts.label ? { AGENT_RELAY_LABEL: opts.label } : {}),
|
|
94
94
|
...(opts.policyName ? { AGENT_RELAY_POLICY: opts.policyName } : {}),
|
|
95
95
|
...(opts.spawnRequestId ? { AGENT_RELAY_SPAWN_REQUEST_ID: opts.spawnRequestId } : {}),
|
|
96
|
+
...(opts.taskId !== undefined ? { AGENT_RELAY_TASK_ID: String(opts.taskId) } : {}),
|
|
96
97
|
// #673 — the orchestrator owns the shared host callmux listener; runners consume this
|
|
97
98
|
// authoritative URL through the existing #672 sharedMcpUrl seam.
|
|
98
99
|
[SHARED_MCP_URL_ENV]: sharedMcpListenerUrl(),
|
package/src/spawn/types.ts
CHANGED
|
@@ -25,6 +25,7 @@ export interface SpawnOptions {
|
|
|
25
25
|
providerArgs?: string[];
|
|
26
26
|
policyName?: string;
|
|
27
27
|
spawnRequestId?: string;
|
|
28
|
+
taskId?: number;
|
|
28
29
|
automationId?: string;
|
|
29
30
|
automationRunId?: string;
|
|
30
31
|
/** How the spawn was requested (`mcp` = an agent via the MCP surface, else dashboard/CLI). Drives
|