agent-relay 2.4.5 → 2.4.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.
Binary file
Binary file
Binary file
Binary file
package/dist/index.cjs CHANGED
@@ -45165,7 +45165,7 @@ var AgentRelay = class {
45165
45165
  if (waitForMessage) {
45166
45166
  return this.waitForAgentMessage(name, timeoutMs ?? 6e4);
45167
45167
  }
45168
- return this.waitForAgentReady(name, timeoutMs ?? 3e4);
45168
+ return this.waitForAgentReady(name, timeoutMs ?? 6e4);
45169
45169
  }
45170
45170
  // ── Human source ────────────────────────────────────────────────────────
45171
45171
  human(opts) {
@@ -45355,7 +45355,7 @@ var AgentRelay = class {
45355
45355
  * The agent's CLI may not yet be ready to receive messages.
45356
45356
  * Use `waitForAgentMessage()` for full readiness.
45357
45357
  */
45358
- async waitForAgentReady(name, timeoutMs = 3e4) {
45358
+ async waitForAgentReady(name, timeoutMs = 6e4) {
45359
45359
  const client = await this.ensureStarted();
45360
45360
  const existing = this.knownAgents.get(name);
45361
45361
  if (existing && this.readyAgents.has(name)) {
@@ -45713,7 +45713,7 @@ var AgentRelay = class {
45713
45713
  const client = await relay.ensureStarted();
45714
45714
  await client.release(name, reason);
45715
45715
  },
45716
- async waitForReady(timeoutMs = 3e4) {
45716
+ async waitForReady(timeoutMs = 6e4) {
45717
45717
  await relay.waitForAgentReady(name, timeoutMs);
45718
45718
  },
45719
45719
  waitForExit(timeoutMs) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "Real-time agent-to-agent communication system",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -174,13 +174,13 @@
174
174
  },
175
175
  "homepage": "https://github.com/AgentWorkforce/relay#readme",
176
176
  "dependencies": {
177
- "@agent-relay/config": "2.4.5",
178
- "@agent-relay/hooks": "2.4.5",
179
- "@agent-relay/sdk": "2.4.5",
180
- "@agent-relay/telemetry": "2.4.5",
181
- "@agent-relay/trajectory": "2.4.5",
182
- "@agent-relay/user-directory": "2.4.5",
183
- "@agent-relay/utils": "2.4.5",
177
+ "@agent-relay/config": "2.4.7",
178
+ "@agent-relay/hooks": "2.4.7",
179
+ "@agent-relay/sdk": "2.4.7",
180
+ "@agent-relay/telemetry": "2.4.7",
181
+ "@agent-relay/trajectory": "2.4.7",
182
+ "@agent-relay/user-directory": "2.4.7",
183
+ "@agent-relay/utils": "2.4.7",
184
184
  "@modelcontextprotocol/sdk": "^1.0.0",
185
185
  "@relaycast/sdk": "^0.4.0",
186
186
  "chokidar": "^5.0.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/acp-bridge",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "ACP (Agent Client Protocol) bridge for Agent Relay - expose relay agents to ACP-compatible editors like Zed",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -46,7 +46,7 @@
46
46
  "access": "public"
47
47
  },
48
48
  "dependencies": {
49
- "@agent-relay/sdk": "2.4.5",
49
+ "@agent-relay/sdk": "2.4.7",
50
50
  "@agentclientprotocol/sdk": "^0.12.0"
51
51
  },
52
52
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/config",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "Shared configuration schemas and loaders for Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/hooks",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "Hook emitter, registry, and trajectory hooks for Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -37,9 +37,9 @@
37
37
  "test:watch": "vitest"
38
38
  },
39
39
  "dependencies": {
40
- "@agent-relay/config": "2.4.5",
41
- "@agent-relay/trajectory": "2.4.5",
42
- "@agent-relay/sdk": "2.4.5"
40
+ "@agent-relay/config": "2.4.7",
41
+ "@agent-relay/trajectory": "2.4.7",
42
+ "@agent-relay/sdk": "2.4.7"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "^22.19.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/memory",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "Semantic memory storage and retrieval system for agent-relay with multiple backend support",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "test:watch": "vitest"
23
23
  },
24
24
  "dependencies": {
25
- "@agent-relay/hooks": "2.4.5"
25
+ "@agent-relay/hooks": "2.4.7"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.19.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/policy",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "Agent policy management with multi-level fallback (repo, local PRPM, cloud workspace)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "test:watch": "vitest"
23
23
  },
24
24
  "dependencies": {
25
- "@agent-relay/config": "2.4.5"
25
+ "@agent-relay/config": "2.4.7"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.19.3",
@@ -179,7 +179,7 @@ export class AgentRelay {
179
179
  if (waitForMessage) {
180
180
  return this.waitForAgentMessage(name, timeoutMs ?? 60_000);
181
181
  }
182
- return this.waitForAgentReady(name, timeoutMs ?? 30_000);
182
+ return this.waitForAgentReady(name, timeoutMs ?? 60_000);
183
183
  }
184
184
  // ── Human source ────────────────────────────────────────────────────────
185
185
  human(opts) {
@@ -375,7 +375,7 @@ export class AgentRelay {
375
375
  * The agent's CLI may not yet be ready to receive messages.
376
376
  * Use `waitForAgentMessage()` for full readiness.
377
377
  */
378
- async waitForAgentReady(name, timeoutMs = 30_000) {
378
+ async waitForAgentReady(name, timeoutMs = 60_000) {
379
379
  const client = await this.ensureStarted();
380
380
  const existing = this.knownAgents.get(name);
381
381
  if (existing && this.readyAgents.has(name)) {
@@ -755,7 +755,7 @@ export class AgentRelay {
755
755
  const client = await relay.ensureStarted();
756
756
  await client.release(name, reason);
757
757
  },
758
- async waitForReady(timeoutMs = 30_000) {
758
+ async waitForReady(timeoutMs = 60_000) {
759
759
  await relay.waitForAgentReady(name, timeoutMs);
760
760
  },
761
761
  waitForExit(timeoutMs) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/sdk",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -81,7 +81,7 @@
81
81
  "typescript": "^5.7.3"
82
82
  },
83
83
  "dependencies": {
84
- "@agent-relay/config": "2.4.5",
84
+ "@agent-relay/config": "2.4.7",
85
85
  "@relaycast/sdk": "^0.4.0",
86
86
  "yaml": "^2.7.0"
87
87
  }
@@ -351,7 +351,7 @@ export class AgentRelay {
351
351
  if (waitForMessage) {
352
352
  return this.waitForAgentMessage(name, timeoutMs ?? 60_000);
353
353
  }
354
- return this.waitForAgentReady(name, timeoutMs ?? 30_000);
354
+ return this.waitForAgentReady(name, timeoutMs ?? 60_000);
355
355
  }
356
356
 
357
357
  // ── Human source ────────────────────────────────────────────────────────
@@ -580,7 +580,7 @@ export class AgentRelay {
580
580
  * The agent's CLI may not yet be ready to receive messages.
581
581
  * Use `waitForAgentMessage()` for full readiness.
582
582
  */
583
- async waitForAgentReady(name: string, timeoutMs = 30_000): Promise<Agent> {
583
+ async waitForAgentReady(name: string, timeoutMs = 60_000): Promise<Agent> {
584
584
  const client = await this.ensureStarted();
585
585
  const existing = this.knownAgents.get(name);
586
586
  if (existing && this.readyAgents.has(name)) {
@@ -994,7 +994,7 @@ export class AgentRelay {
994
994
  const client = await relay.ensureStarted();
995
995
  await client.release(name, reason);
996
996
  },
997
- async waitForReady(timeoutMs = 30_000) {
997
+ async waitForReady(timeoutMs = 60_000) {
998
998
  await relay.waitForAgentReady(name, timeoutMs);
999
999
  },
1000
1000
  waitForExit(timeoutMs?: number) {
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agent-relay-sdk"
7
- version = "2.4.5"
7
+ version = "2.4.7"
8
8
  description = "Python SDK for Agent Relay workflows"
9
9
  readme = "README.md"
10
10
  license = "Apache-2.0"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/telemetry",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "Anonymous telemetry for Agent Relay usage analytics",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/trajectory",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "Trajectory integration utilities (trail/PDERO) for Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "test:watch": "vitest"
23
23
  },
24
24
  "dependencies": {
25
- "@agent-relay/config": "2.4.5"
25
+ "@agent-relay/config": "2.4.7"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.19.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/user-directory",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "User directory service for agent-relay (per-user credential storage)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "test:watch": "vitest"
23
23
  },
24
24
  "dependencies": {
25
- "@agent-relay/utils": "2.4.5"
25
+ "@agent-relay/utils": "2.4.7"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.19.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/utils",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "Shared utilities for agent-relay: logging, name generation, command resolution, update checking",
5
5
  "type": "module",
6
6
  "main": "dist/cjs/index.js",
@@ -112,7 +112,7 @@
112
112
  "vitest": "^3.2.4"
113
113
  },
114
114
  "dependencies": {
115
- "@agent-relay/config": "2.4.5",
115
+ "@agent-relay/config": "2.4.7",
116
116
  "compare-versions": "^6.1.1"
117
117
  },
118
118
  "publishConfig": {
Binary file