@gencode/plugin-sdk 0.0.15 → 0.0.17

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 +25 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @gencode/plugin-sdk
2
2
 
3
+ ## 0.0.17
4
+
5
+ ### Patch Changes
6
+
7
+ - f059988: Wait for agent turn event processing to finish before finalizing runs, so transcript persistence and progress delivery cannot lag behind final callbacks.
8
+ - 43c3f8a: Retry transient LLM turn failures, including provider errors wrapped inside HTTP 200 streams, before failing an agent run.
9
+ - c0e0240: Add local-first custom agent discovery and named subagent runtime policies for AIMax agent runs.
10
+ - 1c9ac08: Add project directory context for run and resume so callers can distinguish the current repository cwd from the workspace mount.
11
+ - e4a07bd: Prefer Simplified Chinese in the default agent system prompt unless the user or task context requires another language.
12
+ - Updated dependencies [eab7716]
13
+ - Updated dependencies [f059988]
14
+ - Updated dependencies [43c3f8a]
15
+ - Updated dependencies [c0e0240]
16
+ - Updated dependencies [1c9ac08]
17
+ - Updated dependencies [e4a07bd]
18
+ - @gencode/agents@0.3.0
19
+
20
+ ## 0.0.16
21
+
22
+ ### Patch Changes
23
+
24
+ - Stop returning the `[UI Tool] Waiting for user input:` fallback text when `aimax run` pauses for a UI tool; structured pending UI tool data remains the pause signal.
25
+ - Updated dependencies
26
+ - @gencode/agents@0.2.4
27
+
3
28
  ## 0.0.15
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.0.15",
3
+ "version": "0.0.17",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "access": "public"
19
19
  },
20
20
  "dependencies": {
21
- "@gencode/agents": "0.2.3",
21
+ "@gencode/agents": "0.3.0",
22
22
  "@gencode/shared": "0.1.1"
23
23
  },
24
24
  "devDependencies": {