@gencode/console 0.3.13 → 0.3.15

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 +16 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @gencode/console
2
2
 
3
+ ## 0.3.15
4
+
5
+ ### Patch Changes
6
+
7
+ - 37b2031: Fix session creation when `aimax run --session-id <id>` is called for a new session whose directory already exists because run logs were initialized first. AIMax now treats `session.json` as the session metadata contract, so sessions with pre-created `logs/<messageId>/` directories still get a proper `session.json` written under `<dataDir>/.aimax/<sessionStore>/<sessionId>/`.
8
+ - Updated dependencies [37b2031]
9
+ - @gencode/cli@0.8.15
10
+
11
+ ## 0.3.14
12
+
13
+ ### Patch Changes
14
+
15
+ - 471dfe9: Run logs are now stored next to the session transcript. For each `aimax run` or resume request, `app.log` and `errors.log` are written under `<dataDir>/.aimax/<sessionStore>/<sessionId>/logs/<messageId>/`, using `sessions` as the default store. This keeps per-message diagnostics, `transcript.jsonl`, and other session files together so operators can inspect or clean up a session from one directory.
16
+ - Updated dependencies [471dfe9]
17
+ - @gencode/cli@0.8.14
18
+
3
19
  ## 0.3.13
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/console",
3
- "version": "0.3.13",
3
+ "version": "0.3.15",
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.8.13",
30
- "@gencode/shared": "0.2.1"
29
+ "@gencode/shared": "0.2.1",
30
+ "@gencode/cli": "0.8.15"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@playwright/test": "^1.60.0",