visionclaw 0.1.204-beta.0 → 0.1.204
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 +8 -0
- package/dist-agent/bundle.cjs +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [0.1.204](https://github.com/babelcloud/visionclaw/compare/v0.1.203...v0.1.204) (2026-07-10)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* add engine switching functionality for agents, enable latest gpt-5.6-sol by default ([93a2ab0](https://github.com/babelcloud/visionclaw/commit/93a2ab078f45e84b8d8a0bba7a11e34a44b21625))
|
|
6
|
+
* **external-context:** implement external context management for agent sessions ([1ce262a](https://github.com/babelcloud/visionclaw/commit/1ce262a0d38841e24776f638708b184a651d4f2b))
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
## [0.1.203](https://github.com/babelcloud/visionclaw/compare/v0.1.202...v0.1.203) (2026-07-07)
|
|
2
10
|
|
|
3
11
|
### Bug Fixes
|
package/dist-agent/bundle.cjs
CHANGED
|
@@ -20785,7 +20785,7 @@ var require_prompts3 = __commonJS({
|
|
|
20785
20785
|
|
|
20786
20786
|
// dist/utils/version-check.js
|
|
20787
20787
|
function isBundled() {
|
|
20788
|
-
const v14 = "0.1.204
|
|
20788
|
+
const v14 = "0.1.204";
|
|
20789
20789
|
return typeof v14 === "string" && v14 !== "undefined";
|
|
20790
20790
|
}
|
|
20791
20791
|
function getPackageRoot() {
|
|
@@ -20802,7 +20802,7 @@ function getInstallationInfo() {
|
|
|
20802
20802
|
};
|
|
20803
20803
|
}
|
|
20804
20804
|
function getCurrentVersion() {
|
|
20805
|
-
const bundledVersion = "0.1.204
|
|
20805
|
+
const bundledVersion = "0.1.204";
|
|
20806
20806
|
if (bundledVersion && bundledVersion !== "undefined") {
|
|
20807
20807
|
return bundledVersion;
|
|
20808
20808
|
}
|
|
@@ -990817,7 +990817,7 @@ var init_browser_launcher = __esm({
|
|
|
990817
990817
|
|
|
990818
990818
|
// dist/utils/playwriter-relay.js
|
|
990819
990819
|
function isBundled2() {
|
|
990820
|
-
const v14 = "0.1.204
|
|
990820
|
+
const v14 = "0.1.204";
|
|
990821
990821
|
return typeof v14 === "string" && v14 !== "undefined";
|
|
990822
990822
|
}
|
|
990823
990823
|
function resolveRelayEntryPath() {
|
|
@@ -990852,7 +990852,7 @@ function getPm2RelayProcess() {
|
|
|
990852
990852
|
}
|
|
990853
990853
|
}
|
|
990854
990854
|
function pm2Start(entryPath, host, port) {
|
|
990855
|
-
const versionStr = "0.1.204
|
|
990855
|
+
const versionStr = "0.1.204";
|
|
990856
990856
|
(0, import_node_child_process19.execFileSync)("pm2", ["start", entryPath, "--name", PM2_PROCESS_NAME, "--update-env"], {
|
|
990857
990857
|
encoding: "utf-8",
|
|
990858
990858
|
stdio: "pipe",
|
|
@@ -990878,7 +990878,7 @@ function pm2Delete() {
|
|
|
990878
990878
|
}
|
|
990879
990879
|
}
|
|
990880
990880
|
function pm2Restart(host, port) {
|
|
990881
|
-
const versionStr = "0.1.204
|
|
990881
|
+
const versionStr = "0.1.204";
|
|
990882
990882
|
(0, import_node_child_process19.execFileSync)("pm2", ["restart", PM2_PROCESS_NAME, "--update-env"], {
|
|
990883
990883
|
encoding: "utf-8",
|
|
990884
990884
|
stdio: "pipe",
|
|
@@ -991048,7 +991048,7 @@ function reconcilePlaywriterRelay(host = "127.0.0.1", port = 19988) {
|
|
|
991048
991048
|
pm2Restart(host, port);
|
|
991049
991049
|
return;
|
|
991050
991050
|
}
|
|
991051
|
-
const currentVersion = "0.1.204
|
|
991051
|
+
const currentVersion = "0.1.204";
|
|
991052
991052
|
if (currentEnv.VISIONCLAW_VERSION && currentEnv.VISIONCLAW_VERSION !== currentVersion) {
|
|
991053
991053
|
logger.system(`Playwriter relay: VisionClaw version changed (${currentEnv.VISIONCLAW_VERSION} \u2192 ${currentVersion}), recreating`);
|
|
991054
991054
|
pm2Delete();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visionclaw",
|
|
3
|
-
"version": "0.1.204
|
|
3
|
+
"version": "0.1.204",
|
|
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",
|