@agentvault/agentvault 0.19.65 → 0.19.67
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/cli.js +4 -6
- package/dist/cli.js.map +3 -3
- package/dist/create-agent.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -88250,7 +88250,7 @@ var init_index = __esm({
|
|
|
88250
88250
|
init_skill_invoker();
|
|
88251
88251
|
await init_skill_telemetry();
|
|
88252
88252
|
await init_policy_enforcer();
|
|
88253
|
-
VERSION = "0.
|
|
88253
|
+
VERSION = true ? "0.19.67" : "0.0.0-dev";
|
|
88254
88254
|
}
|
|
88255
88255
|
});
|
|
88256
88256
|
|
|
@@ -88751,10 +88751,8 @@ async function runCreateCommand(options) {
|
|
|
88751
88751
|
try {
|
|
88752
88752
|
const result = execSync2("openclaw --version", { stdio: "pipe", env });
|
|
88753
88753
|
console.log(` OpenClaw found: ${result?.toString().trim()}`);
|
|
88754
|
-
} catch
|
|
88755
|
-
console.error(
|
|
88756
|
-
console.error(` Debug \u2014 PATH includes: ${env.PATH?.split(":").filter((p2) => p2.includes("local")).join(", ")}`);
|
|
88757
|
-
console.error(` Debug \u2014 error: ${err?.message?.slice(0, 200)}`);
|
|
88754
|
+
} catch {
|
|
88755
|
+
console.error(" Error: 'openclaw' not found in PATH. Is OpenClaw installed?");
|
|
88758
88756
|
process.exit(1);
|
|
88759
88757
|
}
|
|
88760
88758
|
if (!existsSync2(configPath)) {
|
|
@@ -88780,7 +88778,7 @@ async function runCreateCommand(options) {
|
|
|
88780
88778
|
}
|
|
88781
88779
|
console.log(" Step 3/7 \u2014 Creating agent with OpenClaw...");
|
|
88782
88780
|
try {
|
|
88783
|
-
execSync2(`openclaw agents add -- ${name2}`, { stdio: "pipe", env });
|
|
88781
|
+
execSync2(`openclaw agents add --non-interactive --workspace "${workspaceDir}" -- ${name2}`, { stdio: "pipe", env });
|
|
88784
88782
|
console.log(` Agent '${name2}' created.
|
|
88785
88783
|
`);
|
|
88786
88784
|
} catch {
|