@gencode/console 0.3.19 → 0.3.20

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 (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @gencode/console
2
2
 
3
+ ## 0.3.20
4
+
5
+ ### Patch Changes
6
+
7
+ - 51a02bc: Default local memory is now built into the core: daily entries go to `.aimax/memory/YYYY-MM-DD.md`, structured `MEMORY.md` updates merge by section, and no plugin is required for the default provider path. Optional core capabilities—recall, capture, compaction recall, and Knowledge Controller—are configured via `memory.core` and remain off unless explicitly enabled (`memory.core.*.enabled`). CLI parses `AIMAX_MEMORY_KC_*` into structured `memory.core.knowledgeController` for agents. The `aimax-memory-plugin` continues to provide Mem0 Cloud, Mem0 OSS, and third-party memory provider overrides when selected through `plugins.slots.memory` in `plugins.json` or a file passed with `--plugins-config`, with plugin discovery configured through `plugins.load.paths`.
8
+ - aef73a7: Fixed long-running sessions so internal context-collapse summaries are kept as hidden continuity context instead of appearing as assistant replies such as `[context collapse]` in user-facing chat, callbacks, or websocket output. Existing session audit files such as `collapse-log.jsonl` and `context.json` continue to record the condensed spans for debugging.
9
+ - 51a02bc: The built-in memory provider now handles recent memory writes without requiring a plugin: daily entries are appended to `.aimax/memory/YYYY-MM-DD.md`, session entries use `.aimax/memory/session-<sessionId>.md`, and structured `MEMORY.md` updates replace matching sections while preserving unrelated sections. This keeps the default CLI memory path aligned with the local memory layout users already configure under `.aimax`.
10
+ - 327b71d: Agent runs now recover cleanly when the configured model gateway returns an empty assistant response with no text and no tool calls. AIMax treats the empty response as a retryable transient failure, removes the empty assistant tail from the in-memory turn history before retrying, and avoids writing no-op empty assistant turns to the session transcript, so affected runs no longer fail with `Cannot continue from message role: assistant`.
11
+ - 51a02bc: `aimax run` now releases built-in memory index watchers and timers at the end of each agent run. This keeps the default core memory provider path from holding the Node.js process open after the final session output has been written, while preserving the existing `.aimax/MEMORY.md` and `.aimax/memory/YYYY-MM-DD.md` storage layout.
12
+ - 2fac38f: Agent runs now tolerate a corrupted built-in memory SQLite index at `<dataDir>/.aimax/.index.sqlite`. When the derived index is malformed, AIMax isolates the broken SQLite files, rebuilds the index from `MEMORY.md`, `memory/*.md`, and session transcripts when available, and falls back to direct Markdown file operations if SQLite remains unavailable so the main agent task can continue.
13
+ - Updated dependencies [51a02bc]
14
+ - Updated dependencies [51a02bc]
15
+ - Updated dependencies [51a02bc]
16
+ - Updated dependencies [aef73a7]
17
+ - Updated dependencies [51a02bc]
18
+ - Updated dependencies [327b71d]
19
+ - Updated dependencies [51a02bc]
20
+ - Updated dependencies [2fac38f]
21
+ - @gencode/shared@0.3.0
22
+ - @gencode/cli@0.11.0
23
+
3
24
  ## 0.3.19
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/console",
3
- "version": "0.3.19",
3
+ "version": "0.3.20",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "aimax-console": "./dist/server/index.js"
@@ -26,8 +26,8 @@
26
26
  "react": "^18.3.1",
27
27
  "react-dom": "^18.3.1",
28
28
  "ws": "^8.18.0",
29
- "@gencode/cli": "0.10.1",
30
- "@gencode/shared": "0.2.3"
29
+ "@gencode/shared": "0.3.0",
30
+ "@gencode/cli": "0.11.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@playwright/test": "^1.60.0",