@gencode/plugin-sdk 0.3.3 → 0.3.5

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 +19 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @gencode/plugin-sdk
2
2
 
3
+ ## 0.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 92be501: Topic segmentation diagnostics now include the first 50 characters of each dropped turn's user and assistant messages in both the local diagnostics log and the session `topic-segmentation-log.jsonl` audit file. Operators can map a dropped topic turn back to the original conversation more easily when investigating why history was omitted from a run.
8
+ - Updated dependencies [92be501]
9
+ - @gencode/agents@0.10.5
10
+
11
+ ## 0.3.4
12
+
13
+ ### Patch Changes
14
+
15
+ - 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.
16
+ - 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.
17
+ - Updated dependencies [189ba29]
18
+ - Updated dependencies [bf0a359]
19
+ - @gencode/agents@0.10.4
20
+ - @gencode/shared@0.2.1
21
+
3
22
  ## 0.3.3
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/plugin-sdk",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
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.3",
22
- "@gencode/shared": "0.2.0"
21
+ "@gencode/agents": "0.10.5",
22
+ "@gencode/shared": "0.2.1"
23
23
  },
24
24
  "devDependencies": {
25
25
  "typescript": "^5.9.3"