@riddledc/riddle-proof 0.8.19 → 0.8.20
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/dist/advanced/engine-harness.cjs +31 -0
- package/dist/advanced/engine-harness.js +1 -1
- package/dist/advanced/index.cjs +31 -0
- package/dist/advanced/index.js +2 -2
- package/dist/advanced/proof-run-engine.cjs +31 -0
- package/dist/advanced/proof-run-engine.js +1 -1
- package/dist/{chunk-2JWFSLZ5.js → chunk-5NEO7WDZ.js} +31 -0
- package/dist/{chunk-WE6U7EEH.js → chunk-K3TPF55N.js} +1 -1
- package/dist/cli/index.js +2 -2
- package/dist/cli.cjs +31 -0
- package/dist/cli.js +2 -2
- package/dist/engine-harness.cjs +31 -0
- package/dist/engine-harness.js +1 -1
- package/dist/index.cjs +31 -0
- package/dist/index.js +1 -1
- package/dist/proof-run-engine.cjs +31 -0
- package/dist/proof-run-engine.js +1 -1
- package/package.json +1 -1
- /package/dist/{chunk-P6YV63YF.js → chunk-RWF763A4.js} +0 -0
|
@@ -2623,6 +2623,7 @@ ${implementRes.stderr || ""}`;
|
|
|
2623
2623
|
verifyContinueWithStage,
|
|
2624
2624
|
convergenceSignals
|
|
2625
2625
|
};
|
|
2626
|
+
const structuredInteractionFailureSummary = stringValue(verifyDecisionRequest?.structured_interaction_failure_summary);
|
|
2626
2627
|
if (verifyStatus !== "evidence_captured") {
|
|
2627
2628
|
const captureQuality = verifyDecisionRequest?.capture_quality || {};
|
|
2628
2629
|
const captureTerminalBlocker = captureQuality?.terminal_blocker === true || captureQuality?.blocking === true;
|
|
@@ -2663,6 +2664,36 @@ ${implementRes.stderr || ""}`;
|
|
|
2663
2664
|
}
|
|
2664
2665
|
);
|
|
2665
2666
|
}
|
|
2667
|
+
if (structuredInteractionFailureSummary) {
|
|
2668
|
+
const summary = structuredInteractionFailureSummary;
|
|
2669
|
+
recordAttempt("verify", "checkpoint", summary, {
|
|
2670
|
+
autoApproved: verifyRes.autoApproved || false,
|
|
2671
|
+
checkpoint: "verify_capture_blocked",
|
|
2672
|
+
details: verifyDetails
|
|
2673
|
+
});
|
|
2674
|
+
return checkpoint(
|
|
2675
|
+
"verify",
|
|
2676
|
+
"verify_capture_blocked",
|
|
2677
|
+
summary,
|
|
2678
|
+
{
|
|
2679
|
+
ok: true,
|
|
2680
|
+
nextActions: ["inspect_after_capture", "report_specific_browser_evidence_blocker", "start_a_new_run_after_the_product_or_script_is_fixed"],
|
|
2681
|
+
advanceOptions: verifyLoopAdvanceOptions,
|
|
2682
|
+
recommendedAdvanceStage: null,
|
|
2683
|
+
continueWithStage: null,
|
|
2684
|
+
blocking: true,
|
|
2685
|
+
details: verifyDetails,
|
|
2686
|
+
verifyStatus,
|
|
2687
|
+
verifySummary,
|
|
2688
|
+
afterCdn: state?.after_cdn || null,
|
|
2689
|
+
mergeRecommendation: state?.merge_recommendation || null,
|
|
2690
|
+
verifyDecisionRequest,
|
|
2691
|
+
proofAssessment: proofAssessment.raw,
|
|
2692
|
+
proofAssessmentRequest: state?.proof_assessment_request || null,
|
|
2693
|
+
executed
|
|
2694
|
+
}
|
|
2695
|
+
);
|
|
2696
|
+
}
|
|
2666
2697
|
if (!hasSupervisorProofAssessment(state)) {
|
|
2667
2698
|
const summary = "Verify captured usable evidence. The supervising agent should now assess whether the proof supports ship or more internal iteration, then resume the workflow with proof_assessment_json.";
|
|
2668
2699
|
recordAttempt("verify", "checkpoint", summary, {
|
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
createDisabledRiddleProofAgentAdapter,
|
|
3
3
|
readRiddleProofRunStatus,
|
|
4
4
|
runRiddleProofEngineHarness
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-RWF763A4.js";
|
|
6
6
|
import "../chunk-YZUVEJ5B.js";
|
|
7
7
|
import "../chunk-FMOYUYH2.js";
|
|
8
8
|
import "../chunk-FU73I4V3.js";
|
package/dist/advanced/index.cjs
CHANGED
|
@@ -2654,6 +2654,7 @@ ${implementRes.stderr || ""}`;
|
|
|
2654
2654
|
verifyContinueWithStage,
|
|
2655
2655
|
convergenceSignals
|
|
2656
2656
|
};
|
|
2657
|
+
const structuredInteractionFailureSummary = stringValue(verifyDecisionRequest?.structured_interaction_failure_summary);
|
|
2657
2658
|
if (verifyStatus !== "evidence_captured") {
|
|
2658
2659
|
const captureQuality = verifyDecisionRequest?.capture_quality || {};
|
|
2659
2660
|
const captureTerminalBlocker = captureQuality?.terminal_blocker === true || captureQuality?.blocking === true;
|
|
@@ -2694,6 +2695,36 @@ ${implementRes.stderr || ""}`;
|
|
|
2694
2695
|
}
|
|
2695
2696
|
);
|
|
2696
2697
|
}
|
|
2698
|
+
if (structuredInteractionFailureSummary) {
|
|
2699
|
+
const summary = structuredInteractionFailureSummary;
|
|
2700
|
+
recordAttempt("verify", "checkpoint", summary, {
|
|
2701
|
+
autoApproved: verifyRes.autoApproved || false,
|
|
2702
|
+
checkpoint: "verify_capture_blocked",
|
|
2703
|
+
details: verifyDetails
|
|
2704
|
+
});
|
|
2705
|
+
return checkpoint(
|
|
2706
|
+
"verify",
|
|
2707
|
+
"verify_capture_blocked",
|
|
2708
|
+
summary,
|
|
2709
|
+
{
|
|
2710
|
+
ok: true,
|
|
2711
|
+
nextActions: ["inspect_after_capture", "report_specific_browser_evidence_blocker", "start_a_new_run_after_the_product_or_script_is_fixed"],
|
|
2712
|
+
advanceOptions: verifyLoopAdvanceOptions,
|
|
2713
|
+
recommendedAdvanceStage: null,
|
|
2714
|
+
continueWithStage: null,
|
|
2715
|
+
blocking: true,
|
|
2716
|
+
details: verifyDetails,
|
|
2717
|
+
verifyStatus,
|
|
2718
|
+
verifySummary,
|
|
2719
|
+
afterCdn: state?.after_cdn || null,
|
|
2720
|
+
mergeRecommendation: state?.merge_recommendation || null,
|
|
2721
|
+
verifyDecisionRequest,
|
|
2722
|
+
proofAssessment: proofAssessment.raw,
|
|
2723
|
+
proofAssessmentRequest: state?.proof_assessment_request || null,
|
|
2724
|
+
executed
|
|
2725
|
+
}
|
|
2726
|
+
);
|
|
2727
|
+
}
|
|
2697
2728
|
if (!hasSupervisorProofAssessment(state)) {
|
|
2698
2729
|
const summary = "Verify captured usable evidence. The supervising agent should now assess whether the proof supports ship or more internal iteration, then resume the workflow with proof_assessment_json.";
|
|
2699
2730
|
recordAttempt("verify", "checkpoint", summary, {
|
package/dist/advanced/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
proof_run_engine_exports
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-5NEO7WDZ.js";
|
|
4
4
|
import {
|
|
5
5
|
runner_exports
|
|
6
6
|
} from "../chunk-P2RN2NYR.js";
|
|
7
7
|
import {
|
|
8
8
|
engine_harness_exports
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-RWF763A4.js";
|
|
10
10
|
import "../chunk-YZUVEJ5B.js";
|
|
11
11
|
import "../chunk-FMOYUYH2.js";
|
|
12
12
|
import {
|
|
@@ -2623,6 +2623,7 @@ ${implementRes.stderr || ""}`;
|
|
|
2623
2623
|
verifyContinueWithStage,
|
|
2624
2624
|
convergenceSignals
|
|
2625
2625
|
};
|
|
2626
|
+
const structuredInteractionFailureSummary = stringValue(verifyDecisionRequest?.structured_interaction_failure_summary);
|
|
2626
2627
|
if (verifyStatus !== "evidence_captured") {
|
|
2627
2628
|
const captureQuality = verifyDecisionRequest?.capture_quality || {};
|
|
2628
2629
|
const captureTerminalBlocker = captureQuality?.terminal_blocker === true || captureQuality?.blocking === true;
|
|
@@ -2663,6 +2664,36 @@ ${implementRes.stderr || ""}`;
|
|
|
2663
2664
|
}
|
|
2664
2665
|
);
|
|
2665
2666
|
}
|
|
2667
|
+
if (structuredInteractionFailureSummary) {
|
|
2668
|
+
const summary = structuredInteractionFailureSummary;
|
|
2669
|
+
recordAttempt("verify", "checkpoint", summary, {
|
|
2670
|
+
autoApproved: verifyRes.autoApproved || false,
|
|
2671
|
+
checkpoint: "verify_capture_blocked",
|
|
2672
|
+
details: verifyDetails
|
|
2673
|
+
});
|
|
2674
|
+
return checkpoint(
|
|
2675
|
+
"verify",
|
|
2676
|
+
"verify_capture_blocked",
|
|
2677
|
+
summary,
|
|
2678
|
+
{
|
|
2679
|
+
ok: true,
|
|
2680
|
+
nextActions: ["inspect_after_capture", "report_specific_browser_evidence_blocker", "start_a_new_run_after_the_product_or_script_is_fixed"],
|
|
2681
|
+
advanceOptions: verifyLoopAdvanceOptions,
|
|
2682
|
+
recommendedAdvanceStage: null,
|
|
2683
|
+
continueWithStage: null,
|
|
2684
|
+
blocking: true,
|
|
2685
|
+
details: verifyDetails,
|
|
2686
|
+
verifyStatus,
|
|
2687
|
+
verifySummary,
|
|
2688
|
+
afterCdn: state?.after_cdn || null,
|
|
2689
|
+
mergeRecommendation: state?.merge_recommendation || null,
|
|
2690
|
+
verifyDecisionRequest,
|
|
2691
|
+
proofAssessment: proofAssessment.raw,
|
|
2692
|
+
proofAssessmentRequest: state?.proof_assessment_request || null,
|
|
2693
|
+
executed
|
|
2694
|
+
}
|
|
2695
|
+
);
|
|
2696
|
+
}
|
|
2666
2697
|
if (!hasSupervisorProofAssessment(state)) {
|
|
2667
2698
|
const summary = "Verify captured usable evidence. The supervising agent should now assess whether the proof supports ship or more internal iteration, then resume the workflow with proof_assessment_json.";
|
|
2668
2699
|
recordAttempt("verify", "checkpoint", summary, {
|
|
@@ -1511,6 +1511,7 @@ ${implementRes.stderr || ""}`;
|
|
|
1511
1511
|
verifyContinueWithStage,
|
|
1512
1512
|
convergenceSignals
|
|
1513
1513
|
};
|
|
1514
|
+
const structuredInteractionFailureSummary = stringValue(verifyDecisionRequest?.structured_interaction_failure_summary);
|
|
1514
1515
|
if (verifyStatus !== "evidence_captured") {
|
|
1515
1516
|
const captureQuality = verifyDecisionRequest?.capture_quality || {};
|
|
1516
1517
|
const captureTerminalBlocker = captureQuality?.terminal_blocker === true || captureQuality?.blocking === true;
|
|
@@ -1551,6 +1552,36 @@ ${implementRes.stderr || ""}`;
|
|
|
1551
1552
|
}
|
|
1552
1553
|
);
|
|
1553
1554
|
}
|
|
1555
|
+
if (structuredInteractionFailureSummary) {
|
|
1556
|
+
const summary = structuredInteractionFailureSummary;
|
|
1557
|
+
recordAttempt("verify", "checkpoint", summary, {
|
|
1558
|
+
autoApproved: verifyRes.autoApproved || false,
|
|
1559
|
+
checkpoint: "verify_capture_blocked",
|
|
1560
|
+
details: verifyDetails
|
|
1561
|
+
});
|
|
1562
|
+
return checkpoint(
|
|
1563
|
+
"verify",
|
|
1564
|
+
"verify_capture_blocked",
|
|
1565
|
+
summary,
|
|
1566
|
+
{
|
|
1567
|
+
ok: true,
|
|
1568
|
+
nextActions: ["inspect_after_capture", "report_specific_browser_evidence_blocker", "start_a_new_run_after_the_product_or_script_is_fixed"],
|
|
1569
|
+
advanceOptions: verifyLoopAdvanceOptions,
|
|
1570
|
+
recommendedAdvanceStage: null,
|
|
1571
|
+
continueWithStage: null,
|
|
1572
|
+
blocking: true,
|
|
1573
|
+
details: verifyDetails,
|
|
1574
|
+
verifyStatus,
|
|
1575
|
+
verifySummary,
|
|
1576
|
+
afterCdn: state?.after_cdn || null,
|
|
1577
|
+
mergeRecommendation: state?.merge_recommendation || null,
|
|
1578
|
+
verifyDecisionRequest,
|
|
1579
|
+
proofAssessment: proofAssessment.raw,
|
|
1580
|
+
proofAssessmentRequest: state?.proof_assessment_request || null,
|
|
1581
|
+
executed
|
|
1582
|
+
}
|
|
1583
|
+
);
|
|
1584
|
+
}
|
|
1554
1585
|
if (!hasSupervisorProofAssessment(state)) {
|
|
1555
1586
|
const summary = "Verify captured usable evidence. The supervising agent should now assess whether the proof supports ship or more internal iteration, then resume the workflow with proof_assessment_json.";
|
|
1556
1587
|
recordAttempt("verify", "checkpoint", summary, {
|
package/dist/cli/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import "../chunk-
|
|
1
|
+
import "../chunk-K3TPF55N.js";
|
|
2
2
|
import "../chunk-PEWAIEER.js";
|
|
3
3
|
import "../chunk-TWTEUS7R.js";
|
|
4
|
-
import "../chunk-
|
|
4
|
+
import "../chunk-RWF763A4.js";
|
|
5
5
|
import "../chunk-YZUVEJ5B.js";
|
|
6
6
|
import "../chunk-FMOYUYH2.js";
|
|
7
7
|
import "../chunk-FU73I4V3.js";
|
package/dist/cli.cjs
CHANGED
|
@@ -2623,6 +2623,7 @@ ${implementRes.stderr || ""}`;
|
|
|
2623
2623
|
verifyContinueWithStage,
|
|
2624
2624
|
convergenceSignals
|
|
2625
2625
|
};
|
|
2626
|
+
const structuredInteractionFailureSummary = stringValue(verifyDecisionRequest?.structured_interaction_failure_summary);
|
|
2626
2627
|
if (verifyStatus !== "evidence_captured") {
|
|
2627
2628
|
const captureQuality = verifyDecisionRequest?.capture_quality || {};
|
|
2628
2629
|
const captureTerminalBlocker = captureQuality?.terminal_blocker === true || captureQuality?.blocking === true;
|
|
@@ -2663,6 +2664,36 @@ ${implementRes.stderr || ""}`;
|
|
|
2663
2664
|
}
|
|
2664
2665
|
);
|
|
2665
2666
|
}
|
|
2667
|
+
if (structuredInteractionFailureSummary) {
|
|
2668
|
+
const summary = structuredInteractionFailureSummary;
|
|
2669
|
+
recordAttempt("verify", "checkpoint", summary, {
|
|
2670
|
+
autoApproved: verifyRes.autoApproved || false,
|
|
2671
|
+
checkpoint: "verify_capture_blocked",
|
|
2672
|
+
details: verifyDetails
|
|
2673
|
+
});
|
|
2674
|
+
return checkpoint(
|
|
2675
|
+
"verify",
|
|
2676
|
+
"verify_capture_blocked",
|
|
2677
|
+
summary,
|
|
2678
|
+
{
|
|
2679
|
+
ok: true,
|
|
2680
|
+
nextActions: ["inspect_after_capture", "report_specific_browser_evidence_blocker", "start_a_new_run_after_the_product_or_script_is_fixed"],
|
|
2681
|
+
advanceOptions: verifyLoopAdvanceOptions,
|
|
2682
|
+
recommendedAdvanceStage: null,
|
|
2683
|
+
continueWithStage: null,
|
|
2684
|
+
blocking: true,
|
|
2685
|
+
details: verifyDetails,
|
|
2686
|
+
verifyStatus,
|
|
2687
|
+
verifySummary,
|
|
2688
|
+
afterCdn: state?.after_cdn || null,
|
|
2689
|
+
mergeRecommendation: state?.merge_recommendation || null,
|
|
2690
|
+
verifyDecisionRequest,
|
|
2691
|
+
proofAssessment: proofAssessment.raw,
|
|
2692
|
+
proofAssessmentRequest: state?.proof_assessment_request || null,
|
|
2693
|
+
executed
|
|
2694
|
+
}
|
|
2695
|
+
);
|
|
2696
|
+
}
|
|
2666
2697
|
if (!hasSupervisorProofAssessment(state)) {
|
|
2667
2698
|
const summary = "Verify captured usable evidence. The supervising agent should now assess whether the proof supports ship or more internal iteration, then resume the workflow with proof_assessment_json.";
|
|
2668
2699
|
recordAttempt("verify", "checkpoint", summary, {
|
package/dist/cli.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-K3TPF55N.js";
|
|
3
3
|
import "./chunk-PEWAIEER.js";
|
|
4
4
|
import "./chunk-TWTEUS7R.js";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-RWF763A4.js";
|
|
6
6
|
import "./chunk-YZUVEJ5B.js";
|
|
7
7
|
import "./chunk-FMOYUYH2.js";
|
|
8
8
|
import "./chunk-FU73I4V3.js";
|
package/dist/engine-harness.cjs
CHANGED
|
@@ -2623,6 +2623,7 @@ ${implementRes.stderr || ""}`;
|
|
|
2623
2623
|
verifyContinueWithStage,
|
|
2624
2624
|
convergenceSignals
|
|
2625
2625
|
};
|
|
2626
|
+
const structuredInteractionFailureSummary = stringValue(verifyDecisionRequest?.structured_interaction_failure_summary);
|
|
2626
2627
|
if (verifyStatus !== "evidence_captured") {
|
|
2627
2628
|
const captureQuality = verifyDecisionRequest?.capture_quality || {};
|
|
2628
2629
|
const captureTerminalBlocker = captureQuality?.terminal_blocker === true || captureQuality?.blocking === true;
|
|
@@ -2663,6 +2664,36 @@ ${implementRes.stderr || ""}`;
|
|
|
2663
2664
|
}
|
|
2664
2665
|
);
|
|
2665
2666
|
}
|
|
2667
|
+
if (structuredInteractionFailureSummary) {
|
|
2668
|
+
const summary = structuredInteractionFailureSummary;
|
|
2669
|
+
recordAttempt("verify", "checkpoint", summary, {
|
|
2670
|
+
autoApproved: verifyRes.autoApproved || false,
|
|
2671
|
+
checkpoint: "verify_capture_blocked",
|
|
2672
|
+
details: verifyDetails
|
|
2673
|
+
});
|
|
2674
|
+
return checkpoint(
|
|
2675
|
+
"verify",
|
|
2676
|
+
"verify_capture_blocked",
|
|
2677
|
+
summary,
|
|
2678
|
+
{
|
|
2679
|
+
ok: true,
|
|
2680
|
+
nextActions: ["inspect_after_capture", "report_specific_browser_evidence_blocker", "start_a_new_run_after_the_product_or_script_is_fixed"],
|
|
2681
|
+
advanceOptions: verifyLoopAdvanceOptions,
|
|
2682
|
+
recommendedAdvanceStage: null,
|
|
2683
|
+
continueWithStage: null,
|
|
2684
|
+
blocking: true,
|
|
2685
|
+
details: verifyDetails,
|
|
2686
|
+
verifyStatus,
|
|
2687
|
+
verifySummary,
|
|
2688
|
+
afterCdn: state?.after_cdn || null,
|
|
2689
|
+
mergeRecommendation: state?.merge_recommendation || null,
|
|
2690
|
+
verifyDecisionRequest,
|
|
2691
|
+
proofAssessment: proofAssessment.raw,
|
|
2692
|
+
proofAssessmentRequest: state?.proof_assessment_request || null,
|
|
2693
|
+
executed
|
|
2694
|
+
}
|
|
2695
|
+
);
|
|
2696
|
+
}
|
|
2666
2697
|
if (!hasSupervisorProofAssessment(state)) {
|
|
2667
2698
|
const summary = "Verify captured usable evidence. The supervising agent should now assess whether the proof supports ship or more internal iteration, then resume the workflow with proof_assessment_json.";
|
|
2668
2699
|
recordAttempt("verify", "checkpoint", summary, {
|
package/dist/engine-harness.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -2623,6 +2623,7 @@ ${implementRes.stderr || ""}`;
|
|
|
2623
2623
|
verifyContinueWithStage,
|
|
2624
2624
|
convergenceSignals
|
|
2625
2625
|
};
|
|
2626
|
+
const structuredInteractionFailureSummary = stringValue(verifyDecisionRequest?.structured_interaction_failure_summary);
|
|
2626
2627
|
if (verifyStatus !== "evidence_captured") {
|
|
2627
2628
|
const captureQuality = verifyDecisionRequest?.capture_quality || {};
|
|
2628
2629
|
const captureTerminalBlocker = captureQuality?.terminal_blocker === true || captureQuality?.blocking === true;
|
|
@@ -2663,6 +2664,36 @@ ${implementRes.stderr || ""}`;
|
|
|
2663
2664
|
}
|
|
2664
2665
|
);
|
|
2665
2666
|
}
|
|
2667
|
+
if (structuredInteractionFailureSummary) {
|
|
2668
|
+
const summary = structuredInteractionFailureSummary;
|
|
2669
|
+
recordAttempt("verify", "checkpoint", summary, {
|
|
2670
|
+
autoApproved: verifyRes.autoApproved || false,
|
|
2671
|
+
checkpoint: "verify_capture_blocked",
|
|
2672
|
+
details: verifyDetails
|
|
2673
|
+
});
|
|
2674
|
+
return checkpoint(
|
|
2675
|
+
"verify",
|
|
2676
|
+
"verify_capture_blocked",
|
|
2677
|
+
summary,
|
|
2678
|
+
{
|
|
2679
|
+
ok: true,
|
|
2680
|
+
nextActions: ["inspect_after_capture", "report_specific_browser_evidence_blocker", "start_a_new_run_after_the_product_or_script_is_fixed"],
|
|
2681
|
+
advanceOptions: verifyLoopAdvanceOptions,
|
|
2682
|
+
recommendedAdvanceStage: null,
|
|
2683
|
+
continueWithStage: null,
|
|
2684
|
+
blocking: true,
|
|
2685
|
+
details: verifyDetails,
|
|
2686
|
+
verifyStatus,
|
|
2687
|
+
verifySummary,
|
|
2688
|
+
afterCdn: state?.after_cdn || null,
|
|
2689
|
+
mergeRecommendation: state?.merge_recommendation || null,
|
|
2690
|
+
verifyDecisionRequest,
|
|
2691
|
+
proofAssessment: proofAssessment.raw,
|
|
2692
|
+
proofAssessmentRequest: state?.proof_assessment_request || null,
|
|
2693
|
+
executed
|
|
2694
|
+
}
|
|
2695
|
+
);
|
|
2696
|
+
}
|
|
2666
2697
|
if (!hasSupervisorProofAssessment(state)) {
|
|
2667
2698
|
const summary = "Verify captured usable evidence. The supervising agent should now assess whether the proof supports ship or more internal iteration, then resume the workflow with proof_assessment_json.";
|
|
2668
2699
|
recordAttempt("verify", "checkpoint", summary, {
|
package/dist/index.js
CHANGED
|
@@ -2621,6 +2621,7 @@ ${implementRes.stderr || ""}`;
|
|
|
2621
2621
|
verifyContinueWithStage,
|
|
2622
2622
|
convergenceSignals
|
|
2623
2623
|
};
|
|
2624
|
+
const structuredInteractionFailureSummary = stringValue(verifyDecisionRequest?.structured_interaction_failure_summary);
|
|
2624
2625
|
if (verifyStatus !== "evidence_captured") {
|
|
2625
2626
|
const captureQuality = verifyDecisionRequest?.capture_quality || {};
|
|
2626
2627
|
const captureTerminalBlocker = captureQuality?.terminal_blocker === true || captureQuality?.blocking === true;
|
|
@@ -2661,6 +2662,36 @@ ${implementRes.stderr || ""}`;
|
|
|
2661
2662
|
}
|
|
2662
2663
|
);
|
|
2663
2664
|
}
|
|
2665
|
+
if (structuredInteractionFailureSummary) {
|
|
2666
|
+
const summary = structuredInteractionFailureSummary;
|
|
2667
|
+
recordAttempt("verify", "checkpoint", summary, {
|
|
2668
|
+
autoApproved: verifyRes.autoApproved || false,
|
|
2669
|
+
checkpoint: "verify_capture_blocked",
|
|
2670
|
+
details: verifyDetails
|
|
2671
|
+
});
|
|
2672
|
+
return checkpoint(
|
|
2673
|
+
"verify",
|
|
2674
|
+
"verify_capture_blocked",
|
|
2675
|
+
summary,
|
|
2676
|
+
{
|
|
2677
|
+
ok: true,
|
|
2678
|
+
nextActions: ["inspect_after_capture", "report_specific_browser_evidence_blocker", "start_a_new_run_after_the_product_or_script_is_fixed"],
|
|
2679
|
+
advanceOptions: verifyLoopAdvanceOptions,
|
|
2680
|
+
recommendedAdvanceStage: null,
|
|
2681
|
+
continueWithStage: null,
|
|
2682
|
+
blocking: true,
|
|
2683
|
+
details: verifyDetails,
|
|
2684
|
+
verifyStatus,
|
|
2685
|
+
verifySummary,
|
|
2686
|
+
afterCdn: state?.after_cdn || null,
|
|
2687
|
+
mergeRecommendation: state?.merge_recommendation || null,
|
|
2688
|
+
verifyDecisionRequest,
|
|
2689
|
+
proofAssessment: proofAssessment.raw,
|
|
2690
|
+
proofAssessmentRequest: state?.proof_assessment_request || null,
|
|
2691
|
+
executed
|
|
2692
|
+
}
|
|
2693
|
+
);
|
|
2694
|
+
}
|
|
2664
2695
|
if (!hasSupervisorProofAssessment(state)) {
|
|
2665
2696
|
const summary = "Verify captured usable evidence. The supervising agent should now assess whether the proof supports ship or more internal iteration, then resume the workflow with proof_assessment_json.";
|
|
2666
2697
|
recordAttempt("verify", "checkpoint", summary, {
|
package/dist/proof-run-engine.js
CHANGED
package/package.json
CHANGED
|
File without changes
|