agent-relay 2.0.28 → 2.0.29

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",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Real-time agent-to-agent communication system",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -87,21 +87,21 @@
87
87
  },
88
88
  "homepage": "https://github.com/AgentWorkforce/relay#readme",
89
89
  "dependencies": {
90
- "@agent-relay/bridge": "2.0.28",
91
- "@agent-relay/config": "2.0.28",
92
- "@agent-relay/continuity": "2.0.28",
93
- "@agent-relay/daemon": "2.0.28",
94
- "@agent-relay/hooks": "2.0.28",
95
- "@agent-relay/mcp": "2.0.28",
96
- "@agent-relay/protocol": "2.0.28",
97
- "@agent-relay/resiliency": "2.0.28",
98
- "@agent-relay/sdk": "2.0.28",
99
- "@agent-relay/storage": "2.0.28",
100
- "@agent-relay/telemetry": "2.0.28",
101
- "@agent-relay/trajectory": "2.0.28",
102
- "@agent-relay/user-directory": "2.0.28",
103
- "@agent-relay/utils": "2.0.28",
104
- "@agent-relay/wrapper": "2.0.28",
90
+ "@agent-relay/bridge": "2.0.29",
91
+ "@agent-relay/config": "2.0.29",
92
+ "@agent-relay/continuity": "2.0.29",
93
+ "@agent-relay/daemon": "2.0.29",
94
+ "@agent-relay/hooks": "2.0.29",
95
+ "@agent-relay/mcp": "2.0.29",
96
+ "@agent-relay/protocol": "2.0.29",
97
+ "@agent-relay/resiliency": "2.0.29",
98
+ "@agent-relay/sdk": "2.0.29",
99
+ "@agent-relay/storage": "2.0.29",
100
+ "@agent-relay/telemetry": "2.0.29",
101
+ "@agent-relay/trajectory": "2.0.29",
102
+ "@agent-relay/user-directory": "2.0.29",
103
+ "@agent-relay/utils": "2.0.29",
104
+ "@agent-relay/wrapper": "2.0.29",
105
105
  "agent-trajectories": "^0.2.3",
106
106
  "better-sqlite3": "^12.6.2",
107
107
  "chokidar": "^5.0.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/api-types",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Shared API types and Zod schemas for Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -746,6 +746,11 @@ export class AgentSpawner {
746
746
  const initialPrompt = task || 'You are ready. Wait for messages from the relay system.';
747
747
  args.push(initialPrompt);
748
748
  }
749
+ // Cursor requires 'login' subcommand for interactive auth flows (setup terminals)
750
+ // Unlike Claude/Codex which auto-start auth, Cursor needs explicit 'agent login'
751
+ if (isCursorCli && interactive && !task) {
752
+ args.unshift('login');
753
+ }
749
754
  if (debug)
750
755
  log.debug(`Spawning ${name} with: ${command} ${args.join(' ')}`);
751
756
  // Create PtyWrapper config
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/bridge",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Multi-project bridge client utilities for Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,13 +22,13 @@
22
22
  "test:watch": "vitest"
23
23
  },
24
24
  "dependencies": {
25
- "@agent-relay/protocol": "2.0.28",
26
- "@agent-relay/config": "2.0.28",
27
- "@agent-relay/utils": "2.0.28",
28
- "@agent-relay/policy": "2.0.28",
29
- "@agent-relay/user-directory": "2.0.28",
30
- "@agent-relay/wrapper": "2.0.28",
31
- "@agent-relay/mcp": "2.0.28"
25
+ "@agent-relay/protocol": "2.0.29",
26
+ "@agent-relay/config": "2.0.29",
27
+ "@agent-relay/utils": "2.0.29",
28
+ "@agent-relay/policy": "2.0.29",
29
+ "@agent-relay/user-directory": "2.0.29",
30
+ "@agent-relay/wrapper": "2.0.29",
31
+ "@agent-relay/mcp": "2.0.29"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/node": "^22.19.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/cli-tester",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Manual interactive testing for CLI authentication flows",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/config",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Shared configuration schemas and loaders for Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -83,7 +83,7 @@
83
83
  "test:watch": "vitest"
84
84
  },
85
85
  "dependencies": {
86
- "@agent-relay/protocol": "2.0.28",
86
+ "@agent-relay/protocol": "2.0.29",
87
87
  "zod": "^3.23.8",
88
88
  "zod-to-json-schema": "^3.23.1"
89
89
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/continuity",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Session continuity manager for Relay (ledgers, handoffs, resume)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/daemon",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Relay daemon server - agent coordination and message routing",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,17 +22,17 @@
22
22
  "test:watch": "vitest"
23
23
  },
24
24
  "dependencies": {
25
- "@agent-relay/protocol": "2.0.28",
26
- "@agent-relay/config": "2.0.28",
27
- "@agent-relay/storage": "2.0.28",
28
- "@agent-relay/bridge": "2.0.28",
29
- "@agent-relay/utils": "2.0.28",
30
- "@agent-relay/policy": "2.0.28",
31
- "@agent-relay/memory": "2.0.28",
32
- "@agent-relay/resiliency": "2.0.28",
33
- "@agent-relay/user-directory": "2.0.28",
34
- "@agent-relay/wrapper": "2.0.28",
35
- "@agent-relay/telemetry": "2.0.28",
25
+ "@agent-relay/protocol": "2.0.29",
26
+ "@agent-relay/config": "2.0.29",
27
+ "@agent-relay/storage": "2.0.29",
28
+ "@agent-relay/bridge": "2.0.29",
29
+ "@agent-relay/utils": "2.0.29",
30
+ "@agent-relay/policy": "2.0.29",
31
+ "@agent-relay/memory": "2.0.29",
32
+ "@agent-relay/resiliency": "2.0.29",
33
+ "@agent-relay/user-directory": "2.0.29",
34
+ "@agent-relay/wrapper": "2.0.29",
35
+ "@agent-relay/telemetry": "2.0.29",
36
36
  "ws": "^8.18.3",
37
37
  "better-sqlite3": "^12.6.2",
38
38
  "pg": "^8.16.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/hooks",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
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/protocol": "2.0.28",
41
- "@agent-relay/config": "2.0.28",
42
- "@agent-relay/trajectory": "2.0.28"
40
+ "@agent-relay/protocol": "2.0.29",
41
+ "@agent-relay/config": "2.0.29",
42
+ "@agent-relay/trajectory": "2.0.29"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "^22.19.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/mcp",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "MCP server for Agent Relay - native messaging tools for AI agents in Claude, Cursor, and VS Code",
5
5
  "author": "Agent Workforce Inc.",
6
6
  "license": "Apache-2.0",
@@ -47,8 +47,8 @@
47
47
  "prepublishOnly": "npm run clean && npm run build && npm test"
48
48
  },
49
49
  "dependencies": {
50
- "@agent-relay/config": "2.0.28",
51
- "@agent-relay/protocol": "2.0.28",
50
+ "@agent-relay/config": "2.0.29",
51
+ "@agent-relay/protocol": "2.0.29",
52
52
  "@modelcontextprotocol/sdk": "^1.0.0",
53
53
  "smol-toml": "^1.6.0",
54
54
  "zod": "^3.23.8"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/memory",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
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.0.28"
25
+ "@agent-relay/hooks": "2.0.29"
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.0.28",
3
+ "version": "2.0.29",
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.0.28"
25
+ "@agent-relay/config": "2.0.29"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.19.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/protocol",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Wire protocol types and framing for Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/resiliency",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Health monitoring, logging, metrics, and crash resilience utilities for Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/sdk",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Lightweight SDK for agent-to-agent communication via Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -55,7 +55,7 @@
55
55
  "access": "public"
56
56
  },
57
57
  "dependencies": {
58
- "@agent-relay/protocol": "2.0.28"
58
+ "@agent-relay/protocol": "2.0.29"
59
59
  },
60
60
  "engines": {
61
61
  "node": ">=18.0.0"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/spawner",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Agent spawning types and utilities for Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/state",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Agent state persistence for non-hook CLIs (Codex, Gemini, etc.)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/storage",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Storage adapters and interfaces for Relay message/session persistence",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -56,7 +56,7 @@
56
56
  }
57
57
  },
58
58
  "dependencies": {
59
- "@agent-relay/protocol": "2.0.28"
59
+ "@agent-relay/protocol": "2.0.29"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@types/node": "^22.19.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/telemetry",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
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.0.28",
3
+ "version": "2.0.29",
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.0.28"
25
+ "@agent-relay/config": "2.0.29"
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.0.28",
3
+ "version": "2.0.29",
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/resiliency": "2.0.28"
25
+ "@agent-relay/resiliency": "2.0.29"
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.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "Shared utilities for agent-relay: logging, name generation, command resolution, update checking",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/wrapper",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "CLI agent wrappers for Agent Relay - tmux, pty integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -30,11 +30,11 @@
30
30
  "clean": "rm -rf dist"
31
31
  },
32
32
  "dependencies": {
33
- "@agent-relay/api-types": "2.0.28",
34
- "@agent-relay/protocol": "2.0.28",
35
- "@agent-relay/config": "2.0.28",
36
- "@agent-relay/continuity": "2.0.28",
37
- "@agent-relay/resiliency": "2.0.28"
33
+ "@agent-relay/api-types": "2.0.29",
34
+ "@agent-relay/protocol": "2.0.29",
35
+ "@agent-relay/config": "2.0.29",
36
+ "@agent-relay/continuity": "2.0.29",
37
+ "@agent-relay/resiliency": "2.0.29"
38
38
  },
39
39
  "devDependencies": {
40
40
  "typescript": "^5.9.3",