visionclaw 0.1.203-beta.5 → 0.1.203
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 +14 -0
- package/dist-agent/bundle.cjs +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [0.1.203](https://github.com/babelcloud/visionclaw/compare/v0.1.202...v0.1.203) (2026-07-07)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **financial-tool:** chunk long TickDB daily bar ranges ([a57ab6f](https://github.com/babelcloud/visionclaw/commit/a57ab6f5495902e1e4e0314ca505001e41325dfd))
|
|
6
|
+
* **financial-tool:** fall back to Yahoo for A/HK bars ([6de66b4](https://github.com/babelcloud/visionclaw/commit/6de66b487259e85515fb269df7652e03fa5b5862))
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **llm-gateway:** integrate LLM Gateway support, more stable LLM provider ([c37c75c](https://github.com/babelcloud/visionclaw/commit/c37c75cacd2e5936f257fa2395cd9c99a09aeece))
|
|
11
|
+
* **session-manager, stream-handler, wake-cycle-runner:** enhance communication handling and result processing ([d929243](https://github.com/babelcloud/visionclaw/commit/d929243adccb8a31c061b561d0b957b034784221))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
1
15
|
## [0.1.202](https://github.com/babelcloud/visionclaw/compare/v0.1.201...v0.1.202) (2026-07-01)
|
|
2
16
|
|
|
3
17
|
### Bug Fixes
|
package/dist-agent/bundle.cjs
CHANGED
|
@@ -20777,7 +20777,7 @@ var require_prompts3 = __commonJS({
|
|
|
20777
20777
|
|
|
20778
20778
|
// dist/utils/version-check.js
|
|
20779
20779
|
function isBundled() {
|
|
20780
|
-
const v14 = "0.1.203
|
|
20780
|
+
const v14 = "0.1.203";
|
|
20781
20781
|
return typeof v14 === "string" && v14 !== "undefined";
|
|
20782
20782
|
}
|
|
20783
20783
|
function getPackageRoot() {
|
|
@@ -20794,7 +20794,7 @@ function getInstallationInfo() {
|
|
|
20794
20794
|
};
|
|
20795
20795
|
}
|
|
20796
20796
|
function getCurrentVersion() {
|
|
20797
|
-
const bundledVersion = "0.1.203
|
|
20797
|
+
const bundledVersion = "0.1.203";
|
|
20798
20798
|
if (bundledVersion && bundledVersion !== "undefined") {
|
|
20799
20799
|
return bundledVersion;
|
|
20800
20800
|
}
|
|
@@ -990793,7 +990793,7 @@ var init_browser_launcher = __esm({
|
|
|
990793
990793
|
|
|
990794
990794
|
// dist/utils/playwriter-relay.js
|
|
990795
990795
|
function isBundled2() {
|
|
990796
|
-
const v14 = "0.1.203
|
|
990796
|
+
const v14 = "0.1.203";
|
|
990797
990797
|
return typeof v14 === "string" && v14 !== "undefined";
|
|
990798
990798
|
}
|
|
990799
990799
|
function resolveRelayEntryPath() {
|
|
@@ -990828,7 +990828,7 @@ function getPm2RelayProcess() {
|
|
|
990828
990828
|
}
|
|
990829
990829
|
}
|
|
990830
990830
|
function pm2Start(entryPath, host, port) {
|
|
990831
|
-
const versionStr = "0.1.203
|
|
990831
|
+
const versionStr = "0.1.203";
|
|
990832
990832
|
(0, import_node_child_process19.execFileSync)("pm2", ["start", entryPath, "--name", PM2_PROCESS_NAME, "--update-env"], {
|
|
990833
990833
|
encoding: "utf-8",
|
|
990834
990834
|
stdio: "pipe",
|
|
@@ -990854,7 +990854,7 @@ function pm2Delete() {
|
|
|
990854
990854
|
}
|
|
990855
990855
|
}
|
|
990856
990856
|
function pm2Restart(host, port) {
|
|
990857
|
-
const versionStr = "0.1.203
|
|
990857
|
+
const versionStr = "0.1.203";
|
|
990858
990858
|
(0, import_node_child_process19.execFileSync)("pm2", ["restart", PM2_PROCESS_NAME, "--update-env"], {
|
|
990859
990859
|
encoding: "utf-8",
|
|
990860
990860
|
stdio: "pipe",
|
|
@@ -991024,7 +991024,7 @@ function reconcilePlaywriterRelay(host = "127.0.0.1", port = 19988) {
|
|
|
991024
991024
|
pm2Restart(host, port);
|
|
991025
991025
|
return;
|
|
991026
991026
|
}
|
|
991027
|
-
const currentVersion = "0.1.203
|
|
991027
|
+
const currentVersion = "0.1.203";
|
|
991028
991028
|
if (currentEnv.VISIONCLAW_VERSION && currentEnv.VISIONCLAW_VERSION !== currentVersion) {
|
|
991029
991029
|
logger.system(`Playwriter relay: VisionClaw version changed (${currentEnv.VISIONCLAW_VERSION} \u2192 ${currentVersion}), recreating`);
|
|
991030
991030
|
pm2Delete();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visionclaw",
|
|
3
|
-
"version": "0.1.203
|
|
3
|
+
"version": "0.1.203",
|
|
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",
|