pi-repoprompt-cli 0.1.0 → 0.1.1

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.
@@ -594,7 +594,7 @@ export default function (pi: ExtensionAPI) {
594
594
  description: "Bind rp_exec to a specific RepoPrompt window and compose tab",
595
595
  parameters: BindParams,
596
596
 
597
- async execute(_toolCallId, params, _onUpdate, _ctx, _signal) {
597
+ async execute(_toolCallId, params, _signal, _onUpdate, _ctx) {
598
598
  persistBinding(params.windowId, params.tab);
599
599
 
600
600
  return {
@@ -610,7 +610,7 @@ export default function (pi: ExtensionAPI) {
610
610
  description: "Run rp-cli in the bound RepoPrompt window/tab, with quiet defaults and output truncation",
611
611
  parameters: ExecParams,
612
612
 
613
- async execute(_toolCallId, params, onUpdate, _ctx, signal) {
613
+ async execute(_toolCallId, params, signal, onUpdate, _ctx) {
614
614
  // Routing: prefer call-time overrides, otherwise fall back to the last persisted binding
615
615
  const windowId = params.windowId ?? boundWindowId;
616
616
  const tab = params.tab ?? boundTab;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-repoprompt-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Integrates RepoPrompt with Pi via RepoPrompt's `rp-cli` executable",
5
5
  "keywords": ["pi-package", "pi", "pi-coding-agent", "repoprompt"],
6
6
  "license": "MIT",
@@ -20,7 +20,7 @@
20
20
  "diff": "^7.0.0"
21
21
  },
22
22
  "peerDependencies": {
23
- "@mariozechner/pi-coding-agent": "*",
23
+ "@mariozechner/pi-coding-agent": ">=0.51.0",
24
24
  "@mariozechner/pi-tui": "*",
25
25
  "@sinclair/typebox": "*"
26
26
  },