hablas-ai 2.1.0 → 2.1.2
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 +17 -21
- package/README.md +1 -0
- package/dist/index.js +117 -113
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,29 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [2.1.
|
|
3
|
+
## [2.1.2] — 2026-06-12 · Full-Read Context Fix
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- `read_file` results are now preserved in full inside the model context instead of being aggressively truncated.
|
|
7
|
+
- This prevents the agent from rereading the same large file just because it only saw the first chunk in context.
|
|
8
|
+
- Tool result boxes now summarize the first meaningful line instead of flattening huge file bodies into unreadable one-liners.
|
|
9
|
+
|
|
10
|
+
## [2.1.1] — 2026-06-12 · Thinking, Streaming, and Read-Dedupe UX Fix
|
|
4
11
|
|
|
5
12
|
### Added
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
- `#file` completion
|
|
10
|
-
- command history persistence
|
|
11
|
-
- Apple-slate inspired terminal UI rebuild:
|
|
12
|
-
- richer banner
|
|
13
|
-
- improved assistant rendering
|
|
14
|
-
- improved tool cards
|
|
15
|
-
- cleaner help and status formatting
|
|
16
|
-
- `download_asset` tool for bringing real remote assets into the project
|
|
17
|
-
- stronger web/image workflow in the system prompt
|
|
18
|
-
- stronger parser-side sanitization for raw tool markup leakage
|
|
13
|
+
- visible thinking state while Hablas is waiting on the model
|
|
14
|
+
- real streaming for direct text-only turns
|
|
15
|
+
- stronger shell completion and history workflow kept active
|
|
19
16
|
|
|
20
17
|
### Changed
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
- improved read/analysis/implementation rendering paths in the terminal
|
|
18
|
+
- tool cards were rebuilt again for cleaner boxed output
|
|
19
|
+
- assistant rendering is more consistent between direct and tool-driven turns
|
|
20
|
+
- the prompt was tightened for shorter, more natural casual and identity responses
|
|
25
21
|
|
|
26
22
|
### Fixed
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
23
|
+
- repeated `read_file` calls for the same path in the same turn are now deduplicated and reused from cache unless the file changed
|
|
24
|
+
- raw tool-markup leakage is sanitized more aggressively
|
|
25
|
+
- implementation and image/wallpaper requests remain wired to the stronger tool path
|
package/README.md
CHANGED
|
@@ -100,6 +100,7 @@ This means Hablas can:
|
|
|
100
100
|
- search the web for references and assets
|
|
101
101
|
- inspect pages and extract links
|
|
102
102
|
- download real images/files into the project when appropriate
|
|
103
|
+
- preserve full file reads in-context so long files are not silently cut into tiny fragments that force rereads
|
|
103
104
|
|
|
104
105
|
---
|
|
105
106
|
|