@gencode/plugin-sdk 0.3.2 → 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.
- package/CHANGELOG.md +25 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @gencode/plugin-sdk
|
|
2
2
|
|
|
3
|
+
## 0.3.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 189ba29: Model request previews are no longer emitted as callback or websocket progress events. `aimax run` now records the preview payload through internal diagnostics only, keeping callback/websocket streams reserved for formal task notifications while still leaving request-shape details available in `<dataDir>/.aimax/app.log` for troubleshooting.
|
|
8
|
+
- bf0a359: Transient LLM failures whose messages include a retryable provider status, such as `LLMRequestError: ... (BadRequestError 502)`, now enter the existing automatic turn retry policy even when the upstream SDK labels the provider type as `BadRequestError`. This keeps `aimax run` retry behavior aligned with the actual provider status code while preserving immediate failure for non-retryable statuses such as 400 or 404.
|
|
9
|
+
- Updated dependencies [189ba29]
|
|
10
|
+
- Updated dependencies [bf0a359]
|
|
11
|
+
- @gencode/agents@0.10.4
|
|
12
|
+
- @gencode/shared@0.2.1
|
|
13
|
+
|
|
14
|
+
## 0.3.3
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 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.
|
|
19
|
+
- 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.
|
|
20
|
+
- 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.
|
|
21
|
+
- 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.
|
|
22
|
+
- Updated dependencies [7464e61]
|
|
23
|
+
- Updated dependencies [ddbc7bb]
|
|
24
|
+
- Updated dependencies [31c69cf]
|
|
25
|
+
- Updated dependencies [749c489]
|
|
26
|
+
- @gencode/agents@0.10.3
|
|
27
|
+
|
|
3
28
|
## 0.3.2
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/plugin-sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@gencode/agents": "0.10.
|
|
22
|
-
"@gencode/shared": "0.2.
|
|
21
|
+
"@gencode/agents": "0.10.4",
|
|
22
|
+
"@gencode/shared": "0.2.1"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"typescript": "^5.9.3"
|