@gajae-code/agent-core 0.12.10 → 0.12.11

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 CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ## [0.12.10] - 2026-08-03
5
+ ## [0.12.11] - 2026-08-03
6
6
 
7
- ## [0.12.9] - 2026-08-03
7
+ ## [0.12.10] - 2026-08-03
8
8
 
9
9
  ### Fixed
10
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@gajae-code/agent-core",
4
- "version": "0.12.10",
4
+ "version": "0.12.11",
5
5
  "description": "General-purpose agent with transport abstraction, state management, and attachment support",
6
6
  "homepage": "https://gajae-code.com",
7
7
  "author": "Yeachan-Heo and Gajae Code Contributors",
@@ -32,9 +32,9 @@
32
32
  "fmt": "biome format --write ."
33
33
  },
34
34
  "dependencies": {
35
- "@gajae-code/ai": "0.12.10",
36
- "@gajae-code/natives": "0.12.10",
37
- "@gajae-code/utils": "0.12.10",
35
+ "@gajae-code/ai": "0.12.11",
36
+ "@gajae-code/natives": "0.12.11",
37
+ "@gajae-code/utils": "0.12.11",
38
38
  "@opentelemetry/api": "^1.9.0"
39
39
  },
40
40
  "devDependencies": {
package/src/agent-loop.ts CHANGED
@@ -2702,7 +2702,9 @@ async function executeToolCalls(
2702
2702
  caughtError = e;
2703
2703
  result = {
2704
2704
  content: [{ type: "text", text: e instanceof Error ? e.message : String(e) }],
2705
- details: {},
2705
+ details: {
2706
+ failureKind: record.argumentValidationFailed ? "argument_validation" : "execution",
2707
+ },
2706
2708
  };
2707
2709
  isError = true;
2708
2710
  }