@agentvault/claude-bridge 0.4.0 → 0.5.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/dist/index.js +74 -11
- package/dist/service/backend.d.ts +1 -0
- package/dist/service/backend.d.ts.map +1 -1
- package/dist/service/launchd.d.ts.map +1 -1
- package/dist/service/launcher.d.ts +16 -0
- package/dist/service/launcher.d.ts.map +1 -0
- package/dist/service/spec.d.ts +3 -1
- package/dist/service/spec.d.ts.map +1 -1
- package/dist/service/subcommand.d.ts.map +1 -1
- package/dist/service/systemd.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -86,6 +86,57 @@ var init_config = __esm({
|
|
|
86
86
|
}
|
|
87
87
|
});
|
|
88
88
|
|
|
89
|
+
// src/service/launcher.ts
|
|
90
|
+
import { dirname as dirname2 } from "node:path";
|
|
91
|
+
function sq2(s10) {
|
|
92
|
+
return `'${s10.replace(/'/g, `'\\''`)}'`;
|
|
93
|
+
}
|
|
94
|
+
function candidateExpr(c4) {
|
|
95
|
+
return c4.includes("$") ? `"${c4}"` : sq2(c4);
|
|
96
|
+
}
|
|
97
|
+
function renderLauncher(opts) {
|
|
98
|
+
const candidates = ["node", ...opts.fallbacks ?? FALLBACK_NODES];
|
|
99
|
+
const lines = [
|
|
100
|
+
"#!/usr/bin/env bash",
|
|
101
|
+
"# AgentVault bridge launcher \u2014 regenerated on every `install`. Resolves node at",
|
|
102
|
+
"# boot so a node upgrade / version-manager switch can't strand the daemon."
|
|
103
|
+
];
|
|
104
|
+
if (opts.installPath) lines.push(`export PATH=${sq2(opts.installPath)}:"$PATH"`);
|
|
105
|
+
for (const c4 of candidates) {
|
|
106
|
+
lines.push(`if n=$(command -v ${candidateExpr(c4)} 2>/dev/null); then exec "$n" ${sq2(opts.entrypoint)} "$@"; fi`);
|
|
107
|
+
}
|
|
108
|
+
lines.push(
|
|
109
|
+
`echo "[bridge] node not found on PATH or known locations \u2014 re-run: agentvault-claude-bridge install" >&2`,
|
|
110
|
+
"exit 0"
|
|
111
|
+
);
|
|
112
|
+
return lines.join("\n") + "\n";
|
|
113
|
+
}
|
|
114
|
+
function writeLauncher(deps, spec) {
|
|
115
|
+
deps.mkdir(dirname2(spec.launcherPath));
|
|
116
|
+
deps.writeFile(spec.launcherPath, spec.launcherScript);
|
|
117
|
+
deps.chmod(spec.launcherPath, 493);
|
|
118
|
+
}
|
|
119
|
+
var FALLBACK_NODES;
|
|
120
|
+
var init_launcher = __esm({
|
|
121
|
+
"src/service/launcher.ts"() {
|
|
122
|
+
"use strict";
|
|
123
|
+
FALLBACK_NODES = [
|
|
124
|
+
"/opt/homebrew/bin/node",
|
|
125
|
+
// Homebrew (Apple Silicon) — stable symlink
|
|
126
|
+
"/usr/local/bin/node",
|
|
127
|
+
// Homebrew (Intel) / NodeSource / tarball
|
|
128
|
+
"/usr/bin/node",
|
|
129
|
+
// system apt/dnf
|
|
130
|
+
"$HOME/.volta/bin/node",
|
|
131
|
+
// Volta shim
|
|
132
|
+
"$HOME/.asdf/shims/node",
|
|
133
|
+
// asdf shim
|
|
134
|
+
"$HOME/.local/bin/node"
|
|
135
|
+
// user-local installs
|
|
136
|
+
];
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
|
|
89
140
|
// src/service/spec.ts
|
|
90
141
|
import { join as join7 } from "node:path";
|
|
91
142
|
function buildServiceSpec(cfg, opts) {
|
|
@@ -101,9 +152,12 @@ function buildServiceSpec(cfg, opts) {
|
|
|
101
152
|
if (cfg.armRoom) env.AV_ARM_ROOM = "1";
|
|
102
153
|
if (cfg.model) env.AV_CLAUDE_MODEL = cfg.model;
|
|
103
154
|
if (cfg.systemPrompt) env.AV_SYSTEM_PROMPT = cfg.systemPrompt;
|
|
155
|
+
const launcherPath = join7(cfg.dataDir, "launch-bridge.sh");
|
|
104
156
|
return {
|
|
105
157
|
label: `dev.agentvault.bridge-${slugify2(cfg.agentName)}`,
|
|
106
|
-
programArgs: [
|
|
158
|
+
programArgs: [launcherPath],
|
|
159
|
+
launcherPath,
|
|
160
|
+
launcherScript: renderLauncher({ installPath: opts.path, entrypoint: opts.entrypoint }),
|
|
107
161
|
env,
|
|
108
162
|
workingDir: cfg.worker && cfg.workspaceDir ? cfg.workspaceDir : opts.home,
|
|
109
163
|
logOut: join7(cfg.dataDir, "logs", "bridge.log"),
|
|
@@ -116,11 +170,12 @@ var init_spec = __esm({
|
|
|
116
170
|
"src/service/spec.ts"() {
|
|
117
171
|
"use strict";
|
|
118
172
|
init_config();
|
|
173
|
+
init_launcher();
|
|
119
174
|
}
|
|
120
175
|
});
|
|
121
176
|
|
|
122
177
|
// src/service/launchd.ts
|
|
123
|
-
import { dirname as
|
|
178
|
+
import { dirname as dirname3, join as join8 } from "node:path";
|
|
124
179
|
function esc3(s10) {
|
|
125
180
|
return s10.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">");
|
|
126
181
|
}
|
|
@@ -160,6 +215,7 @@ var LaunchdBackend;
|
|
|
160
215
|
var init_launchd = __esm({
|
|
161
216
|
"src/service/launchd.ts"() {
|
|
162
217
|
"use strict";
|
|
218
|
+
init_launcher();
|
|
163
219
|
LaunchdBackend = class {
|
|
164
220
|
constructor(deps) {
|
|
165
221
|
this.deps = deps;
|
|
@@ -173,8 +229,9 @@ var init_launchd = __esm({
|
|
|
173
229
|
}
|
|
174
230
|
install(spec) {
|
|
175
231
|
const path2 = this.plistPath(spec.label);
|
|
176
|
-
this.deps.mkdir(
|
|
177
|
-
this.deps
|
|
232
|
+
this.deps.mkdir(dirname3(spec.logOut));
|
|
233
|
+
writeLauncher(this.deps, spec);
|
|
234
|
+
this.deps.mkdir(dirname3(path2));
|
|
178
235
|
this.deps.writeFile(path2, renderLaunchdPlist(spec));
|
|
179
236
|
this.deps.exec("launchctl", ["bootout", `${this.domain()}/${spec.label}`]);
|
|
180
237
|
this.deps.exec("launchctl", ["bootstrap", this.domain(), path2]);
|
|
@@ -194,7 +251,7 @@ var init_launchd = __esm({
|
|
|
194
251
|
});
|
|
195
252
|
|
|
196
253
|
// src/service/systemd.ts
|
|
197
|
-
import { dirname as
|
|
254
|
+
import { dirname as dirname4, join as join9 } from "node:path";
|
|
198
255
|
function q5(s10) {
|
|
199
256
|
const esc4 = s10.replace(/\\/g, "\\\\").replace(/"/g, '\\"').replace(/\n/g, "\\n").replace(/\r/g, "\\r").replace(/\t/g, "\\t").replace(/%/g, "%%");
|
|
200
257
|
return `"${esc4}"`;
|
|
@@ -224,6 +281,7 @@ var SystemdBackend;
|
|
|
224
281
|
var init_systemd = __esm({
|
|
225
282
|
"src/service/systemd.ts"() {
|
|
226
283
|
"use strict";
|
|
284
|
+
init_launcher();
|
|
227
285
|
SystemdBackend = class {
|
|
228
286
|
constructor(deps) {
|
|
229
287
|
this.deps = deps;
|
|
@@ -234,8 +292,9 @@ var init_systemd = __esm({
|
|
|
234
292
|
}
|
|
235
293
|
install(spec) {
|
|
236
294
|
const path2 = this.unitPath(spec.label);
|
|
237
|
-
this.deps.mkdir(
|
|
238
|
-
this.deps
|
|
295
|
+
this.deps.mkdir(dirname4(spec.logOut));
|
|
296
|
+
writeLauncher(this.deps, spec);
|
|
297
|
+
this.deps.mkdir(dirname4(path2));
|
|
239
298
|
this.deps.writeFile(path2, renderSystemdUnit(spec));
|
|
240
299
|
this.deps.exec("loginctl", ["enable-linger", this.deps.user]);
|
|
241
300
|
this.deps.exec("systemctl", ["--user", "daemon-reload"]);
|
|
@@ -260,7 +319,7 @@ var init_systemd = __esm({
|
|
|
260
319
|
|
|
261
320
|
// src/service/backend.ts
|
|
262
321
|
import { execFileSync } from "node:child_process";
|
|
263
|
-
import { mkdirSync as mkdirSync3, writeFileSync as writeFileSync2, rmSync as rmSync3, existsSync as existsSync4 } from "node:fs";
|
|
322
|
+
import { mkdirSync as mkdirSync3, writeFileSync as writeFileSync2, rmSync as rmSync3, existsSync as existsSync4, chmodSync } from "node:fs";
|
|
264
323
|
import { userInfo } from "node:os";
|
|
265
324
|
function defaultDeps() {
|
|
266
325
|
return {
|
|
@@ -278,6 +337,7 @@ function defaultDeps() {
|
|
|
278
337
|
},
|
|
279
338
|
writeFile: (p2, d10) => writeFileSync2(p2, d10),
|
|
280
339
|
mkdir: (p2) => mkdirSync3(p2, { recursive: true }),
|
|
340
|
+
chmod: (p2, m6) => chmodSync(p2, m6),
|
|
281
341
|
rm: (p2) => rmSync3(p2, { force: true }),
|
|
282
342
|
exists: (p2) => existsSync4(p2)
|
|
283
343
|
};
|
|
@@ -322,9 +382,12 @@ function maybeRunServiceSubcommand(argv, env, deps) {
|
|
|
322
382
|
);
|
|
323
383
|
}
|
|
324
384
|
const spec = buildServiceSpec(cfg, {
|
|
325
|
-
nodePath: process.execPath,
|
|
326
385
|
entrypoint,
|
|
327
|
-
home: env.HOME ?? ""
|
|
386
|
+
home: env.HOME ?? "",
|
|
387
|
+
// Bake the install-time PATH so the launcher can find node at boot even
|
|
388
|
+
// though launchd/systemd start with a minimal PATH. NOT process.execPath
|
|
389
|
+
// — that's the version-pinned realpath a node upgrade would invalidate.
|
|
390
|
+
path: env.PATH ?? ""
|
|
328
391
|
});
|
|
329
392
|
backend.install(spec);
|
|
330
393
|
log(`installed service ${spec.label} \u2014 logs: ${spec.logOut}`);
|
|
@@ -132698,7 +132761,7 @@ async function main() {
|
|
|
132698
132761
|
"[bridge] warning: passing the invite token on the command line is visible to other local users via 'ps'. Prefer: AV_INVITE_TOKEN=\u2026 npx @agentvault/claude-bridge"
|
|
132699
132762
|
);
|
|
132700
132763
|
}
|
|
132701
|
-
console.error(`[bridge] version: ${true ? "0.
|
|
132764
|
+
console.error(`[bridge] version: ${true ? "0.5.0" : "dev"}`);
|
|
132702
132765
|
console.error(`[bridge] data dir: ${cfg.dataDir} (${cfg.dataDirSource})`);
|
|
132703
132766
|
if (cfg.worker) {
|
|
132704
132767
|
console.error(`[bridge] WORKER MODE \u2014 workspace: ${cfg.workspaceDir} \xB7 permissions: ${cfg.permissionMode} \xB7 enclave dir fenced`);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backend.d.ts","sourceRoot":"","sources":["../../src/service/backend.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAE7C,MAAM,WAAW,cAAc;IAC7B,OAAO,CAAC,IAAI,EAAE,WAAW,GAAG,IAAI,CAAC;IACjC,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,MAAM,CAAC,KAAK,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;CAC5D;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IACxE,SAAS,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAChD,KAAK,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9B,EAAE,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3B,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC;CACnC;AAED,wBAAgB,WAAW,IAAI,WAAW,
|
|
1
|
+
{"version":3,"file":"backend.d.ts","sourceRoot":"","sources":["../../src/service/backend.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAE7C,MAAM,WAAW,cAAc;IAC7B,OAAO,CAAC,IAAI,EAAE,WAAW,GAAG,IAAI,CAAC;IACjC,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,MAAM,CAAC,KAAK,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;CAC5D;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IACxE,SAAS,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAChD,KAAK,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9B,KAAK,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5C,EAAE,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3B,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC;CACnC;AAED,wBAAgB,WAAW,IAAI,WAAW,CAoBzC;AAED,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE,IAAI,CAAC,EAAE,WAAW,GAAG,cAAc,CAU3F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"launchd.d.ts","sourceRoot":"","sources":["../../src/service/launchd.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"launchd.d.ts","sourceRoot":"","sources":["../../src/service/launchd.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAUhE,gFAAgF;AAChF,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,WAAW,GAAG,MAAM,CAkC5D;AAED,qBAAa,cAAe,YAAW,cAAc;IACvC,OAAO,CAAC,IAAI;gBAAJ,IAAI,EAAE,WAAW;IAErC,OAAO,CAAC,SAAS;IAGjB,OAAO,CAAC,MAAM;IAId,OAAO,CAAC,IAAI,EAAE,WAAW,GAAG,IAAI;IAYhC,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAM9B,MAAM,CAAC,KAAK,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE;CAI3D"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ServiceSpec } from "./spec.js";
|
|
2
|
+
import type { BackendDeps } from "./backend.js";
|
|
3
|
+
export declare const FALLBACK_NODES: string[];
|
|
4
|
+
/** Render the bash launcher the service actually execs. Pure string. It prepends
|
|
5
|
+
* the install-time PATH, then execs the first resolvable node with the bundle
|
|
6
|
+
* entrypoint. If NO node is found it exits 0 (terminal — never a restart-loop,
|
|
7
|
+
* same philosophy as auth-failure) after logging a re-install hint. */
|
|
8
|
+
export declare function renderLauncher(opts: {
|
|
9
|
+
installPath: string;
|
|
10
|
+
entrypoint: string;
|
|
11
|
+
fallbacks?: string[];
|
|
12
|
+
}): string;
|
|
13
|
+
/** Write the launcher executable (0755) into the data-dir before the backend
|
|
14
|
+
* points the service at it. Shared by both platform backends. */
|
|
15
|
+
export declare function writeLauncher(deps: BackendDeps, spec: ServiceSpec): void;
|
|
16
|
+
//# sourceMappingURL=launcher.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"launcher.d.ts","sourceRoot":"","sources":["../../src/service/launcher.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAKhD,eAAO,MAAM,cAAc,UAO1B,CAAC;AAcF;;;wEAGwE;AACxE,wBAAgB,cAAc,CAAC,IAAI,EAAE;IACnC,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;CACtB,GAAG,MAAM,CAoBT;AAED;kEACkE;AAClE,wBAAgB,aAAa,CAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,WAAW,GAAG,IAAI,CAIxE"}
|
package/dist/service/spec.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import type { BridgeConfig } from "../config.js";
|
|
|
2
2
|
export interface ServiceSpec {
|
|
3
3
|
label: string;
|
|
4
4
|
programArgs: string[];
|
|
5
|
+
launcherPath: string;
|
|
6
|
+
launcherScript: string;
|
|
5
7
|
env: Record<string, string>;
|
|
6
8
|
workingDir: string;
|
|
7
9
|
logOut: string;
|
|
@@ -10,9 +12,9 @@ export interface ServiceSpec {
|
|
|
10
12
|
runAtLoad: boolean;
|
|
11
13
|
}
|
|
12
14
|
export interface BuildSpecOptions {
|
|
13
|
-
nodePath: string;
|
|
14
15
|
entrypoint: string;
|
|
15
16
|
home: string;
|
|
17
|
+
path: string;
|
|
16
18
|
}
|
|
17
19
|
export declare function buildServiceSpec(cfg: BridgeConfig, opts: BuildSpecOptions): ServiceSpec;
|
|
18
20
|
//# sourceMappingURL=spec.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spec.d.ts","sourceRoot":"","sources":["../../src/service/spec.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"spec.d.ts","sourceRoot":"","sources":["../../src/service/spec.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAGjD,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,EAAE,MAAM,CAAC;IACvB,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC5B,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,wBAAwB,EAAE,OAAO,CAAC;IAClC,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,gBAAgB;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AAID,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,YAAY,EAAE,IAAI,EAAE,gBAAgB,GAAG,WAAW,CA2BvF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subcommand.d.ts","sourceRoot":"","sources":["../../src/service/subcommand.ts"],"names":[],"mappings":"AAEA,OAAO,EAAiB,KAAK,cAAc,EAAE,MAAM,cAAc,CAAC;AAElE,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,cAAc,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CAC5B;AAQD;;uFAEuF;AACvF,wBAAgB,yBAAyB,CACvC,IAAI,EAAE,MAAM,EAAE,EACd,GAAG,EAAE,MAAM,CAAC,UAAU,EACtB,IAAI,CAAC,EAAE,cAAc,GACpB,OAAO,
|
|
1
|
+
{"version":3,"file":"subcommand.d.ts","sourceRoot":"","sources":["../../src/service/subcommand.ts"],"names":[],"mappings":"AAEA,OAAO,EAAiB,KAAK,cAAc,EAAE,MAAM,cAAc,CAAC;AAElE,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,cAAc,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CAC5B;AAQD;;uFAEuF;AACvF,wBAAgB,yBAAyB,CACvC,IAAI,EAAE,MAAM,EAAE,EACd,GAAG,EAAE,MAAM,CAAC,UAAU,EACtB,IAAI,CAAC,EAAE,cAAc,GACpB,OAAO,CAkDT"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"systemd.d.ts","sourceRoot":"","sources":["../../src/service/systemd.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"systemd.d.ts","sourceRoot":"","sources":["../../src/service/systemd.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAmBhE;;;sFAGsF;AACtF,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,WAAW,GAAG,MAAM,CAsB3D;AAED,qBAAa,cAAe,YAAW,cAAc;IACvC,OAAO,CAAC,IAAI;gBAAJ,IAAI,EAAE,WAAW;IAErC,OAAO,CAAC,QAAQ;IAIhB,OAAO,CAAC,IAAI,EAAE,WAAW,GAAG,IAAI;IAoBhC,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAQ9B,MAAM,CAAC,KAAK,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE;CAQ3D"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentvault/claude-bridge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AgentVault Claude Bridge — daemon for bridging a Claude agent into secure E2E-encrypted AgentVault 1:1 direct messages and rooms.",
|
|
6
6
|
"main": "dist/index.js",
|