hablas-ai 2.2.0 → 2.2.1
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 -7
- package/dist/index.js +104 -104
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.2.1] — 2026-06-12 · Runtime Persistence and Web-Search Crash Fix
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- Restored the missing project-state import in the interactive runtime that caused `ensureProjectStateDir is not defined` at startup.
|
|
7
|
+
- Fixed the web-search follow-up crash path by restoring the missing large-web token constant and the associated output-preservation path.
|
|
8
|
+
- Project session state is now saved after slash commands as well as normal turns.
|
|
9
|
+
- Read-cache preservation is now actually written back after successful `read_file` operations and invalidated when related files change.
|
|
10
|
+
|
|
3
11
|
## [2.2.0] — 2026-06-12 · Stateful Runtime and Thinking Hooks
|
|
4
12
|
|
|
5
13
|
### Added
|
|
@@ -16,10 +24,3 @@
|
|
|
16
24
|
- `LARGE_WEB_RESULT_TOKENS is not defined` crash
|
|
17
25
|
- thinking hooks are now wired at the engine level instead of existing only in the UI layer
|
|
18
26
|
- repeated file reads are less likely to happen because full `read_file` context is preserved and cached more consistently
|
|
19
|
-
|
|
20
|
-
## [2.1.2] — 2026-06-12 · Full-Read Context Fix
|
|
21
|
-
|
|
22
|
-
### Fixed
|
|
23
|
-
- `read_file` results are now preserved in full inside the model context instead of being aggressively truncated.
|
|
24
|
-
- This prevents the agent from rereading the same large file just because it only saw the first chunk in context.
|
|
25
|
-
- Tool result boxes now summarize the first meaningful line instead of flattening huge file bodies into unreadable one-liners.
|