hablas-ai 2.6.0 → 2.6.3
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 +25 -49
- package/dist/index.js +228 -179
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,65 +1,41 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [2.6.
|
|
4
|
-
|
|
5
|
-
### Summary
|
|
6
|
-
This release completes **Phase A — Stabilization**. Focus was on test reliability, code hygiene, and long-term maintainability. No new features or MCP expansion were added.
|
|
3
|
+
## [2.6.1] — 2026-07-18 · Hotfix — Fixed npm package bundle
|
|
7
4
|
|
|
8
5
|
### Fixed
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
- **Documentation**: Archived historical files to `docs/archive/` (A-04)
|
|
13
|
-
|
|
14
|
-
### Added
|
|
15
|
-
- Proper lint scripts in `package.json`:
|
|
16
|
-
- `typecheck`
|
|
17
|
-
- `lint`
|
|
18
|
-
- `lint:fix`
|
|
6
|
+
- Fixed broken npm package (`hablas-ai@2.6.0` had missing dependencies in the bundle)
|
|
7
|
+
- Updated build script to use `--packages=external` for proper bundling
|
|
8
|
+
- Package now works correctly after `npm install -g hablas-ai`
|
|
19
9
|
|
|
20
10
|
### Changed
|
|
21
|
-
-
|
|
22
|
-
-
|
|
11
|
+
- Version bumped to 2.6.1
|
|
12
|
+
- Build command updated for reliable publishing
|
|
23
13
|
|
|
24
|
-
|
|
25
|
-
- All tests passing (analyzer + image-pipeline + engine + session)
|
|
26
|
-
- `tsc --noEmit`: 0 errors
|
|
27
|
-
- Bundle size: 595.5 KB
|
|
28
|
-
- MCP server still exposes 42 tools correctly
|
|
29
|
-
|
|
30
|
-
**Note:** External MCP servers are not enabled by default. User can opt-in later via `~/.hablas/mcp.json` when ready.
|
|
14
|
+
**Note:** If you installed `hablas-ai@2.6.0`, please upgrade to `2.6.1`.
|
|
31
15
|
|
|
32
16
|
---
|
|
33
17
|
|
|
34
|
-
## [2.
|
|
18
|
+
## [2.6.0] — 2026-07-18 · Stabilization Release
|
|
35
19
|
|
|
36
|
-
###
|
|
37
|
-
|
|
38
|
-
- `docs/SECURITY.md` — security model: threat model, 9 defense layers, contributor checklist
|
|
39
|
-
- `docs/CONTRIBUTING.md` — contribution guide: setup, code style, testing, PR process, release workflow
|
|
40
|
-
- `errorMessage()` utility in `src/utils/error-classifier.ts` — single source of truth for error message extraction from `unknown` catch values
|
|
20
|
+
### Summary
|
|
21
|
+
This release completes **Phase A — Stabilization**. Focus was on test reliability, code hygiene, and long-term maintainability.
|
|
41
22
|
|
|
42
|
-
###
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
23
|
+
### Fixed
|
|
24
|
+
- Analyzer: "what version is this project?" queries now correctly set `needsTools: true`
|
|
25
|
+
- Image Pipeline Tests: All 5 failing tests fixed
|
|
26
|
+
- Git Tools: Consolidated duplicate files
|
|
27
|
+
- Documentation: Archived historical files
|
|
47
28
|
|
|
48
|
-
###
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
- `
|
|
52
|
-
- `src/tools/atomic-ops.ts` — 3 catch blocks fixed
|
|
53
|
-
- `src/tools/codebase-graph.ts` — 3 catch blocks fixed
|
|
54
|
-
- `src/tools/image-intelligence.ts` — 5 catch blocks fixed
|
|
55
|
-
- `src/tools/git-tool.ts` — 1 catch block fixed
|
|
56
|
-
- `src/tools/search.ts` — 1 catch block fixed
|
|
57
|
-
- `src/tools/download-asset.ts` — 2 catch blocks fixed
|
|
58
|
-
- `src/tools/checkpoint.ts` — 1 catch block fixed
|
|
59
|
-
- `src/llm/custom-client.ts` — 3 catch blocks fixed
|
|
60
|
-
- `src/app/turn.ts` — 1 catch block fixed
|
|
29
|
+
### Added
|
|
30
|
+
- Branded instant login options:
|
|
31
|
+
- **Hablas 1 — NVIDIA**
|
|
32
|
+
- **Hablas 2 — Mistral** (`mistral-code-agent-latest` with embedded key)
|
|
61
33
|
|
|
62
34
|
### Verification
|
|
35
|
+
- All tests passing
|
|
63
36
|
- `tsc --noEmit`: 0 errors
|
|
64
|
-
-
|
|
65
|
-
|
|
37
|
+
- Package published successfully
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## [2.5.9] — 2026-07-17 · Type Safety + New Documentation
|