pi-interactive-shell 0.6.3 → 0.6.4

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
@@ -4,6 +4,11 @@ All notable changes to the `pi-interactive-shell` extension will be documented i
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.6.4] - 2026-02-01
8
+
9
+ ### Fixed
10
+ - Adapt execute signature to pi v0.51.0: insert signal as 3rd parameter
11
+
7
12
  ## [0.6.3] - 2026-01-30
8
13
 
9
14
  ### Fixed
package/index.ts CHANGED
@@ -22,7 +22,7 @@ export default function interactiveShellExtension(pi: ExtensionAPI) {
22
22
  description: TOOL_DESCRIPTION,
23
23
  parameters: toolParameters,
24
24
 
25
- async execute(_toolCallId, params, onUpdate, ctx) {
25
+ async execute(_toolCallId, params, _signal, onUpdate, ctx) {
26
26
  const {
27
27
  command,
28
28
  sessionId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-interactive-shell",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "Run AI coding agents as foreground subagents in pi TUI overlays with hands-free monitoring",
5
5
  "type": "module",
6
6
  "bin": {