@gencode/console 0.3.3 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @gencode/console
2
2
 
3
+ ## 0.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 7464e61: Tool progress now reports `tool_start` as soon as a model-planned tool begins execution, instead of waiting until the tool finishes. Operators consuming stdout, HTTP callback, or websocket progress can see long-running `exec` commands enter the running state immediately, while `tool_end` continues to report completion and output when the tool returns.
8
+ - ddbc7bb: Callback progress no longer reports session transcript persistence as `memory_changed`. AIMax still records transcript append/rewrite activity as diagnostic output for debugging and keeps memory indexing hooks active, but callback consumers now only receive `memory_changed` for actual memory provider or memory file changes such as `.aimax/MEMORY.md` and `.aimax/memory/*.md` updates.
9
+ - 31c69cf: AIMax now records diagnostic entries before and after each completed model-planned tool call. Operators can inspect `.aimax/app.log` to see the tool call id, tool name, full tool arguments, completion status, and tool output alongside the normal tool start/end progress. Diagnostic entries remain local runtime logs and are not forwarded as callback progress events.
10
+ - 749c489: Smart topic segmentation now writes detailed local diagnostics for the embedding retrieval path into `<dataDir>/.aimax/app.log` and failures into `<dataDir>/.aimax/errors.log`. The logs show whether `aimax run` passed an embedding model directory, which local model path was used, whether segment sidecar and `topic-segments.sqlite` sync ran, whether `sqlite-vec` was available, and why embedding retrieval degraded when the local `models/Xenova/bge-small-zh-v1.5/` files are missing or unreadable.
11
+ - Updated dependencies [7464e61]
12
+ - Updated dependencies [ddbc7bb]
13
+ - Updated dependencies [31c69cf]
14
+ - Updated dependencies [749c489]
15
+ - @gencode/cli@0.8.4
16
+
3
17
  ## 0.3.3
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/console",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "aimax-console": "./dist/server/index.js"
@@ -26,7 +26,7 @@
26
26
  "react": "^18.3.1",
27
27
  "react-dom": "^18.3.1",
28
28
  "ws": "^8.18.0",
29
- "@gencode/cli": "0.8.3",
29
+ "@gencode/cli": "0.8.4",
30
30
  "@gencode/shared": "0.2.0"
31
31
  },
32
32
  "devDependencies": {