@riddledc/riddle-proof 0.7.222 → 0.7.223
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/cli.cjs +8 -8
- package/dist/cli.js +8 -8
- package/dist/proof-run-engine.d.cts +3 -3
- package/dist/proof-run-engine.d.ts +3 -3
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -17885,6 +17885,14 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
17885
17885
|
}
|
|
17886
17886
|
return profileReceiptSignalStatus(hasTextAbsence, "absence check passed", "absence check missing");
|
|
17887
17887
|
}
|
|
17888
|
+
if (text.includes("screenshot")) {
|
|
17889
|
+
const needsBoundaryScreenshots = text.includes("each") || text.includes("before and after") || text.includes("state boundary") || text.includes("boundaries");
|
|
17890
|
+
return profileReceiptSignalStatus(
|
|
17891
|
+
needsBoundaryScreenshots ? screenshotCount >= 2 : screenshotCount > 0,
|
|
17892
|
+
needsBoundaryScreenshots ? "multiple screenshots present" : "screenshot evidence present",
|
|
17893
|
+
needsBoundaryScreenshots ? "multiple screenshots missing" : "screenshot evidence missing"
|
|
17894
|
+
);
|
|
17895
|
+
}
|
|
17888
17896
|
if (text.includes("generated-output") || text.includes("generated output") || text.includes("output-size") || text.includes("output size") || (text.includes("output") || text.includes("result")) && (text.includes("mutation") || text.includes("final"))) {
|
|
17889
17897
|
return profileReceiptSignalStatus(
|
|
17890
17898
|
hasGeneratedOutputContract && hasGeneratedOutputReceipt,
|
|
@@ -17997,14 +18005,6 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
17997
18005
|
"visible cleanup affordance receipt missing"
|
|
17998
18006
|
);
|
|
17999
18007
|
}
|
|
18000
|
-
if (text.includes("screenshot")) {
|
|
18001
|
-
const needsBoundaryScreenshots = text.includes("each") || text.includes("before and after") || text.includes("state boundary");
|
|
18002
|
-
return profileReceiptSignalStatus(
|
|
18003
|
-
needsBoundaryScreenshots ? screenshotCount >= 2 : screenshotCount > 0,
|
|
18004
|
-
needsBoundaryScreenshots ? "multiple screenshots present" : "screenshot evidence present",
|
|
18005
|
-
needsBoundaryScreenshots ? "multiple screenshots missing" : "screenshot evidence missing"
|
|
18006
|
-
);
|
|
18007
|
-
}
|
|
18008
18008
|
if (text.includes("input") && (text.includes("sequence") || text.includes("short-long") || text.includes("short long") || text.includes("long-short") || text.includes("long long") || text.includes("long short"))) {
|
|
18009
18009
|
return profileReceiptSignalStatus(
|
|
18010
18010
|
hasSequenceInputReceipt,
|
package/dist/cli.js
CHANGED
|
@@ -1594,6 +1594,14 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
1594
1594
|
}
|
|
1595
1595
|
return profileReceiptSignalStatus(hasTextAbsence, "absence check passed", "absence check missing");
|
|
1596
1596
|
}
|
|
1597
|
+
if (text.includes("screenshot")) {
|
|
1598
|
+
const needsBoundaryScreenshots = text.includes("each") || text.includes("before and after") || text.includes("state boundary") || text.includes("boundaries");
|
|
1599
|
+
return profileReceiptSignalStatus(
|
|
1600
|
+
needsBoundaryScreenshots ? screenshotCount >= 2 : screenshotCount > 0,
|
|
1601
|
+
needsBoundaryScreenshots ? "multiple screenshots present" : "screenshot evidence present",
|
|
1602
|
+
needsBoundaryScreenshots ? "multiple screenshots missing" : "screenshot evidence missing"
|
|
1603
|
+
);
|
|
1604
|
+
}
|
|
1597
1605
|
if (text.includes("generated-output") || text.includes("generated output") || text.includes("output-size") || text.includes("output size") || (text.includes("output") || text.includes("result")) && (text.includes("mutation") || text.includes("final"))) {
|
|
1598
1606
|
return profileReceiptSignalStatus(
|
|
1599
1607
|
hasGeneratedOutputContract && hasGeneratedOutputReceipt,
|
|
@@ -1706,14 +1714,6 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
1706
1714
|
"visible cleanup affordance receipt missing"
|
|
1707
1715
|
);
|
|
1708
1716
|
}
|
|
1709
|
-
if (text.includes("screenshot")) {
|
|
1710
|
-
const needsBoundaryScreenshots = text.includes("each") || text.includes("before and after") || text.includes("state boundary");
|
|
1711
|
-
return profileReceiptSignalStatus(
|
|
1712
|
-
needsBoundaryScreenshots ? screenshotCount >= 2 : screenshotCount > 0,
|
|
1713
|
-
needsBoundaryScreenshots ? "multiple screenshots present" : "screenshot evidence present",
|
|
1714
|
-
needsBoundaryScreenshots ? "multiple screenshots missing" : "screenshot evidence missing"
|
|
1715
|
-
);
|
|
1716
|
-
}
|
|
1717
1717
|
if (text.includes("input") && (text.includes("sequence") || text.includes("short-long") || text.includes("short long") || text.includes("long-short") || text.includes("long long") || text.includes("long short"))) {
|
|
1718
1718
|
return profileReceiptSignalStatus(
|
|
1719
1719
|
hasSequenceInputReceipt,
|
|
@@ -292,7 +292,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
292
292
|
blocking?: boolean;
|
|
293
293
|
details?: Record<string, unknown>;
|
|
294
294
|
ok: boolean;
|
|
295
|
-
action: "
|
|
295
|
+
action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
|
|
296
296
|
state_path: string;
|
|
297
297
|
stage: any;
|
|
298
298
|
summary: string;
|
|
@@ -382,7 +382,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
382
382
|
continueWithStage?: WorkflowStage | null;
|
|
383
383
|
blocking?: boolean;
|
|
384
384
|
details?: Record<string, unknown>;
|
|
385
|
-
action: "
|
|
385
|
+
action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
|
|
386
386
|
state_path: string;
|
|
387
387
|
stage: any;
|
|
388
388
|
checkpoint: string;
|
|
@@ -659,7 +659,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
659
659
|
error?: undefined;
|
|
660
660
|
} | {
|
|
661
661
|
ok: boolean;
|
|
662
|
-
action: "
|
|
662
|
+
action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
|
|
663
663
|
state_path: string;
|
|
664
664
|
stage: any;
|
|
665
665
|
summary: string;
|
|
@@ -292,7 +292,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
292
292
|
blocking?: boolean;
|
|
293
293
|
details?: Record<string, unknown>;
|
|
294
294
|
ok: boolean;
|
|
295
|
-
action: "
|
|
295
|
+
action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
|
|
296
296
|
state_path: string;
|
|
297
297
|
stage: any;
|
|
298
298
|
summary: string;
|
|
@@ -382,7 +382,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
382
382
|
continueWithStage?: WorkflowStage | null;
|
|
383
383
|
blocking?: boolean;
|
|
384
384
|
details?: Record<string, unknown>;
|
|
385
|
-
action: "
|
|
385
|
+
action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
|
|
386
386
|
state_path: string;
|
|
387
387
|
stage: any;
|
|
388
388
|
checkpoint: string;
|
|
@@ -659,7 +659,7 @@ declare function executeWorkflow(params: WorkflowParams, pluginConfig: any, reso
|
|
|
659
659
|
error?: undefined;
|
|
660
660
|
} | {
|
|
661
661
|
ok: boolean;
|
|
662
|
-
action: "
|
|
662
|
+
action: "author" | "recon" | "ship" | "implement" | "verify" | "setup" | "run";
|
|
663
663
|
state_path: string;
|
|
664
664
|
stage: any;
|
|
665
665
|
summary: string;
|