@gencode/plugin-sdk 0.3.0 → 0.3.1

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 +9 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @gencode/plugin-sdk
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - faaebd5: Agent runs no longer stop after a built-in default timeout. Runs started without `timeoutMs`, including subagent runs launched through `subagent_spawn` or `batch_subagent_spawn`, can continue until they finish or are cancelled by an external abort. Use `aimax run --timeout <ms>` or pass `timeoutMs` directly when a specific execution limit is required.
8
+ - Updated dependencies [faaebd5]
9
+ - Updated dependencies [798bf31]
10
+ - @gencode/agents@0.10.1
11
+
3
12
  ## 0.3.0
4
13
 
5
14
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/plugin-sdk",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
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/shared": "0.2.0",
22
- "@gencode/agents": "0.10.0"
21
+ "@gencode/agents": "0.10.1",
22
+ "@gencode/shared": "0.2.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "typescript": "^5.9.3"