@aliou/pi-processes 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/package.json +6 -5
  2. package/tools/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aliou/pi-processes",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "keywords": [
@@ -16,7 +16,8 @@
16
16
  "pi": {
17
17
  "extensions": [
18
18
  "./index.ts"
19
- ]
19
+ ],
20
+ "video": "https://assets.aliou.me/pi-extensions/2026-01-26-processes-demo.mp4"
20
21
  },
21
22
  "publishConfig": {
22
23
  "access": "public"
@@ -32,8 +33,8 @@
32
33
  "@sinclair/typebox": "^0.34.41"
33
34
  },
34
35
  "peerDependencies": {
35
- "@mariozechner/pi-ai": "0.50.4",
36
- "@mariozechner/pi-coding-agent": "0.50.4",
37
- "@mariozechner/pi-tui": "0.50.4"
36
+ "@mariozechner/pi-ai": "0.51.0",
37
+ "@mariozechner/pi-coding-agent": "0.51.0",
38
+ "@mariozechner/pi-tui": "0.51.0"
38
39
  }
39
40
  }
package/tools/index.ts CHANGED
@@ -78,7 +78,7 @@ Note: User always sees process updates in the UI. The notify flags control wheth
78
78
 
79
79
  parameters: ProcessesParams,
80
80
 
81
- async execute(_toolCallId, params, _onUpdate, ctx) {
81
+ async execute(_toolCallId, params, _signal, _onUpdate, ctx) {
82
82
  return executeAction(params, manager, ctx);
83
83
  },
84
84