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 CHANGED
@@ -1,29 +1,25 @@
1
1
  # Changelog
2
2
 
3
- ## [2.1.0] — 2026-06-12 · Apple UX + Tool Hardening
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
- - restored advanced shell UX:
7
- - tab completion for slash commands
8
- - tab completion for common file paths
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
- - rebuilt single-agent system prompt using the strongest parts of the old specialist prompts
22
- - strengthened implementation enforcement so real engineering work is expected to use tools
23
- - improved implementation classification, including typo handling and image/wallpaper related requests
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
- - raw XML-like tool leakage is sanitized more aggressively
28
- - implementation prompts that try to answer with inline code only are pushed back toward real tool execution
29
- - setup flow remains restored with the classic two-choice onboarding model
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