@oh-my-pi/pi-agent-core 15.8.3 → 15.9.0

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.
@@ -366,7 +366,7 @@ export interface AgentTool<TParameters extends TSchema = TSchema, TDetails = any
366
366
  * Controls how the INTENT_FIELD (`_i`) is handled for this tool.
367
367
  * - `"require"` (default): `_i` is injected and required in the parameter schema.
368
368
  * - `"optional"`: `_i` is injected as an optional/nullable field.
369
- * - `"omit"`: `_i` is NOT injected. Use for tools where intent is obvious (yield, resolve, todo_write, …).
369
+ * - `"omit"`: `_i` is NOT injected. Use for tools where intent is obvious (yield, resolve, todo, …).
370
370
  * - function: `_i` is NOT injected; intent is derived dynamically from (potentially partial / streaming) args.
371
371
  */
372
372
  intent?: "omit" | "optional" | "require" | ((args: Partial<Static<TParameters>>) => string | undefined);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-agent-core",
4
- "version": "15.8.3",
4
+ "version": "15.9.0",
5
5
  "description": "General-purpose agent with transport abstraction, state management, and attachment support",
6
6
  "homepage": "https://omp.sh",
7
7
  "author": "Can Boluk",
@@ -35,9 +35,9 @@
35
35
  "fmt": "biome format --write ."
36
36
  },
37
37
  "dependencies": {
38
- "@oh-my-pi/pi-ai": "15.8.3",
39
- "@oh-my-pi/pi-natives": "15.8.3",
40
- "@oh-my-pi/pi-utils": "15.8.3",
38
+ "@oh-my-pi/pi-ai": "15.9.0",
39
+ "@oh-my-pi/pi-natives": "15.9.0",
40
+ "@oh-my-pi/pi-utils": "15.9.0",
41
41
  "@opentelemetry/api": "^1.9.1"
42
42
  },
43
43
  "devDependencies": {
package/src/types.ts CHANGED
@@ -436,7 +436,7 @@ export interface AgentTool<TParameters extends TSchema = TSchema, TDetails = any
436
436
  * Controls how the INTENT_FIELD (`_i`) is handled for this tool.
437
437
  * - `"require"` (default): `_i` is injected and required in the parameter schema.
438
438
  * - `"optional"`: `_i` is injected as an optional/nullable field.
439
- * - `"omit"`: `_i` is NOT injected. Use for tools where intent is obvious (yield, resolve, todo_write, …).
439
+ * - `"omit"`: `_i` is NOT injected. Use for tools where intent is obvious (yield, resolve, todo, …).
440
440
  * - function: `_i` is NOT injected; intent is derived dynamically from (potentially partial / streaming) args.
441
441
  */
442
442
  intent?: "omit" | "optional" | "require" | ((args: Partial<Static<TParameters>>) => string | undefined);