hablas-ai 2.2.2 → 2.2.4
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 +21 -18
- package/README.md +4 -0
- package/dist/index.js +141 -120
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [2.2.
|
|
3
|
+
## [2.2.4] — 2026-06-12 · Response Presentation and Personality Refinement
|
|
4
4
|
|
|
5
5
|
### Changed
|
|
6
|
-
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
|
|
10
|
-
- architecture reasoning
|
|
11
|
-
- implementation
|
|
12
|
-
- debugging
|
|
13
|
-
- review
|
|
14
|
-
- devops thinking
|
|
15
|
-
- web and asset acquisition
|
|
16
|
-
- Strengthened tool discipline and anti-fake-completion rules.
|
|
17
|
-
- Reduced dependence on brittle literal examples and pushed the prompt toward generalized intent interpretation.
|
|
6
|
+
- Improved final response presentation toward a more executive structure.
|
|
7
|
+
- Assistant markdown rendering is now richer, including better table rendering and stronger section visibility.
|
|
8
|
+
- Hablas personality was warmed up without turning fluffy: still technical and direct, but less cold and more partner-like.
|
|
9
|
+
- Final-response contract in the system prompt now explicitly prefers clearer completion sections and better next-step suggestions.
|
|
18
10
|
|
|
19
|
-
|
|
11
|
+
### Added
|
|
12
|
+
- formal improvement backlog document for tracked UX and personality issues.
|
|
13
|
+
|
|
14
|
+
## [2.2.3] — 2026-06-12 · Trusted Image Pipeline and UX Phase Labels
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- `search_image_candidates` tool for ranking image candidates before download
|
|
18
|
+
- `inspect_image` tool for checking remote or local image candidates before adoption
|
|
19
|
+
- richer phase labels during tool-driven execution such as analysis, candidate selection, download, and verification
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- strengthened the system prompt around image handling so Hablas prefers ranking and inspection before downloading assets
|
|
23
|
+
- upgraded tool box styling toward a cleaner premium terminal presentation
|
|
24
|
+
- download flow now attempts to resolve direct image candidates from HTML pages automatically
|
|
20
25
|
|
|
21
26
|
### Fixed
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
- Project session state is now saved after slash commands as well as normal turns.
|
|
25
|
-
- Read-cache preservation is now actually written back after successful `read_file` operations and invalidated when related files change.
|
|
27
|
+
- image selection pipeline is less brute-force and less dependent on blind download retries
|
|
28
|
+
- image inspection can now work on local assets as well as remote sources
|
package/README.md
CHANGED
|
@@ -92,12 +92,16 @@ hablas run "read package.json and tell me the version"
|
|
|
92
92
|
### Web and asset workflow
|
|
93
93
|
Hablas now keeps the professional web tool chain active:
|
|
94
94
|
- `web_search`
|
|
95
|
+
- `search_image_candidates`
|
|
96
|
+
- `inspect_image`
|
|
95
97
|
- `scrape_url`
|
|
96
98
|
- `extract_links`
|
|
97
99
|
- `download_asset`
|
|
98
100
|
|
|
99
101
|
This means Hablas can:
|
|
100
102
|
- search the web for references and assets
|
|
103
|
+
- rank image candidates before downloading
|
|
104
|
+
- inspect a remote or local image candidate before adoption
|
|
101
105
|
- inspect pages and extract links
|
|
102
106
|
- download real images/files into the project when appropriate
|
|
103
107
|
- preserve full file reads in-context so long files are not silently cut into tiny fragments that force rereads
|