agent-relay 10.6.6 → 10.6.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.
@@ -1,22 +1,2 @@
1
- /** Absolute path to the project-local workspace-key file within `dataDir`. */
2
- export declare function projectWorkspaceKeyPath(dataDir: string): string;
3
- /**
4
- * Read the workspace key recorded for this project's data dir. A missing or
5
- * malformed file (or a blank key) reads as `undefined` — the caller falls
6
- * through to the next resolution source rather than failing.
7
- */
8
- export declare function readProjectWorkspaceKey(dataDir: string): string | undefined;
9
- /**
10
- * Persist the workspace key for this project's data dir with owner-only
11
- * permissions (matching `connection.json`). A blank key is ignored so a broker
12
- * that never resolved a key does not clobber a previously recorded one.
13
- *
14
- * The write is atomic and symlink-safe: the payload is written to a fresh,
15
- * exclusively-created temp file (so a pre-planted symlink at the temp path
16
- * cannot redirect it) and then `rename`d over the destination. `rename` never
17
- * follows a symlink at the destination and is atomic on POSIX, so a concurrent
18
- * reader sees either the old or the new complete file — never a truncated one,
19
- * and never an attacker-chosen target.
20
- */
21
- export declare function writeProjectWorkspaceKey(dataDir: string, workspaceKey: string | undefined): void;
1
+ export { projectWorkspaceKeyPath, readProjectWorkspaceKey, writeProjectWorkspaceKey, } from '@agent-relay/cloud/workspace-key';
22
2
  //# sourceMappingURL=project-workspace-key.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"project-workspace-key.d.ts","sourceRoot":"","sources":["../../../src/cli/lib/project-workspace-key.ts"],"names":[],"mappings":"AAkBA,8EAA8E;AAC9E,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAE/D;AAED;;;;GAIG;AACH,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAS3E;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,wBAAwB,CAAC,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI,CAkChG"}
1
+ {"version":3,"file":"project-workspace-key.d.ts","sourceRoot":"","sources":["../../../src/cli/lib/project-workspace-key.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,uBAAuB,EACvB,uBAAuB,EACvB,wBAAwB,GACzB,MAAM,kCAAkC,CAAC"}
@@ -1,84 +1,4 @@
1
- import fs from 'node:fs';
2
- import path from 'node:path';
3
- /**
4
- * Project-local record of the workspace key the broker in this directory was
5
- * started with. `agent-relay up` writes it into the project data dir
6
- * (`.agentworkforce/relay/`, the same git-excluded directory that holds
7
- * `connection.json`) so that later SDK-backed commands run in the same CWD
8
- * (`fleet nodes`, `node …`, etc.) resolve the workspace the local broker
9
- * actually joined — rather than falling through to the machine-global active
10
- * workspace, which may point at a different workspace.
11
- */
12
- const PROJECT_WORKSPACE_KEY_FILENAME = 'workspace-key.json';
13
- /** Absolute path to the project-local workspace-key file within `dataDir`. */
14
- export function projectWorkspaceKeyPath(dataDir) {
15
- return path.join(dataDir, PROJECT_WORKSPACE_KEY_FILENAME);
16
- }
17
- /**
18
- * Read the workspace key recorded for this project's data dir. A missing or
19
- * malformed file (or a blank key) reads as `undefined` — the caller falls
20
- * through to the next resolution source rather than failing.
21
- */
22
- export function readProjectWorkspaceKey(dataDir) {
23
- try {
24
- const raw = fs.readFileSync(projectWorkspaceKeyPath(dataDir), 'utf-8');
25
- const parsed = JSON.parse(raw);
26
- const key = typeof parsed.workspaceKey === 'string' ? parsed.workspaceKey.trim() : '';
27
- return key || undefined;
28
- }
29
- catch {
30
- return undefined;
31
- }
32
- }
33
- /**
34
- * Persist the workspace key for this project's data dir with owner-only
35
- * permissions (matching `connection.json`). A blank key is ignored so a broker
36
- * that never resolved a key does not clobber a previously recorded one.
37
- *
38
- * The write is atomic and symlink-safe: the payload is written to a fresh,
39
- * exclusively-created temp file (so a pre-planted symlink at the temp path
40
- * cannot redirect it) and then `rename`d over the destination. `rename` never
41
- * follows a symlink at the destination and is atomic on POSIX, so a concurrent
42
- * reader sees either the old or the new complete file — never a truncated one,
43
- * and never an attacker-chosen target.
44
- */
45
- export function writeProjectWorkspaceKey(dataDir, workspaceKey) {
46
- const key = workspaceKey?.trim();
47
- if (!key)
48
- return;
49
- fs.mkdirSync(dataDir, { recursive: true, mode: 0o700 });
50
- const file = projectWorkspaceKeyPath(dataDir);
51
- const tmp = `${file}.tmp.${process.pid}`;
52
- const payload = { workspaceKey: key };
53
- const data = `${JSON.stringify(payload, null, 2)}\n`;
54
- // 'wx' == O_CREAT | O_EXCL: create a brand-new regular file, failing (rather
55
- // than following a symlink or truncating an existing file) if anything is
56
- // already at the temp path. A stale temp from a crashed run is removed first.
57
- let fd;
58
- try {
59
- fd = fs.openSync(tmp, 'wx', 0o600);
60
- }
61
- catch (err) {
62
- if (err.code !== 'EEXIST')
63
- throw err;
64
- fs.rmSync(tmp, { force: true });
65
- fd = fs.openSync(tmp, 'wx', 0o600);
66
- }
67
- try {
68
- try {
69
- fs.writeSync(fd, data);
70
- }
71
- finally {
72
- fs.closeSync(fd);
73
- }
74
- // openSync's mode is masked by umask; enforce owner-only before publishing.
75
- fs.chmodSync(tmp, 0o600);
76
- fs.renameSync(tmp, file);
77
- }
78
- catch (err) {
79
- // Never leave a partial temp file behind, whichever step failed.
80
- fs.rmSync(tmp, { force: true });
81
- throw err;
82
- }
83
- }
1
+ // Compatibility re-export for existing CLI-local imports. The public cloud
2
+ // package owns this contract so SDK consumers and the CLI cannot drift.
3
+ export { projectWorkspaceKeyPath, readProjectWorkspaceKey, writeProjectWorkspaceKey, } from '@agent-relay/cloud/workspace-key';
84
4
  //# sourceMappingURL=project-workspace-key.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"project-workspace-key.js","sourceRoot":"","sources":["../../../src/cli/lib/project-workspace-key.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,SAAS,CAAC;AACzB,OAAO,IAAI,MAAM,WAAW,CAAC;AAE7B;;;;;;;;GAQG;AACH,MAAM,8BAA8B,GAAG,oBAAoB,CAAC;AAM5D,8EAA8E;AAC9E,MAAM,UAAU,uBAAuB,CAAC,OAAe;IACrD,OAAO,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,8BAA8B,CAAC,CAAC;AAC5D,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,uBAAuB,CAAC,OAAe;IACrD,IAAI,CAAC;QACH,MAAM,GAAG,GAAG,EAAE,CAAC,YAAY,CAAC,uBAAuB,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,CAAC;QACvE,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAqC,CAAC;QACnE,MAAM,GAAG,GAAG,OAAO,MAAM,CAAC,YAAY,KAAK,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;QACtF,OAAO,GAAG,IAAI,SAAS,CAAC;IAC1B,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,SAAS,CAAC;IACnB,CAAC;AACH,CAAC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,wBAAwB,CAAC,OAAe,EAAE,YAAgC;IACxF,MAAM,GAAG,GAAG,YAAY,EAAE,IAAI,EAAE,CAAC;IACjC,IAAI,CAAC,GAAG;QAAE,OAAO;IACjB,EAAE,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;IACxD,MAAM,IAAI,GAAG,uBAAuB,CAAC,OAAO,CAAC,CAAC;IAC9C,MAAM,GAAG,GAAG,GAAG,IAAI,QAAQ,OAAO,CAAC,GAAG,EAAE,CAAC;IACzC,MAAM,OAAO,GAA4B,EAAE,YAAY,EAAE,GAAG,EAAE,CAAC;IAC/D,MAAM,IAAI,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC;IAErD,6EAA6E;IAC7E,0EAA0E;IAC1E,8EAA8E;IAC9E,IAAI,EAAU,CAAC;IACf,IAAI,CAAC;QACH,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,GAAG,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;IACrC,CAAC;IAAC,OAAO,GAAG,EAAE,CAAC;QACb,IAAK,GAA6B,CAAC,IAAI,KAAK,QAAQ;YAAE,MAAM,GAAG,CAAC;QAChE,EAAE,CAAC,MAAM,CAAC,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;QAChC,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,GAAG,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;IACrC,CAAC;IACD,IAAI,CAAC;QACH,IAAI,CAAC;YACH,EAAE,CAAC,SAAS,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;QACzB,CAAC;gBAAS,CAAC;YACT,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;QACnB,CAAC;QACD,4EAA4E;QAC5E,EAAE,CAAC,SAAS,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;QACzB,EAAE,CAAC,UAAU,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC3B,CAAC;IAAC,OAAO,GAAG,EAAE,CAAC;QACb,iEAAiE;QACjE,EAAE,CAAC,MAAM,CAAC,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;QAChC,MAAM,GAAG,CAAC;IACZ,CAAC;AACH,CAAC"}
1
+ {"version":3,"file":"project-workspace-key.js","sourceRoot":"","sources":["../../../src/cli/lib/project-workspace-key.ts"],"names":[],"mappings":"AAAA,2EAA2E;AAC3E,wEAAwE;AACxE,OAAO,EACL,uBAAuB,EACvB,uBAAuB,EACvB,wBAAwB,GACzB,MAAM,kCAAkC,CAAC"}
@@ -1,4 +1,5 @@
1
1
  import { AgentRelay, type AgentRelayAgent } from '@agent-relay/sdk';
2
+ import { type WorkspaceKeySource } from '@agent-relay/cloud/workspace-key';
2
3
  /** Options shared by the SDK-backed (Relaycast) CLI command groups. */
3
4
  export interface SdkClientOptions {
4
5
  workspaceKey?: string;
@@ -7,7 +8,7 @@ export interface SdkClientOptions {
7
8
  env?: NodeJS.ProcessEnv;
8
9
  }
9
10
  /** Where a resolved workspace key came from, in precedence order. */
10
- export type WorkspaceKeySource = 'flag' | 'env' | 'project' | 'store';
11
+ export type { WorkspaceKeySource };
11
12
  /**
12
13
  * Resolve the workspace key and report which source it came from. Precedence:
13
14
  * explicit flag → `RELAY_WORKSPACE_KEY`/`RELAY_API_KEY` env → the key the local
@@ -1 +1 @@
1
- {"version":3,"file":"sdk-client.d.ts","sourceRoot":"","sources":["../../../src/cli/lib/sdk-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAMpE,uEAAuE;AACvE,MAAM,WAAW,gBAAgB;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;CACzB;AAWD,qEAAqE;AACrE,MAAM,MAAM,kBAAkB,GAAG,MAAM,GAAG,KAAK,GAAG,SAAS,GAAG,OAAO,CAAC;AAEtE;;;;;;GAMG;AACH,wBAAgB,6BAA6B,CAAC,OAAO,GAAE,gBAAqB,GAAG;IAC7E,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,kBAAkB,CAAC;CAC5B,CAaA;AAED,wBAAgB,mBAAmB,CAAC,OAAO,GAAE,gBAAqB,GAAG,MAAM,CAE1E;AAeD,wBAAgB,cAAc,CAAC,OAAO,GAAE,gBAAqB,GAAG,MAAM,GAAG,SAAS,CAEjF;AAED,wBAAgB,iBAAiB,CAAC,OAAO,GAAE,gBAAqB,GAAG,MAAM,GAAG,SAAS,CAEpF;AAED,gDAAgD;AAChD,wBAAgB,oBAAoB,CAAC,OAAO,GAAE,gBAAqB,GAAG,UAAU,CAE/E;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,GAAE,gBAAqB,GAAG,eAAe,CAOhF"}
1
+ {"version":3,"file":"sdk-client.d.ts","sourceRoot":"","sources":["../../../src/cli/lib/sdk-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACpE,OAAO,EAEL,KAAK,kBAAkB,EACxB,MAAM,kCAAkC,CAAC;AAE1C,uEAAuE;AACvE,MAAM,WAAW,gBAAgB;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;CACzB;AAWD,qEAAqE;AACrE,YAAY,EAAE,kBAAkB,EAAE,CAAC;AAEnC;;;;;;GAMG;AACH,wBAAgB,6BAA6B,CAAC,OAAO,GAAE,gBAAqB,GAAG;IAC7E,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,kBAAkB,CAAC;CAC5B,CASA;AAED,wBAAgB,mBAAmB,CAAC,OAAO,GAAE,gBAAqB,GAAG,MAAM,CAE1E;AAED,wBAAgB,cAAc,CAAC,OAAO,GAAE,gBAAqB,GAAG,MAAM,GAAG,SAAS,CAEjF;AAED,wBAAgB,iBAAiB,CAAC,OAAO,GAAE,gBAAqB,GAAG,MAAM,GAAG,SAAS,CAEpF;AAED,gDAAgD;AAChD,wBAAgB,oBAAoB,CAAC,OAAO,GAAE,gBAAqB,GAAG,UAAU,CAE/E;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,GAAE,gBAAqB,GAAG,eAAe,CAOhF"}
@@ -1,7 +1,5 @@
1
1
  import { AgentRelay } from '@agent-relay/sdk';
2
- import { getProjectPaths } from '@agent-relay/config';
3
- import { activeWorkspaceKey } from './workspace-store.js';
4
- import { readProjectWorkspaceKey } from './project-workspace-key.js';
2
+ import { resolveWorkspaceKeyWithSource as resolveCloudWorkspaceKeyWithSource, } from '@agent-relay/cloud/workspace-key';
5
3
  function env(options) {
6
4
  return options.env ?? process.env;
7
5
  }
@@ -17,37 +15,17 @@ function trimOrUndefined(value) {
17
15
  * project broker rather than named explicitly.
18
16
  */
19
17
  export function resolveWorkspaceKeyWithSource(options = {}) {
20
- const e = env(options);
21
- const flag = trimOrUndefined(options.workspaceKey);
22
- if (flag)
23
- return { key: flag, source: 'flag' };
24
- const envKey = trimOrUndefined(e.RELAY_WORKSPACE_KEY) ?? trimOrUndefined(e.RELAY_API_KEY);
25
- if (envKey)
26
- return { key: envKey, source: 'env' };
27
- const project = trimOrUndefined(projectWorkspaceKey());
28
- if (project)
29
- return { key: project, source: 'project' };
30
- const store = trimOrUndefined(activeWorkspaceKey(e));
31
- if (store)
32
- return { key: store, source: 'store' };
18
+ const resolved = resolveCloudWorkspaceKeyWithSource({
19
+ workspaceKey: options.workspaceKey,
20
+ env: env(options),
21
+ });
22
+ if (resolved)
23
+ return resolved;
33
24
  throw new Error('No workspace key found. Pass --workspace-key, set RELAY_WORKSPACE_KEY, or run `relay workspace set_key <name> <key>`.');
34
25
  }
35
26
  export function resolveWorkspaceKey(options = {}) {
36
27
  return resolveWorkspaceKeyWithSource(options).key;
37
28
  }
38
- /**
39
- * Read the workspace key recorded by `relay up` for the current project
40
- * directory, or `undefined` when there is none / the project root cannot be
41
- * resolved. Never throws — a resolution failure just falls through.
42
- */
43
- function projectWorkspaceKey() {
44
- try {
45
- return readProjectWorkspaceKey(getProjectPaths().dataDir);
46
- }
47
- catch {
48
- return undefined;
49
- }
50
- }
51
29
  export function resolveBaseUrl(options = {}) {
52
30
  return trimOrUndefined(options.baseUrl) ?? trimOrUndefined(env(options).RELAY_BASE_URL);
53
31
  }
@@ -1 +1 @@
1
- {"version":3,"file":"sdk-client.js","sourceRoot":"","sources":["../../../src/cli/lib/sdk-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAwB,MAAM,kBAAkB,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AAUrE,SAAS,GAAG,CAAC,OAAyB;IACpC,OAAO,OAAO,CAAC,GAAG,IAAI,OAAO,CAAC,GAAG,CAAC;AACpC,CAAC;AAED,SAAS,eAAe,CAAC,KAAyB;IAChD,MAAM,OAAO,GAAG,KAAK,EAAE,IAAI,EAAE,CAAC;IAC9B,OAAO,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;AACvC,CAAC;AAKD;;;;;;GAMG;AACH,MAAM,UAAU,6BAA6B,CAAC,UAA4B,EAAE;IAI1E,MAAM,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC;IACvB,MAAM,IAAI,GAAG,eAAe,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACnD,IAAI,IAAI;QAAE,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC/C,MAAM,MAAM,GAAG,eAAe,CAAC,CAAC,CAAC,mBAAmB,CAAC,IAAI,eAAe,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC;IAC1F,IAAI,MAAM;QAAE,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC;IAClD,MAAM,OAAO,GAAG,eAAe,CAAC,mBAAmB,EAAE,CAAC,CAAC;IACvD,IAAI,OAAO;QAAE,OAAO,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC;IACxD,MAAM,KAAK,GAAG,eAAe,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC;IACrD,IAAI,KAAK;QAAE,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC;IAClD,MAAM,IAAI,KAAK,CACb,uHAAuH,CACxH,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,mBAAmB,CAAC,UAA4B,EAAE;IAChE,OAAO,6BAA6B,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC;AACpD,CAAC;AAED;;;;GAIG;AACH,SAAS,mBAAmB;IAC1B,IAAI,CAAC;QACH,OAAO,uBAAuB,CAAC,eAAe,EAAE,CAAC,OAAO,CAAC,CAAC;IAC5D,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,SAAS,CAAC;IACnB,CAAC;AACH,CAAC;AAED,MAAM,UAAU,cAAc,CAAC,UAA4B,EAAE;IAC3D,OAAO,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,eAAe,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,cAAc,CAAC,CAAC;AAC1F,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAA4B,EAAE;IAC9D,OAAO,eAAe,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,eAAe,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,CAAC;AAC3F,CAAC;AAED,gDAAgD;AAChD,MAAM,UAAU,oBAAoB,CAAC,UAA4B,EAAE;IACjE,OAAO,IAAI,UAAU,CAAC,EAAE,YAAY,EAAE,mBAAmB,CAAC,OAAO,CAAC,EAAE,OAAO,EAAE,cAAc,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;AAC1G,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,gBAAgB,CAAC,UAA4B,EAAE;IAC7D,MAAM,KAAK,GAAG,iBAAiB,CAAC,OAAO,CAAC,CAAC;IACzC,OAAO,IAAI,UAAU,CAAC;QACpB,YAAY,EAAE,mBAAmB,CAAC,OAAO,CAAC;QAC1C,OAAO,EAAE,cAAc,CAAC,OAAO,CAAC;QAChC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;KACxC,CAAC,CAAC;AACL,CAAC"}
1
+ {"version":3,"file":"sdk-client.js","sourceRoot":"","sources":["../../../src/cli/lib/sdk-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAwB,MAAM,kBAAkB,CAAC;AACpE,OAAO,EACL,6BAA6B,IAAI,kCAAkC,GAEpE,MAAM,kCAAkC,CAAC;AAU1C,SAAS,GAAG,CAAC,OAAyB;IACpC,OAAO,OAAO,CAAC,GAAG,IAAI,OAAO,CAAC,GAAG,CAAC;AACpC,CAAC;AAED,SAAS,eAAe,CAAC,KAAyB;IAChD,MAAM,OAAO,GAAG,KAAK,EAAE,IAAI,EAAE,CAAC;IAC9B,OAAO,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;AACvC,CAAC;AAKD;;;;;;GAMG;AACH,MAAM,UAAU,6BAA6B,CAAC,UAA4B,EAAE;IAI1E,MAAM,QAAQ,GAAG,kCAAkC,CAAC;QAClD,YAAY,EAAE,OAAO,CAAC,YAAY;QAClC,GAAG,EAAE,GAAG,CAAC,OAAO,CAAC;KAClB,CAAC,CAAC;IACH,IAAI,QAAQ;QAAE,OAAO,QAAQ,CAAC;IAC9B,MAAM,IAAI,KAAK,CACb,uHAAuH,CACxH,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,mBAAmB,CAAC,UAA4B,EAAE;IAChE,OAAO,6BAA6B,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC;AACpD,CAAC;AAED,MAAM,UAAU,cAAc,CAAC,UAA4B,EAAE;IAC3D,OAAO,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,eAAe,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,cAAc,CAAC,CAAC;AAC1F,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,UAA4B,EAAE;IAC9D,OAAO,eAAe,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,eAAe,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,CAAC;AAC3F,CAAC;AAED,gDAAgD;AAChD,MAAM,UAAU,oBAAoB,CAAC,UAA4B,EAAE;IACjE,OAAO,IAAI,UAAU,CAAC,EAAE,YAAY,EAAE,mBAAmB,CAAC,OAAO,CAAC,EAAE,OAAO,EAAE,cAAc,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;AAC1G,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,gBAAgB,CAAC,UAA4B,EAAE;IAC7D,MAAM,KAAK,GAAG,iBAAiB,CAAC,OAAO,CAAC,CAAC;IACzC,OAAO,IAAI,UAAU,CAAC;QACpB,YAAY,EAAE,mBAAmB,CAAC,OAAO,CAAC;QAC1C,OAAO,EAAE,cAAc,CAAC,OAAO,CAAC;QAChC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;KACxC,CAAC,CAAC;AACL,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay",
3
- "version": "10.6.6",
3
+ "version": "10.6.7",
4
4
  "description": "Real-time agent-to-agent communication system",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -43,12 +43,12 @@
43
43
  "pack:validate": "npm pack --dry-run"
44
44
  },
45
45
  "dependencies": {
46
- "@agent-relay/cloud": "10.6.6",
47
- "@agent-relay/config": "10.6.6",
48
- "@agent-relay/fleet": "10.6.6",
49
- "@agent-relay/harness-driver": "10.6.6",
50
- "@agent-relay/sdk": "10.6.6",
51
- "@agent-relay/utils": "10.6.6",
46
+ "@agent-relay/cloud": "10.6.7",
47
+ "@agent-relay/config": "10.6.7",
48
+ "@agent-relay/fleet": "10.6.7",
49
+ "@agent-relay/harness-driver": "10.6.7",
50
+ "@agent-relay/sdk": "10.6.7",
51
+ "@agent-relay/utils": "10.6.7",
52
52
  "@modelcontextprotocol/sdk": "^1.0.0",
53
53
  "@relayfile/client": "^0.10.27",
54
54
  "@relayflows/cli": "^1.0.1",