@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.
@@ -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-3ICNKAWF.js";
21
+ } from "./chunk-F7BNWDF6.js";
22
22
  import "./chunk-4DM3OTWH.js";
23
23
  import "./chunk-3UHWI3FO.js";
24
24
  import "./chunk-SGXB5S4B.js";
@@ -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: {
@@ -2,7 +2,7 @@ import {
2
2
  createDisabledRiddleProofAgentAdapter,
3
3
  readRiddleProofRunStatus,
4
4
  runRiddleProofEngineHarness
5
- } from "./chunk-3ICNKAWF.js";
5
+ } from "./chunk-F7BNWDF6.js";
6
6
  import "./chunk-4DM3OTWH.js";
7
7
  import "./chunk-3UHWI3FO.js";
8
8
  import "./chunk-SGXB5S4B.js";
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
@@ -84,7 +84,7 @@ import {
84
84
  createDisabledRiddleProofAgentAdapter,
85
85
  readRiddleProofRunStatus,
86
86
  runRiddleProofEngineHarness
87
- } from "./chunk-3ICNKAWF.js";
87
+ } from "./chunk-F7BNWDF6.js";
88
88
  import {
89
89
  RIDDLE_PROOF_RUN_STATE_VERSION,
90
90
  appendRunEvent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riddledc/riddle-proof",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",