hablas-ai 2.6.1 → 2.7.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +36 -23
  2. package/dist/index.js +228 -179
  3. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -1,41 +1,54 @@
1
1
  # Changelog
2
2
 
3
- ## [2.6.1] — 2026-07-18 · Hotfix Fixed npm package bundle
3
+ ## [2.7.0] — 2026-07-18 · Memory Engine v1
4
+
5
+ ### Added
6
+ - **ProjectMemoryEngine** — Production-grade, project-scoped memory system
7
+ - Three-tier memory architecture (Working Memory + Session Compression + Project Knowledge)
8
+ - **Historian** — Background incremental compression (triggers at 65% context)
9
+ - **Dreamer** — Background memory consolidation and improvement
10
+ - **ContextInjector** — Automatic memory injection at turn start
11
+ - **CompactEngine** — Powerful manual compaction via `/compact`
12
+ - New commands:
13
+ - `/compact`
14
+ - `/compact --aggressive`
15
+ - `/compact --dry-run`
16
+ - `/memory status`
17
+ - Full SQLite + Vector-ready memory store
18
+ - All operations run in background (non-blocking)
19
+ - Uses the same model for compression (no external dependencies)
20
+ - Memory is strictly project-scoped (`.hablas/memory/`)
21
+
22
+ ### Design Document
23
+ - `docs/MEMORY_ENGINE_DESIGN.md` — Complete architecture and implementation guide
24
+
25
+ ---
26
+
27
+ ## [2.6.3] — 2026-07-18 · Hotfix — Fixed npm package bundle
4
28
 
5
29
  ### Fixed
6
30
  - 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
31
+ - Updated build script to use `--external:@modelcontextprotocol/sdk`
8
32
  - Package now works correctly after `npm install -g hablas-ai`
9
33
 
10
- ### Changed
11
- - Version bumped to 2.6.1
12
- - Build command updated for reliable publishing
13
-
14
- **Note:** If you installed `hablas-ai@2.6.0`, please upgrade to `2.6.1`.
15
-
16
34
  ---
17
35
 
18
- ## [2.6.0] — 2026-07-18 · Stabilization Release
19
-
20
- ### Summary
21
- This release completes **Phase A — Stabilization**. Focus was on test reliability, code hygiene, and long-term maintainability.
22
-
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
36
+ ## [2.6.2] — 2026-07-18 · Stabilization + Branded Login
28
37
 
29
38
  ### Added
30
39
  - Branded instant login options:
31
40
  - **Hablas 1 — NVIDIA**
32
41
  - **Hablas 2 — Mistral** (`mistral-code-agent-latest` with embedded key)
33
42
 
34
- ### Verification
35
- - All tests passing
36
- - `tsc --noEmit`: 0 errors
37
- - Package published successfully
43
+ ### Fixed
44
+ - All failing tests resolved
45
+ - Duplicate Git files consolidated
46
+ - Documentation cleaned up
38
47
 
39
48
  ---
40
49
 
41
- ## [2.5.9] — 2026-07-17 · Type Safety + New Documentation
50
+ ## [2.6.0] — 2026-07-18 · Stabilization Release
51
+
52
+ ### Summary
53
+ Phase A complete. Zero failing tests, clean repository, solid foundation.
54
+