visionclaw 0.1.161 → 0.1.162

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.1.162](https://github.com/babelcloud/visionclaw/compare/v0.1.161...v0.1.162) (2026-03-22)
2
+
3
+
4
+
1
5
  ## [0.1.161](https://github.com/babelcloud/visionclaw/compare/v0.1.160...v0.1.161) (2026-03-22)
2
6
 
3
7
 
@@ -20177,7 +20177,7 @@ var require_prompts3 = __commonJS({
20177
20177
 
20178
20178
  // dist/utils/version-check.js
20179
20179
  function isBundled() {
20180
- const v7 = "0.1.160";
20180
+ const v7 = "0.1.162";
20181
20181
  return typeof v7 === "string" && v7 !== "undefined";
20182
20182
  }
20183
20183
  function getPackageRoot() {
@@ -20194,7 +20194,7 @@ function getInstallationInfo() {
20194
20194
  };
20195
20195
  }
20196
20196
  function getCurrentVersion() {
20197
- const bundledVersion = "0.1.160";
20197
+ const bundledVersion = "0.1.162";
20198
20198
  if (bundledVersion && bundledVersion !== "undefined") {
20199
20199
  return bundledVersion;
20200
20200
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "visionclaw",
3
- "version": "0.1.161",
3
+ "version": "0.1.162",
4
4
  "description": "A personal assistant agent that runs on your desktop, receives commands from messaging channels, and executes tasks autonomously.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -110,6 +110,6 @@
110
110
  "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
111
111
  "build:bundle": "node scripts/esbuild-bundle.cjs",
112
112
  "build:obfuscate": "javascript-obfuscator dist/ --output dist/ --compact true --identifier-names-generator hexadecimal --string-array true --string-array-encoding base64 --rename-properties false",
113
- "release": "pnpm lint && pnpm build && pnpm run build:bundle && pnpm version patch --no-git-tag-version && pnpm changelog && git add -A && git commit -m \"chore(release): v$(node -p 'require(\"./package.json\").version')\" && git tag \"v$(node -p 'require(\"./package.json\").version')\" && pnpm publish"
113
+ "release": "pnpm lint && pnpm build && pnpm version patch --no-git-tag-version && pnpm run build:bundle && pnpm changelog && git add -A && git commit -m \"chore(release): v$(node -p 'require(\"./package.json\").version')\" && git tag \"v$(node -p 'require(\"./package.json\").version')\" && pnpm publish"
114
114
  }
115
115
  }