hablas-ai 2.0.3 → 2.1.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 +35 -46
- package/README.md +20 -0
- package/dist/index.js +129 -107
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,57 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [2.
|
|
3
|
+
## [2.1.1] — 2026-06-12 · Thinking, Streaming, and Read-Dedupe UX Fix
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
- Added stronger anti-fake-completion behavior in the prompt so implementation tasks are expected to use real workspace actions.
|
|
10
|
-
|
|
11
|
-
## [2.0.2] — 2026-06-12 · Implementation Routing and Tool-Enforcement Fix
|
|
12
|
-
|
|
13
|
-
### Fixed
|
|
14
|
-
- Implementation requests are now classified more robustly, including common typos like `craet`.
|
|
15
|
-
- Architecture-only requests no longer get misrouted into implementation just because they mention engineering context.
|
|
16
|
-
- Implementation turns now explicitly require real workspace tool usage.
|
|
17
|
-
- If the model tries to answer an implementation task with inline code only and no tool calls, Hablas now forces a second attempt through the tool path instead of accepting the fake completion.
|
|
18
|
-
|
|
19
|
-
## [2.0.1] — 2026-06-12 · Setup Flow Restore
|
|
5
|
+
### Added
|
|
6
|
+
- visible thinking state while Hablas is waiting on the model
|
|
7
|
+
- real streaming for direct text-only turns
|
|
8
|
+
- stronger shell completion and history workflow kept active
|
|
20
9
|
|
|
21
10
|
### Changed
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
2. **Custom Provider** — user-provided provider and key flow
|
|
26
|
-
- First launch now auto-runs setup again when no saved config exists.
|
|
11
|
+
- tool cards were rebuilt again for cleaner boxed output
|
|
12
|
+
- assistant rendering is more consistent between direct and tool-driven turns
|
|
13
|
+
- the prompt was tightened for shorter, more natural casual and identity responses
|
|
27
14
|
|
|
28
|
-
|
|
15
|
+
### Fixed
|
|
16
|
+
- repeated `read_file` calls for the same path in the same turn are now deduplicated and reused from cache unless the file changed
|
|
17
|
+
- raw tool-markup leakage is sanitized more aggressively
|
|
18
|
+
- implementation and image/wallpaper requests remain wired to the stronger tool path
|
|
29
19
|
|
|
30
|
-
|
|
20
|
+
## [2.1.0] — 2026-06-12 · Apple UX + Tool Hardening
|
|
31
21
|
|
|
32
22
|
### Added
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
23
|
+
- restored advanced shell UX:
|
|
24
|
+
- tab completion for slash commands
|
|
25
|
+
- tab completion for common file paths
|
|
26
|
+
- `#file` completion
|
|
27
|
+
- command history persistence
|
|
28
|
+
- Apple-slate inspired terminal UI rebuild:
|
|
29
|
+
- richer banner
|
|
30
|
+
- improved assistant rendering
|
|
31
|
+
- improved tool cards
|
|
32
|
+
- cleaner help and status formatting
|
|
33
|
+
- `download_asset` tool for bringing real remote assets into the project
|
|
34
|
+
- stronger web/image workflow in the system prompt
|
|
35
|
+
- stronger parser-side sanitization for raw tool markup leakage
|
|
41
36
|
|
|
42
37
|
### Changed
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
|
|
48
|
-
###
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
-
|
|
52
|
-
- old runtime/planner product surface
|
|
53
|
-
- old rebuild and migration documentation set
|
|
54
|
-
- large sections of dead source code and unused dependencies
|
|
55
|
-
|
|
56
|
-
### Release intent
|
|
57
|
-
2.0.0 is the first explicit release candidate of the full stable-branch rebuild direction.
|
|
38
|
+
- rebuilt single-agent system prompt using the strongest parts of the old specialist prompts
|
|
39
|
+
- strengthened implementation enforcement so real engineering work is expected to use tools
|
|
40
|
+
- improved implementation classification, including typo handling and image/wallpaper related requests
|
|
41
|
+
- improved read/analysis/implementation rendering paths in the terminal
|
|
42
|
+
|
|
43
|
+
### Fixed
|
|
44
|
+
- raw XML-like tool leakage is sanitized more aggressively
|
|
45
|
+
- implementation prompts that try to answer with inline code only are pushed back toward real tool execution
|
|
46
|
+
- setup flow remains restored with the classic two-choice onboarding model
|
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ The product is now **Hablas only**.
|
|
|
20
20
|
5. **No handoff theatre, no mode maze, no orchestration drama**
|
|
21
21
|
6. **Read before edit, verify before claim**
|
|
22
22
|
7. **Direct technical tone: no emojis, no hype, no filler**
|
|
23
|
+
8. **Professional shell UX matters as much as model quality**
|
|
23
24
|
|
|
24
25
|
---
|
|
25
26
|
|
|
@@ -88,6 +89,18 @@ hablas --auto
|
|
|
88
89
|
hablas run "read package.json and tell me the version"
|
|
89
90
|
```
|
|
90
91
|
|
|
92
|
+
### Web and asset workflow
|
|
93
|
+
Hablas now keeps the professional web tool chain active:
|
|
94
|
+
- `web_search`
|
|
95
|
+
- `scrape_url`
|
|
96
|
+
- `extract_links`
|
|
97
|
+
- `download_asset`
|
|
98
|
+
|
|
99
|
+
This means Hablas can:
|
|
100
|
+
- search the web for references and assets
|
|
101
|
+
- inspect pages and extract links
|
|
102
|
+
- download real images/files into the project when appropriate
|
|
103
|
+
|
|
91
104
|
---
|
|
92
105
|
|
|
93
106
|
## Current command surface
|
|
@@ -115,6 +128,13 @@ hablas run "read package.json and tell me the version"
|
|
|
115
128
|
- `/about`
|
|
116
129
|
- `/exit`
|
|
117
130
|
|
|
131
|
+
### Shell UX
|
|
132
|
+
- tab completion for slash commands
|
|
133
|
+
- tab completion for common file paths after verbs like `read`, `write`, `edit`, `patch`
|
|
134
|
+
- `#file` reference completion
|
|
135
|
+
- persisted command history
|
|
136
|
+
- rebuilt Apple-slate terminal styling
|
|
137
|
+
|
|
118
138
|
---
|
|
119
139
|
|
|
120
140
|
## Execution model
|