@riddledc/riddle-proof 0.7.4 → 0.7.5
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/{chunk-3ICNKAWF.js → chunk-F7BNWDF6.js} +14 -0
- package/dist/cli.cjs +14 -0
- package/dist/cli.js +1 -1
- package/dist/engine-harness.cjs +14 -0
- package/dist/engine-harness.js +1 -1
- package/dist/index.cjs +14 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -1081,6 +1081,20 @@ async function routeCheckpoint(request, state, result, agent, input) {
|
|
|
1081
1081
|
})
|
|
1082
1082
|
};
|
|
1083
1083
|
}
|
|
1084
|
+
if (checkpoint === "verify_audit_complete") {
|
|
1085
|
+
return {
|
|
1086
|
+
terminal: terminalResult(
|
|
1087
|
+
state,
|
|
1088
|
+
"completed",
|
|
1089
|
+
result,
|
|
1090
|
+
result.summary || "Riddle Proof audit complete.",
|
|
1091
|
+
{
|
|
1092
|
+
audit_complete: true,
|
|
1093
|
+
ship_disabled: true
|
|
1094
|
+
}
|
|
1095
|
+
)
|
|
1096
|
+
};
|
|
1097
|
+
}
|
|
1084
1098
|
if (input.dry_run || request.dry_run) {
|
|
1085
1099
|
return {
|
|
1086
1100
|
blocker: {
|
package/dist/cli.cjs
CHANGED
|
@@ -5267,6 +5267,20 @@ async function routeCheckpoint(request, state, result, agent, input) {
|
|
|
5267
5267
|
})
|
|
5268
5268
|
};
|
|
5269
5269
|
}
|
|
5270
|
+
if (checkpoint === "verify_audit_complete") {
|
|
5271
|
+
return {
|
|
5272
|
+
terminal: terminalResult(
|
|
5273
|
+
state,
|
|
5274
|
+
"completed",
|
|
5275
|
+
result,
|
|
5276
|
+
result.summary || "Riddle Proof audit complete.",
|
|
5277
|
+
{
|
|
5278
|
+
audit_complete: true,
|
|
5279
|
+
ship_disabled: true
|
|
5280
|
+
}
|
|
5281
|
+
)
|
|
5282
|
+
};
|
|
5283
|
+
}
|
|
5270
5284
|
if (input.dry_run || request.dry_run) {
|
|
5271
5285
|
return {
|
|
5272
5286
|
blocker: {
|
package/dist/cli.js
CHANGED
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
createDisabledRiddleProofAgentAdapter,
|
|
19
19
|
readRiddleProofRunStatus,
|
|
20
20
|
runRiddleProofEngineHarness
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-F7BNWDF6.js";
|
|
22
22
|
import "./chunk-4DM3OTWH.js";
|
|
23
23
|
import "./chunk-3UHWI3FO.js";
|
|
24
24
|
import "./chunk-SGXB5S4B.js";
|
package/dist/engine-harness.cjs
CHANGED
|
@@ -5196,6 +5196,20 @@ async function routeCheckpoint(request, state, result, agent, input) {
|
|
|
5196
5196
|
})
|
|
5197
5197
|
};
|
|
5198
5198
|
}
|
|
5199
|
+
if (checkpoint === "verify_audit_complete") {
|
|
5200
|
+
return {
|
|
5201
|
+
terminal: terminalResult(
|
|
5202
|
+
state,
|
|
5203
|
+
"completed",
|
|
5204
|
+
result,
|
|
5205
|
+
result.summary || "Riddle Proof audit complete.",
|
|
5206
|
+
{
|
|
5207
|
+
audit_complete: true,
|
|
5208
|
+
ship_disabled: true
|
|
5209
|
+
}
|
|
5210
|
+
)
|
|
5211
|
+
};
|
|
5212
|
+
}
|
|
5199
5213
|
if (input.dry_run || request.dry_run) {
|
|
5200
5214
|
return {
|
|
5201
5215
|
blocker: {
|
package/dist/engine-harness.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -5919,6 +5919,20 @@ async function routeCheckpoint(request, state, result, agent, input) {
|
|
|
5919
5919
|
})
|
|
5920
5920
|
};
|
|
5921
5921
|
}
|
|
5922
|
+
if (checkpoint === "verify_audit_complete") {
|
|
5923
|
+
return {
|
|
5924
|
+
terminal: terminalResult(
|
|
5925
|
+
state,
|
|
5926
|
+
"completed",
|
|
5927
|
+
result,
|
|
5928
|
+
result.summary || "Riddle Proof audit complete.",
|
|
5929
|
+
{
|
|
5930
|
+
audit_complete: true,
|
|
5931
|
+
ship_disabled: true
|
|
5932
|
+
}
|
|
5933
|
+
)
|
|
5934
|
+
};
|
|
5935
|
+
}
|
|
5922
5936
|
if (input.dry_run || request.dry_run) {
|
|
5923
5937
|
return {
|
|
5924
5938
|
blocker: {
|
package/dist/index.js
CHANGED