patchrelay 0.36.5 → 0.36.6

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "service": "patchrelay",
3
- "version": "0.36.5",
4
- "commit": "1f30d4407cf6",
5
- "builtAt": "2026-04-09T08:27:55.606Z"
3
+ "version": "0.36.6",
4
+ "commit": "b2c4dcb9b2f3",
5
+ "builtAt": "2026-04-09T09:04:30.836Z"
6
6
  }
@@ -12,7 +12,12 @@ import { getThreadTurns } from "./codex-thread-utils.js";
12
12
  import { deriveIssueSessionReactiveIntent } from "./issue-session.js";
13
13
  const DEFAULT_CI_REPAIR_BUDGET = 3;
14
14
  const DEFAULT_QUEUE_REPAIR_BUDGET = 3;
15
- const DEFAULT_REVIEW_FIX_BUDGET = 6;
15
+ // Requested-changes loops can legitimately take more iterations than CI/queue
16
+ // repair when the reviewer is catching nuanced product or timing bugs across
17
+ // successive heads. Keep a hard ceiling to prevent infinite ping-pong, but make
18
+ // it wide enough that real review cycles can continue after multiple successful
19
+ // head advances.
20
+ const DEFAULT_REVIEW_FIX_BUDGET = 12;
16
21
  const DEFAULT_ZOMBIE_RECOVERY_BUDGET = 5;
17
22
  const ZOMBIE_RECOVERY_BASE_DELAY_MS = 15_000; // 15s, 30s, 60s, 120s, 240s
18
23
  const ISSUE_SESSION_LEASE_MS = 10 * 60_000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.36.5",
3
+ "version": "0.36.6",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {