pi-review-loop 0.4.0 → 0.4.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.
Files changed (2) hide show
  1. package/index.ts +1 -1
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -342,7 +342,7 @@ export default function (pi: ExtensionAPI) {
342
342
  ),
343
343
  }),
344
344
 
345
- async execute(_toolCallId, params, _onUpdate, ctx) {
345
+ async execute(_toolCallId, params, _signal, _onUpdate, ctx) {
346
346
  if (typeof params.maxIterations === "number" && params.maxIterations >= 1) {
347
347
  settings.maxIterations = params.maxIterations;
348
348
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-review-loop",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Automated code review loop extension for pi coding agent",
5
5
  "scripts": {
6
6
  "postinstall": "node scripts/install.js",