@agentvault/agentvault 0.19.62 → 0.19.63
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 -3
- package/dist/cli.js.map +2 -2
- package/dist/create-agent.d.ts.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -88763,10 +88763,11 @@ async function runCreateCommand(options) {
|
|
|
88763
88763
|
\u255A\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255D
|
|
88764
88764
|
`);
|
|
88765
88765
|
console.log(" Step 1/7 \u2014 Preflight checks...");
|
|
88766
|
+
const userHome = process.env.HOME ?? process.env.USERPROFILE ?? "";
|
|
88766
88767
|
const extraPaths = [
|
|
88767
|
-
`${
|
|
88768
|
-
`${
|
|
88769
|
-
`${
|
|
88768
|
+
`${userHome}/.local/bin`,
|
|
88769
|
+
`${userHome}/.pnpm/bin`,
|
|
88770
|
+
`${userHome}/Library/pnpm/bin`,
|
|
88770
88771
|
"/usr/local/bin",
|
|
88771
88772
|
"/opt/homebrew/bin"
|
|
88772
88773
|
].join(":");
|