visionclaw 0.1.201-beta.1 → 0.1.201

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,14 @@
1
+ ## [0.1.201](https://github.com/babelcloud/visionclaw/compare/v0.1.200...v0.1.201) (2026-06-27)
2
+
3
+ ### Features
4
+
5
+ * **factcheck:** enable factcheck by default, reduce hallucination on financial tasks ([0ab234d](https://github.com/babelcloud/visionclaw/commit/0ab234d881f4dddbd13cc2ea47673600538799a4))
6
+ * **financial-tool:** faster financial-tool response by better cache ([ffb151e](https://github.com/babelcloud/visionclaw/commit/ffb151e91161af83f17a39dbc6a950b0f7f053ad))
7
+ * **factcheck:** factcheck support option-chain claims ([75ac9b4](https://github.com/babelcloud/visionclaw/commit/75ac9b40dc2db6318a7e3a6d2e96374203b12084))
8
+ * support switchable owner primary channel, QQ/Telegram (#551) ([35348a0](https://github.com/babelcloud/visionclaw/commit/35348a01df1b26d6b92a281b1cac0023ba70e5b6))
9
+ * **agent:** 将 fast responder 的回复记录到 activity tracker ([17bc967](https://github.com/babelcloud/visionclaw/commit/17bc9678ccd3985bc1b45489ef23bd36bef0b130))
10
+
11
+
1
12
  ## [0.1.200](https://github.com/babelcloud/visionclaw/compare/v0.1.199...v0.1.200) (2026-06-25)
2
13
 
3
14
  ### Bug Fixes
@@ -20670,7 +20670,7 @@ var require_prompts3 = __commonJS({
20670
20670
 
20671
20671
  // dist/utils/version-check.js
20672
20672
  function isBundled() {
20673
- const v14 = "0.1.201-beta.1";
20673
+ const v14 = "0.1.201";
20674
20674
  return typeof v14 === "string" && v14 !== "undefined";
20675
20675
  }
20676
20676
  function getPackageRoot() {
@@ -20687,7 +20687,7 @@ function getInstallationInfo() {
20687
20687
  };
20688
20688
  }
20689
20689
  function getCurrentVersion() {
20690
- const bundledVersion = "0.1.201-beta.1";
20690
+ const bundledVersion = "0.1.201";
20691
20691
  if (bundledVersion && bundledVersion !== "undefined") {
20692
20692
  return bundledVersion;
20693
20693
  }
@@ -990357,7 +990357,7 @@ var init_browser_launcher = __esm({
990357
990357
 
990358
990358
  // dist/utils/playwriter-relay.js
990359
990359
  function isBundled2() {
990360
- const v14 = "0.1.201-beta.1";
990360
+ const v14 = "0.1.201";
990361
990361
  return typeof v14 === "string" && v14 !== "undefined";
990362
990362
  }
990363
990363
  function resolveRelayEntryPath() {
@@ -990392,7 +990392,7 @@ function getPm2RelayProcess() {
990392
990392
  }
990393
990393
  }
990394
990394
  function pm2Start(entryPath, host, port) {
990395
- const versionStr = "0.1.201-beta.1";
990395
+ const versionStr = "0.1.201";
990396
990396
  (0, import_node_child_process19.execFileSync)("pm2", ["start", entryPath, "--name", PM2_PROCESS_NAME, "--update-env"], {
990397
990397
  encoding: "utf-8",
990398
990398
  stdio: "pipe",
@@ -990418,7 +990418,7 @@ function pm2Delete() {
990418
990418
  }
990419
990419
  }
990420
990420
  function pm2Restart(host, port) {
990421
- const versionStr = "0.1.201-beta.1";
990421
+ const versionStr = "0.1.201";
990422
990422
  (0, import_node_child_process19.execFileSync)("pm2", ["restart", PM2_PROCESS_NAME, "--update-env"], {
990423
990423
  encoding: "utf-8",
990424
990424
  stdio: "pipe",
@@ -990588,7 +990588,7 @@ function reconcilePlaywriterRelay(host = "127.0.0.1", port = 19988) {
990588
990588
  pm2Restart(host, port);
990589
990589
  return;
990590
990590
  }
990591
- const currentVersion = "0.1.201-beta.1";
990591
+ const currentVersion = "0.1.201";
990592
990592
  if (currentEnv.VISIONCLAW_VERSION && currentEnv.VISIONCLAW_VERSION !== currentVersion) {
990593
990593
  logger.system(`Playwriter relay: VisionClaw version changed (${currentEnv.VISIONCLAW_VERSION} \u2192 ${currentVersion}), recreating`);
990594
990594
  pm2Delete();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "visionclaw",
3
- "version": "0.1.201-beta.1",
3
+ "version": "0.1.201",
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",