@oh-my-pi/pi-agent-core 15.3.2 → 15.4.2

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/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.3.2",
4
+ "version": "15.4.2",
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.3.2",
39
- "@oh-my-pi/pi-natives": "15.3.2",
40
- "@oh-my-pi/pi-utils": "15.3.2",
38
+ "@oh-my-pi/pi-ai": "15.4.2",
39
+ "@oh-my-pi/pi-natives": "15.4.2",
40
+ "@oh-my-pi/pi-utils": "15.4.2",
41
41
  "@opentelemetry/api": "^1.9.0"
42
42
  },
43
43
  "devDependencies": {
@@ -38,7 +38,7 @@ const SCRIPT_CLASS =
38
38
  const SCRIPT_RUN_RE = new RegExp(`[${SCRIPT_CLASS}]{2,}`, "u");
39
39
 
40
40
  // Recovery registry. Each entry's parser must recognize the configured
41
- // sentinel (per-tool, see eval/parse.ts and hashline/parser.ts) and surface
41
+ // sentinel (per-tool, see eval/parse.ts and hashline/executor.ts) and surface
42
42
  // a warning to the model so it knows to re-issue any remaining work.
43
43
  // `accepts` gates on input shape: tools whose contaminated input doesn't
44
44
  // match the parser's expected DSL fall through to abort-and-retry.