visionclaw 0.1.192-beta.3 → 0.1.192
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 +15 -0
- package/dist-agent/bundle.cjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [0.1.192](https://github.com/babelcloud/visionclaw/compare/v0.1.191...v0.1.192) (2026-05-06)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
* prevent false silence timeouts on long streaming outputs, reduce LLM hangs ([e30b2cf](https://github.com/babelcloud/visionclaw/commit/e30b2cfa023c9b595fcc2f9346063a1e852786ee))
|
|
8
|
+
|
|
9
|
+
* widen LLM silence timeout schedule to 5min → 10min → 15min ([1014678](https://github.com/babelcloud/visionclaw/commit/101467802da44212a863a78e57bebf2545623dd7))
|
|
10
|
+
* include notify_user messages in fast responder context ([48952d3](https://github.com/babelcloud/visionclaw/commit/48952d3f4497babecd49e914e50fdaedd17cf63a))
|
|
11
|
+
* record streaming content activity for fast responder context, better response accuracy ([dbc6afe](https://github.com/babelcloud/visionclaw/commit/dbc6afe7e5a28b0bfb7f288faf3a4b79712744a6))
|
|
12
|
+
* enhance Telegram Mini App UI for status and tasks ([a4c6f2a](https://github.com/babelcloud/visionclaw/commit/a4c6f2af6778e74e2956f3775a5f571c7cb689a4))
|
|
13
|
+
* render /status and /tasks as Telegram Mini Apps ([632d792](https://github.com/babelcloud/visionclaw/commit/632d792261ba8ecd115f6d8e72645fe6a806608a))
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
## [0.1.191](https://github.com/babelcloud/visionclaw/compare/v0.1.190...v0.1.191) (2026-05-03)
|
|
2
17
|
|
|
3
18
|
### Bug Fixes
|
package/dist-agent/bundle.cjs
CHANGED
|
@@ -20450,7 +20450,7 @@ var require_prompts3 = __commonJS({
|
|
|
20450
20450
|
|
|
20451
20451
|
// dist/utils/version-check.js
|
|
20452
20452
|
function isBundled() {
|
|
20453
|
-
const v15 = "0.1.192
|
|
20453
|
+
const v15 = "0.1.192";
|
|
20454
20454
|
return typeof v15 === "string" && v15 !== "undefined";
|
|
20455
20455
|
}
|
|
20456
20456
|
function getPackageRoot() {
|
|
@@ -20467,7 +20467,7 @@ function getInstallationInfo() {
|
|
|
20467
20467
|
};
|
|
20468
20468
|
}
|
|
20469
20469
|
function getCurrentVersion() {
|
|
20470
|
-
const bundledVersion = "0.1.192
|
|
20470
|
+
const bundledVersion = "0.1.192";
|
|
20471
20471
|
if (bundledVersion && bundledVersion !== "undefined") {
|
|
20472
20472
|
return bundledVersion;
|
|
20473
20473
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visionclaw",
|
|
3
|
-
"version": "0.1.192
|
|
3
|
+
"version": "0.1.192",
|
|
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",
|