agent-relay-runner 0.119.11 → 0.120.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-runner",
3
- "version": "0.119.11",
3
+ "version": "0.120.0",
4
4
  "description": "Unified provider lifecycle runner for Agent Relay",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "agent-relay-providers": "0.104.3",
24
- "agent-relay-sdk": "0.2.106",
24
+ "agent-relay-sdk": "0.2.107",
25
25
  "callmux": "0.23.0"
26
26
  },
27
27
  "devDependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agent-relay-runner",
3
3
  "description": "Thin Agent Relay runner bridge for Claude Code",
4
- "version": "0.119.11",
4
+ "version": "0.120.0",
5
5
  "agentRelayContracts": {
6
6
  "providerPluginProtocol": 1
7
7
  }
package/src/relay-mcp.ts CHANGED
@@ -67,13 +67,16 @@ export function tomlString(value: string): string {
67
67
  // project-cwd `.mcp.json` is never discovered (its enable modal can't wedge a headless
68
68
  // agent). Whatever the assembler decides host mode should keep is injected here explicitly;
69
69
  // strict then preserves exactly that set and nothing else.
70
- import type { ProvisioningMcpServer } from "agent-relay-sdk";
70
+ import { SHARED_CALLMUX_TOOL_CALL_TIMEOUT_MS, type ProvisioningMcpServer } from "agent-relay-sdk";
71
71
 
72
72
  // The shared-listener bridge as a provider-neutral stdio server descriptor: a `callmux bridge`
73
73
  // child fronting the host's shared listener, with per-agent `--cwd "$WORKTREE"` for session-cwd
74
74
  // isolation (#672). It flows through the existing claude/codex stdio injection unchanged.
75
75
  export function sharedMcpBridgeServer(url: string, cwd: string): ProvisioningMcpServer {
76
- return { command: "callmux", args: ["bridge", "--url", url, "--cwd", cwd] };
76
+ return {
77
+ command: "callmux",
78
+ args: ["bridge", "--url", url, "--cwd", cwd, "--call-timeout", String(SHARED_CALLMUX_TOOL_CALL_TIMEOUT_MS)],
79
+ };
77
80
  }
78
81
 
79
82
  function claudeMcpServerEntry(server: ProvisioningMcpServer): Record<string, unknown> {