@mrclrchtr/supi-review 2.2.0 → 2.2.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrclrchtr/supi-review",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "SuPi Review extension — structured code review via /supi-review command",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"README.md"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@mrclrchtr/supi-core": "2.2.
|
|
34
|
+
"@mrclrchtr/supi-core": "2.2.1"
|
|
35
35
|
},
|
|
36
36
|
"bundledDependencies": [
|
|
37
37
|
"@mrclrchtr/supi-core"
|
|
@@ -20,7 +20,7 @@ import { reviewOutputSchema } from "./schemas.ts";
|
|
|
20
20
|
|
|
21
21
|
const STEER_SUBMIT_MESSAGE =
|
|
22
22
|
"You stopped without calling submit_review. Call submit_review now with your findings.";
|
|
23
|
-
const DEFAULT_TIMEOUT_MS =
|
|
23
|
+
const DEFAULT_TIMEOUT_MS = 60 * 60 * 1_000;
|
|
24
24
|
|
|
25
25
|
// ---------------------------------------------------------------------------
|
|
26
26
|
// Runner-specific context combining lifecycle-managed fields with
|
|
@@ -16,7 +16,7 @@ import { buildReviewerSystemPrompt } from "./review-system-prompt.ts";
|
|
|
16
16
|
import { type LifecycleCtx, runWithLifecycle } from "./session-lifecycle.ts";
|
|
17
17
|
import { createSnapshotDiffTool, createSnapshotFileTool } from "./snapshot-tools.ts";
|
|
18
18
|
|
|
19
|
-
const DEFAULT_TIMEOUT_MS =
|
|
19
|
+
const DEFAULT_TIMEOUT_MS = 60 * 60 * 1_000;
|
|
20
20
|
const GRACE_TURNS = 3;
|
|
21
21
|
const STEER_MESSAGE = "Time limit reached. Wrap up and submit your review now.";
|
|
22
22
|
const HARD_ABORT_GRACE_MS = 120_000;
|