hablas-ai 2.0.2 → 2.1.0
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 +22 -42
- package/README.md +20 -0
- package/dist/index.js +206 -129
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,49 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [2.0
|
|
4
|
-
|
|
5
|
-
### Fixed
|
|
6
|
-
- Implementation requests are now classified more robustly, including common typos like `craet`.
|
|
7
|
-
- Architecture-only requests no longer get misrouted into implementation just because they mention engineering context.
|
|
8
|
-
- Implementation turns now explicitly require real workspace tool usage.
|
|
9
|
-
- 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.
|
|
10
|
-
|
|
11
|
-
## [2.0.1] — 2026-06-12 · Setup Flow Restore
|
|
12
|
-
|
|
13
|
-
### Changed
|
|
14
|
-
- Restored the classic two-choice setup flow for the CLI.
|
|
15
|
-
- Brought back:
|
|
16
|
-
1. **Hablas Integrated Engine** — ready-made NVIDIA-backed setup with preselected model
|
|
17
|
-
2. **Custom Provider** — user-provided provider and key flow
|
|
18
|
-
- First launch now auto-runs setup again when no saved config exists.
|
|
19
|
-
|
|
20
|
-
## [2.0.0] — 2026-06-12 · Full Single-Agent Rebuild
|
|
21
|
-
|
|
22
|
-
This release replaces the old stable product surface with a new one built around a strict single-agent direction.
|
|
3
|
+
## [2.1.0] — 2026-06-12 · Apple UX + Tool Hardening
|
|
23
4
|
|
|
24
5
|
### Added
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
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
|
|
33
19
|
|
|
34
20
|
### Changed
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
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
|
|
39
25
|
|
|
40
|
-
###
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
- old runtime/planner product surface
|
|
45
|
-
- old rebuild and migration documentation set
|
|
46
|
-
- large sections of dead source code and unused dependencies
|
|
47
|
-
|
|
48
|
-
### Release intent
|
|
49
|
-
2.0.0 is the first explicit release candidate of the full stable-branch rebuild direction.
|
|
26
|
+
### 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
|
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
|