agent-relay 2.1.0 → 2.1.1

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/index.cjs CHANGED
@@ -35591,6 +35591,7 @@ __export(index_exports, {
35591
35591
  getPlatformIdentifier: () => getPlatformIdentifier,
35592
35592
  getRepoFullName: () => getRepoFullName,
35593
35593
  getRepoFullNameFromPath: () => getRepoFullNameFromPath,
35594
+ getSupportedPlatforms: () => getSupportedPlatforms,
35594
35595
  getSupportedProviders: () => getSupportedProviders,
35595
35596
  getTmuxPanePid: () => getTmuxPanePid,
35596
35597
  getTmuxPath: () => getTmuxPath,
@@ -35622,6 +35623,7 @@ __export(index_exports, {
35622
35623
  isMatchingResponse: () => isMatchingResponse,
35623
35624
  isPlaceholderTarget: () => isPlaceholderTarget,
35624
35625
  isPlaceholderTargetFast: () => isPlaceholderTargetFast,
35626
+ isPlatformSupported: () => isPlatformSupported,
35625
35627
  isPrivateChannel: () => isPrivateChannel,
35626
35628
  isPublicChannel: () => isPublicChannel,
35627
35629
  isSpawnOrReleaseCommandFast: () => isSpawnOrReleaseCommandFast,
@@ -42932,18 +42934,34 @@ var import_node_url2 = require("node:url");
42932
42934
  var import_node_fs6 = __toESM(require("node:fs"), 1);
42933
42935
  var import_node_os5 = __toESM(require("node:os"), 1);
42934
42936
  var import_node_path9 = __toESM(require("node:path"), 1);
42937
+ var SUPPORTED_PLATFORMS = {
42938
+ darwin: {
42939
+ arm64: "relay-pty-darwin-arm64",
42940
+ x64: "relay-pty-darwin-x64"
42941
+ },
42942
+ linux: {
42943
+ arm64: "relay-pty-linux-arm64",
42944
+ x64: "relay-pty-linux-x64"
42945
+ }
42946
+ };
42935
42947
  function getPlatformBinaryName() {
42936
42948
  const platform2 = import_node_os5.default.platform();
42937
42949
  const arch = import_node_os5.default.arch();
42938
- if (platform2 === "darwin" && arch === "arm64")
42939
- return "relay-pty-darwin-arm64";
42940
- if (platform2 === "darwin" && arch === "x64")
42941
- return "relay-pty-darwin-x64";
42942
- if (platform2 === "linux" && arch === "arm64")
42943
- return "relay-pty-linux-arm64";
42944
- if (platform2 === "linux" && arch === "x64")
42945
- return "relay-pty-linux-x64";
42946
- return null;
42950
+ return SUPPORTED_PLATFORMS[platform2]?.[arch] ?? null;
42951
+ }
42952
+ function isPlatformSupported() {
42953
+ const platform2 = import_node_os5.default.platform();
42954
+ const arch = import_node_os5.default.arch();
42955
+ return SUPPORTED_PLATFORMS[platform2]?.[arch] !== void 0;
42956
+ }
42957
+ function getSupportedPlatforms() {
42958
+ const platforms = [];
42959
+ for (const [os17, archs] of Object.entries(SUPPORTED_PLATFORMS)) {
42960
+ for (const arch of Object.keys(archs)) {
42961
+ platforms.push(`${os17}-${arch}`);
42962
+ }
42963
+ }
42964
+ return platforms.join(", ");
42947
42965
  }
42948
42966
  var cachedBinaryPath;
42949
42967
  var cacheChecked = false;
@@ -42953,70 +42971,86 @@ function getLastSearchPaths() {
42953
42971
  }
42954
42972
  function findRelayPtyBinary(callerDirname) {
42955
42973
  const envOverride = process.env.RELAY_PTY_BINARY;
42956
- if (envOverride && import_node_fs6.default.existsSync(envOverride)) {
42974
+ if (envOverride && isExecutable(envOverride)) {
42957
42975
  lastSearchPaths = [envOverride];
42958
42976
  return envOverride;
42959
42977
  }
42960
- let packageRoot;
42961
- if (callerDirname.includes("node_modules/@agent-relay/")) {
42962
- packageRoot = import_node_path9.default.join(callerDirname, "..", "..", "..", "..");
42963
- } else if (callerDirname.includes("node_modules/agent-relay")) {
42964
- packageRoot = import_node_path9.default.join(callerDirname, "..", "..", "..");
42965
- } else {
42966
- packageRoot = import_node_path9.default.join(callerDirname, "..", "..", "..");
42967
- }
42968
- let nodeModulesRoot = null;
42969
- const nodeModulesMatch = callerDirname.match(/^(.+?\/node_modules)\/@agent-relay\//);
42970
- if (nodeModulesMatch) {
42971
- nodeModulesRoot = nodeModulesMatch[1];
42972
- }
42973
42978
  const platformBinary = getPlatformBinaryName();
42974
- const candidates = [
42975
- // Primary: installed by postinstall from platform-specific binary
42976
- import_node_path9.default.join(packageRoot, "bin", "relay-pty"),
42977
- // Development: local Rust build
42978
- import_node_path9.default.join(packageRoot, "relay-pty", "target", "release", "relay-pty"),
42979
- import_node_path9.default.join(packageRoot, "relay-pty", "target", "debug", "relay-pty"),
42980
- // Local build in cwd (for development)
42981
- import_node_path9.default.join(process.cwd(), "relay-pty", "target", "release", "relay-pty"),
42982
- // Docker container (CI tests)
42983
- "/app/bin/relay-pty",
42984
- // Installed globally
42985
- "/usr/local/bin/relay-pty",
42986
- // In node_modules (when installed as local dependency)
42987
- import_node_path9.default.join(process.cwd(), "node_modules", "agent-relay", "bin", "relay-pty"),
42988
- // Global npm install (nvm) - root package
42989
- import_node_path9.default.join(process.env.HOME || "", ".nvm", "versions", "node", process.version, "lib", "node_modules", "agent-relay", "bin", "relay-pty")
42990
- ];
42991
- if (nodeModulesRoot) {
42992
- candidates.push(import_node_path9.default.join(nodeModulesRoot, "agent-relay", "bin", "relay-pty"));
42993
- }
42994
- if (process.env.HOME) {
42995
- candidates.push(import_node_path9.default.join("/usr/local/lib/node_modules", "agent-relay", "bin", "relay-pty"));
42996
- candidates.push(import_node_path9.default.join("/opt/homebrew/lib/node_modules", "agent-relay", "bin", "relay-pty"));
42997
- candidates.push(import_node_path9.default.join(process.env.HOME, ".local", "share", "pnpm", "global", "node_modules", "agent-relay", "bin", "relay-pty"));
42998
- }
42999
- if (platformBinary) {
43000
- candidates.push(import_node_path9.default.join(packageRoot, "bin", platformBinary));
43001
- candidates.push(import_node_path9.default.join(process.cwd(), "node_modules", "agent-relay", "bin", platformBinary));
43002
- candidates.push(import_node_path9.default.join(process.env.HOME || "", ".nvm", "versions", "node", process.version, "lib", "node_modules", "agent-relay", "bin", platformBinary));
43003
- if (nodeModulesRoot) {
43004
- candidates.push(import_node_path9.default.join(nodeModulesRoot, "agent-relay", "bin", platformBinary));
43005
- }
43006
- if (process.env.HOME) {
43007
- candidates.push(import_node_path9.default.join("/usr/local/lib/node_modules", "agent-relay", "bin", platformBinary));
43008
- candidates.push(import_node_path9.default.join("/opt/homebrew/lib/node_modules", "agent-relay", "bin", platformBinary));
43009
- candidates.push(import_node_path9.default.join(process.env.HOME, ".local", "share", "pnpm", "global", "node_modules", "agent-relay", "bin", platformBinary));
42979
+ const normalizedCaller = callerDirname.replace(/\\/g, "/");
42980
+ const packageRoots = [];
42981
+ const scopedMatch = normalizedCaller.match(/^(.+?\/node_modules)\/@agent-relay\//);
42982
+ const directMatch = normalizedCaller.match(/^(.+?\/node_modules\/agent-relay)/);
42983
+ if (scopedMatch) {
42984
+ packageRoots.push(import_node_path9.default.join(scopedMatch[1], "agent-relay"));
42985
+ }
42986
+ if (directMatch) {
42987
+ packageRoots.push(directMatch[1]);
42988
+ }
42989
+ if (!normalizedCaller.includes("node_modules")) {
42990
+ packageRoots.push(import_node_path9.default.join(callerDirname, "..", "..", ".."));
42991
+ }
42992
+ const home = process.env.HOME || process.env.USERPROFILE || "";
42993
+ if (home) {
42994
+ const npxCacheBase = import_node_path9.default.join(home, ".npm", "_npx");
42995
+ if (import_node_fs6.default.existsSync(npxCacheBase)) {
42996
+ try {
42997
+ const entries = import_node_fs6.default.readdirSync(npxCacheBase);
42998
+ for (const entry of entries) {
42999
+ const npxPackage = import_node_path9.default.join(npxCacheBase, entry, "node_modules", "agent-relay");
43000
+ if (import_node_fs6.default.existsSync(npxPackage)) {
43001
+ packageRoots.push(npxPackage);
43002
+ }
43003
+ }
43004
+ } catch {
43005
+ }
43010
43006
  }
43011
43007
  }
43008
+ packageRoots.push(import_node_path9.default.join(process.cwd(), "node_modules", "agent-relay"));
43009
+ if (home) {
43010
+ packageRoots.push(import_node_path9.default.join(home, ".nvm", "versions", "node", process.version, "lib", "node_modules", "agent-relay"));
43011
+ packageRoots.push(import_node_path9.default.join(home, ".volta", "tools", "image", "packages", "agent-relay", "lib", "node_modules", "agent-relay"));
43012
+ packageRoots.push(import_node_path9.default.join(home, ".fnm", "node-versions", process.version, "installation", "lib", "node_modules", "agent-relay"));
43013
+ packageRoots.push(import_node_path9.default.join(home, "n", "lib", "node_modules", "agent-relay"));
43014
+ packageRoots.push(import_node_path9.default.join(home, ".asdf", "installs", "nodejs", process.version.replace("v", ""), "lib", "node_modules", "agent-relay"));
43015
+ packageRoots.push(import_node_path9.default.join(home, ".local", "share", "pnpm", "global", "node_modules", "agent-relay"));
43016
+ packageRoots.push(import_node_path9.default.join(home, ".config", "yarn", "global", "node_modules", "agent-relay"));
43017
+ packageRoots.push(import_node_path9.default.join(home, ".yarn", "global", "node_modules", "agent-relay"));
43018
+ }
43019
+ packageRoots.push("/usr/local/lib/node_modules/agent-relay");
43020
+ packageRoots.push("/opt/homebrew/lib/node_modules/agent-relay");
43021
+ packageRoots.push("/usr/lib/node_modules/agent-relay");
43022
+ const candidates = [];
43023
+ for (const root of packageRoots) {
43024
+ if (platformBinary) {
43025
+ candidates.push(import_node_path9.default.join(root, "bin", platformBinary));
43026
+ }
43027
+ candidates.push(import_node_path9.default.join(root, "bin", "relay-pty"));
43028
+ }
43029
+ const devRoot = normalizedCaller.includes("node_modules") ? null : import_node_path9.default.join(callerDirname, "..", "..", "..");
43030
+ if (devRoot) {
43031
+ candidates.push(import_node_path9.default.join(devRoot, "relay-pty", "target", "release", "relay-pty"));
43032
+ candidates.push(import_node_path9.default.join(devRoot, "relay-pty", "target", "debug", "relay-pty"));
43033
+ }
43034
+ candidates.push(import_node_path9.default.join(process.cwd(), "relay-pty", "target", "release", "relay-pty"));
43035
+ candidates.push("/app/bin/relay-pty");
43036
+ candidates.push("/usr/local/bin/relay-pty");
43037
+ candidates.push("/usr/bin/relay-pty");
43012
43038
  lastSearchPaths = candidates;
43013
43039
  for (const candidate of candidates) {
43014
- if (import_node_fs6.default.existsSync(candidate)) {
43040
+ if (isExecutable(candidate)) {
43015
43041
  return candidate;
43016
43042
  }
43017
43043
  }
43018
43044
  return null;
43019
43045
  }
43046
+ function isExecutable(filePath) {
43047
+ try {
43048
+ import_node_fs6.default.accessSync(filePath, import_node_fs6.default.constants.X_OK);
43049
+ return true;
43050
+ } catch {
43051
+ return false;
43052
+ }
43053
+ }
43020
43054
  function hasRelayPtyBinary(callerDirname) {
43021
43055
  if (!cacheChecked) {
43022
43056
  cachedBinaryPath = findRelayPtyBinary(callerDirname);
@@ -78830,6 +78864,7 @@ init_dist();
78830
78864
  getPlatformIdentifier,
78831
78865
  getRepoFullName,
78832
78866
  getRepoFullNameFromPath,
78867
+ getSupportedPlatforms,
78833
78868
  getSupportedProviders,
78834
78869
  getTmuxPanePid,
78835
78870
  getTmuxPath,
@@ -78861,6 +78896,7 @@ init_dist();
78861
78896
  isMatchingResponse,
78862
78897
  isPlaceholderTarget,
78863
78898
  isPlaceholderTargetFast,
78899
+ isPlatformSupported,
78864
78900
  isPrivateChannel,
78865
78901
  isPublicChannel,
78866
78902
  isSpawnOrReleaseCommandFast,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Real-time agent-to-agent communication system",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -130,23 +130,23 @@
130
130
  },
131
131
  "homepage": "https://github.com/AgentWorkforce/relay#readme",
132
132
  "dependencies": {
133
- "@agent-relay/bridge": "2.1.0",
134
- "@agent-relay/config": "2.1.0",
135
- "@agent-relay/continuity": "2.1.0",
136
- "@agent-relay/daemon": "2.1.0",
137
- "@agent-relay/hooks": "2.1.0",
138
- "@agent-relay/mcp": "2.1.0",
139
- "@agent-relay/protocol": "2.1.0",
140
- "@agent-relay/resiliency": "2.1.0",
141
- "@agent-relay/sdk": "2.1.0",
142
- "@agent-relay/spawner": "2.1.0",
143
- "@agent-relay/state": "2.1.0",
144
- "@agent-relay/storage": "2.1.0",
145
- "@agent-relay/telemetry": "2.1.0",
146
- "@agent-relay/trajectory": "2.1.0",
147
- "@agent-relay/user-directory": "2.1.0",
148
- "@agent-relay/utils": "2.1.0",
149
- "@agent-relay/wrapper": "2.1.0",
133
+ "@agent-relay/bridge": "2.1.1",
134
+ "@agent-relay/config": "2.1.1",
135
+ "@agent-relay/continuity": "2.1.1",
136
+ "@agent-relay/daemon": "2.1.1",
137
+ "@agent-relay/hooks": "2.1.1",
138
+ "@agent-relay/mcp": "2.1.1",
139
+ "@agent-relay/protocol": "2.1.1",
140
+ "@agent-relay/resiliency": "2.1.1",
141
+ "@agent-relay/sdk": "2.1.1",
142
+ "@agent-relay/spawner": "2.1.1",
143
+ "@agent-relay/state": "2.1.1",
144
+ "@agent-relay/storage": "2.1.1",
145
+ "@agent-relay/telemetry": "2.1.1",
146
+ "@agent-relay/trajectory": "2.1.1",
147
+ "@agent-relay/user-directory": "2.1.1",
148
+ "@agent-relay/utils": "2.1.1",
149
+ "@agent-relay/wrapper": "2.1.1",
150
150
  "@modelcontextprotocol/sdk": "^1.0.0",
151
151
  "agent-trajectories": "^0.2.3",
152
152
  "chokidar": "^5.0.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/api-types",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Shared API types and Zod schemas for Agent Relay",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/benchmark",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Performance benchmarking for agent swarms, sub-agents, and single agents using Harbor",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -54,9 +54,9 @@
54
54
  "directory": "packages/benchmark"
55
55
  },
56
56
  "dependencies": {
57
- "@agent-relay/sdk": "2.1.0",
58
- "@agent-relay/protocol": "2.1.0",
59
- "@agent-relay/spawner": "2.1.0",
57
+ "@agent-relay/sdk": "2.1.1",
58
+ "@agent-relay/protocol": "2.1.1",
59
+ "@agent-relay/spawner": "2.1.1",
60
60
  "commander": "^12.1.0",
61
61
  "yaml": "^2.3.4"
62
62
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/bridge",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
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.1.0",
26
- "@agent-relay/config": "2.1.0",
27
- "@agent-relay/utils": "2.1.0",
28
- "@agent-relay/policy": "2.1.0",
29
- "@agent-relay/user-directory": "2.1.0",
30
- "@agent-relay/wrapper": "2.1.0",
31
- "@agent-relay/mcp": "2.1.0"
25
+ "@agent-relay/protocol": "2.1.1",
26
+ "@agent-relay/config": "2.1.1",
27
+ "@agent-relay/utils": "2.1.1",
28
+ "@agent-relay/policy": "2.1.1",
29
+ "@agent-relay/user-directory": "2.1.1",
30
+ "@agent-relay/wrapper": "2.1.1",
31
+ "@agent-relay/mcp": "2.1.1"
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.1.0",
3
+ "version": "2.1.1",
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.1.0",
3
+ "version": "2.1.1",
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.1.0",
86
+ "@agent-relay/protocol": "2.1.1",
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.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Session continuity manager for Relay (ledgers, handoffs, resume)",
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/memory": "2.1.0"
25
+ "@agent-relay/memory": "2.1.1"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.19.3",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/daemon",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
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.1.0",
26
- "@agent-relay/config": "2.1.0",
27
- "@agent-relay/storage": "2.1.0",
28
- "@agent-relay/bridge": "2.1.0",
29
- "@agent-relay/utils": "2.1.0",
30
- "@agent-relay/policy": "2.1.0",
31
- "@agent-relay/memory": "2.1.0",
32
- "@agent-relay/resiliency": "2.1.0",
33
- "@agent-relay/user-directory": "2.1.0",
34
- "@agent-relay/wrapper": "2.1.0",
35
- "@agent-relay/telemetry": "2.1.0",
25
+ "@agent-relay/protocol": "2.1.1",
26
+ "@agent-relay/config": "2.1.1",
27
+ "@agent-relay/storage": "2.1.1",
28
+ "@agent-relay/bridge": "2.1.1",
29
+ "@agent-relay/utils": "2.1.1",
30
+ "@agent-relay/policy": "2.1.1",
31
+ "@agent-relay/memory": "2.1.1",
32
+ "@agent-relay/resiliency": "2.1.1",
33
+ "@agent-relay/user-directory": "2.1.1",
34
+ "@agent-relay/wrapper": "2.1.1",
35
+ "@agent-relay/telemetry": "2.1.1",
36
36
  "ws": "^8.18.3",
37
37
  "pg": "^8.16.3",
38
38
  "uuid": "^10.0.0"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/hooks",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
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.1.0",
41
- "@agent-relay/config": "2.1.0",
42
- "@agent-relay/trajectory": "2.1.0"
40
+ "@agent-relay/protocol": "2.1.1",
41
+ "@agent-relay/config": "2.1.1",
42
+ "@agent-relay/trajectory": "2.1.1"
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.1.0",
3
+ "version": "2.1.1",
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.1.0",
51
- "@agent-relay/protocol": "2.1.0",
50
+ "@agent-relay/config": "2.1.1",
51
+ "@agent-relay/protocol": "2.1.1",
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.1.0",
3
+ "version": "2.1.1",
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.1.0"
25
+ "@agent-relay/hooks": "2.1.1"
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.1.0",
3
+ "version": "2.1.1",
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.1.0"
25
+ "@agent-relay/config": "2.1.1"
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.1.0",
3
+ "version": "2.1.1",
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.1.0",
3
+ "version": "2.1.1",
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.1.0",
3
+ "version": "2.1.1",
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.1.0"
58
+ "@agent-relay/protocol": "2.1.1"
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.1.0",
3
+ "version": "2.1.1",
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.1.0",
3
+ "version": "2.1.1",
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.1.0",
3
+ "version": "2.1.1",
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.1.0"
59
+ "@agent-relay/protocol": "2.1.1"
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.1.0",
3
+ "version": "2.1.1",
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.1.0",
3
+ "version": "2.1.1",
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.1.0"
25
+ "@agent-relay/config": "2.1.1"
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.1.0",
3
+ "version": "2.1.1",
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.1.0"
25
+ "@agent-relay/resiliency": "2.1.1"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.19.3",