@riddledc/riddle-proof 0.8.61 → 0.8.63

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.
Files changed (54) hide show
  1. package/dist/adapters/codex-exec-agent.js +3 -3
  2. package/dist/adapters/codex.js +3 -3
  3. package/dist/adapters/local-agent.js +3 -3
  4. package/dist/adapters/openclaw.js +6 -6
  5. package/dist/advanced/engine-harness.js +6 -6
  6. package/dist/advanced/index.cjs +25 -1
  7. package/dist/advanced/index.js +7 -7
  8. package/dist/advanced/runner.cjs +25 -1
  9. package/dist/advanced/runner.js +6 -6
  10. package/dist/checkpoint.js +3 -3
  11. package/dist/{chunk-NXEAFQYZ.js → chunk-2OTPBHSM.js} +2 -2
  12. package/dist/{chunk-WKIIJX3O.js → chunk-6PSM6KB2.js} +66 -1
  13. package/dist/{chunk-NQ5HPAZD.js → chunk-DDAV6D6K.js} +4 -4
  14. package/dist/{chunk-XKNJ5OE4.js → chunk-LD2YTPD7.js} +27 -3
  15. package/dist/{chunk-UEY5SJG5.js → chunk-NMQIWBSB.js} +2 -2
  16. package/dist/{chunk-QPKY767W.js → chunk-OD6OKXL2.js} +1 -1
  17. package/dist/{chunk-HD46EEUV.js → chunk-P4BHU5NM.js} +4 -4
  18. package/dist/{chunk-K6VYKOIM.js → chunk-RZ3GXSXQ.js} +1 -1
  19. package/dist/{chunk-QGMSN34W.js → chunk-UK7G4RKA.js} +1 -1
  20. package/dist/{chunk-3FK5HZHK.js → chunk-WKNWMRDF.js} +2 -2
  21. package/dist/{chunk-FX2CB4MG.js → chunk-ZB5XBHWD.js} +1 -1
  22. package/dist/cli/index.js +9 -9
  23. package/dist/cli.js +9 -9
  24. package/dist/codex-exec-agent.js +3 -3
  25. package/dist/engine-harness.js +6 -6
  26. package/dist/index.cjs +93 -1
  27. package/dist/index.d.cts +1 -1
  28. package/dist/index.d.ts +1 -1
  29. package/dist/index.js +15 -9
  30. package/dist/local-agent.js +3 -3
  31. package/dist/openclaw.js +6 -6
  32. package/dist/pr-comment.js +2 -2
  33. package/dist/public-state.cjs +68 -0
  34. package/dist/public-state.d.cts +41 -1
  35. package/dist/public-state.d.ts +41 -1
  36. package/dist/public-state.js +7 -1
  37. package/dist/result.js +2 -2
  38. package/dist/run-card.js +4 -4
  39. package/dist/runner.cjs +25 -1
  40. package/dist/runner.js +6 -6
  41. package/dist/spec/checkpoint.js +3 -3
  42. package/dist/spec/index.cjs +68 -0
  43. package/dist/spec/index.d.cts +1 -1
  44. package/dist/spec/index.d.ts +1 -1
  45. package/dist/spec/index.js +11 -5
  46. package/dist/spec/public-state.cjs +68 -0
  47. package/dist/spec/public-state.d.cts +1 -1
  48. package/dist/spec/public-state.d.ts +1 -1
  49. package/dist/spec/public-state.js +7 -1
  50. package/dist/spec/result.js +2 -2
  51. package/dist/spec/run-card.js +4 -4
  52. package/dist/spec/state.js +5 -5
  53. package/dist/state.js +5 -5
  54. package/package.json +1 -1
@@ -73,6 +73,9 @@ __export(spec_exports, {
73
73
  setRunStatus: () => setRunStatus,
74
74
  shipControlStateFor: () => shipControlStateFor,
75
75
  statePathsForRunState: () => statePathsForRunState,
76
+ summarizeRiddleProofAgentSummarySurface: () => summarizeRiddleProofAgentSummarySurface,
77
+ summarizeRiddleProofHostedProofViewSurface: () => summarizeRiddleProofHostedProofViewSurface,
78
+ summarizeRiddleProofPublicConsumerSurface: () => summarizeRiddleProofPublicConsumerSurface,
76
79
  summarizeRiddleProofPublicState: () => summarizeRiddleProofPublicState
77
80
  });
78
81
  module.exports = __toCommonJS(spec_exports);
@@ -237,6 +240,68 @@ function summarizeRiddleProofPublicState(input) {
237
240
  prohibited_claims: uniqueStrings(prohibitedClaims)
238
241
  };
239
242
  }
243
+ function summarizeRiddleProofPublicConsumerSurface(input, options = {}) {
244
+ const record = asRecord(input);
245
+ const runCard = asRecord(record.run_card);
246
+ const stopCondition = asRecord(runCard.stop_condition);
247
+ const raw = asRecord(record.raw);
248
+ const publicState = summarizeRiddleProofPublicState(input);
249
+ const checkpointAudit = publicState.checkpoint_summary;
250
+ const mergeRecommendation = riddleProofPublicStateMergeRecommendation(
251
+ publicState,
252
+ firstStringValue(
253
+ options.merge_recommendation,
254
+ record.merge_recommendation,
255
+ stopCondition.merge_recommendation,
256
+ raw.merge_recommendation
257
+ )
258
+ );
259
+ const checkpointAuditRequired = publicState.required_disclosures.includes("checkpoint_audit_counters");
260
+ return {
261
+ kind: options.kind || "run_result",
262
+ status: publicState.status,
263
+ result_label: publicState.result_label,
264
+ policy_state: publicState.policy_state,
265
+ proof_complete: publicState.proof_complete,
266
+ claims: {
267
+ proof_passed: publicState.proof_passed,
268
+ ship_authorized: publicState.ship_authorized,
269
+ merge_ready: publicState.merge_ready,
270
+ sync_allowed: publicState.sync_allowed,
271
+ all_checkpoint_responses_accepted: checkpointAudit ? !checkpointAudit.audit_disclosure_required : false
272
+ },
273
+ ship_control: {
274
+ ship_held: publicState.ship_held,
275
+ shipping_disabled: publicState.shipping_disabled,
276
+ ship_authorized: publicState.ship_authorized
277
+ },
278
+ handoff: {
279
+ merge_ready: publicState.merge_ready,
280
+ sync_allowed: publicState.sync_allowed,
281
+ merge_recommendation: mergeRecommendation
282
+ },
283
+ checkpoint_audit: checkpointAudit,
284
+ disclosures: {
285
+ ship_control: true,
286
+ checkpoint_audit: !checkpointAuditRequired || Boolean(checkpointAudit),
287
+ required: [...publicState.required_disclosures],
288
+ prohibited_claims: [...publicState.prohibited_claims]
289
+ },
290
+ public_state: publicState
291
+ };
292
+ }
293
+ function summarizeRiddleProofHostedProofViewSurface(input, options = {}) {
294
+ return summarizeRiddleProofPublicConsumerSurface(input, {
295
+ ...options,
296
+ kind: "hosted_proof_view"
297
+ });
298
+ }
299
+ function summarizeRiddleProofAgentSummarySurface(input, options = {}) {
300
+ return summarizeRiddleProofPublicConsumerSurface(input, {
301
+ ...options,
302
+ kind: "agent_summary"
303
+ });
304
+ }
240
305
 
241
306
  // src/result.ts
242
307
  function isTerminalStatus(status) {
@@ -1868,5 +1933,8 @@ function applyPrLifecycleState(state, input, at = timestamp2()) {
1868
1933
  setRunStatus,
1869
1934
  shipControlStateFor,
1870
1935
  statePathsForRunState,
1936
+ summarizeRiddleProofAgentSummarySurface,
1937
+ summarizeRiddleProofHostedProofViewSurface,
1938
+ summarizeRiddleProofPublicConsumerSurface,
1871
1939
  summarizeRiddleProofPublicState
1872
1940
  });
@@ -3,4 +3,4 @@ export { RiddleProofShipControlState, TerminalMetadataInput, applyShipControlSta
3
3
  export { CreateRunStateInput, RIDDLE_PROOF_RUN_STATE_VERSION, RunEventInput, appendRunEvent, appendStageHeartbeat, applyPrLifecycleState, createRunState, createRunStatusSnapshot, normalizeIntegrationContext, normalizePrLifecycleState, normalizeRunParams, setRunStatus } from '../state.cjs';
4
4
  export { RIDDLE_PROOF_CHECKPOINT_PACKET_VERSION, RIDDLE_PROOF_CHECKPOINT_RESPONSE_VERSION, authorPacketPayloadFromCheckpointResponse, buildAuthorCheckpointPacket, buildCheckpointPacketForEngineResult, buildProofAssessmentCheckpointPacket, buildStageCheckpointPacket, checkpointPacketIdentity, checkpointResponseIdentity, checkpointSummaryFromState, createCheckpointResponseTemplate, isDuplicateCheckpointResponse, normalizeCheckpointResponse, proofContractFromAuthorCheckpointResponse, statePathsForRunState } from '../checkpoint.cjs';
5
5
  export { RIDDLE_PROOF_RUN_CARD_VERSION, createRiddleProofRunCard } from '../run-card.cjs';
6
- export { RiddleProofPublicCheckpointSummary, RiddleProofPublicPolicyState, RiddleProofPublicStateSummary, riddleProofPublicStateAllowsClaim, riddleProofPublicStateAllowsMergeRecommendation, riddleProofPublicStateMergeRecommendation, summarizeRiddleProofPublicState } from '../public-state.cjs';
6
+ export { RiddleProofPublicCheckpointSummary, RiddleProofPublicConsumerSurface, RiddleProofPublicConsumerSurfaceKind, RiddleProofPublicConsumerSurfaceOptions, RiddleProofPublicPolicyState, RiddleProofPublicStateSummary, riddleProofPublicStateAllowsClaim, riddleProofPublicStateAllowsMergeRecommendation, riddleProofPublicStateMergeRecommendation, summarizeRiddleProofAgentSummarySurface, summarizeRiddleProofHostedProofViewSurface, summarizeRiddleProofPublicConsumerSurface, summarizeRiddleProofPublicState } from '../public-state.cjs';
@@ -3,4 +3,4 @@ export { RiddleProofShipControlState, TerminalMetadataInput, applyShipControlSta
3
3
  export { CreateRunStateInput, RIDDLE_PROOF_RUN_STATE_VERSION, RunEventInput, appendRunEvent, appendStageHeartbeat, applyPrLifecycleState, createRunState, createRunStatusSnapshot, normalizeIntegrationContext, normalizePrLifecycleState, normalizeRunParams, setRunStatus } from '../state.js';
4
4
  export { RIDDLE_PROOF_CHECKPOINT_PACKET_VERSION, RIDDLE_PROOF_CHECKPOINT_RESPONSE_VERSION, authorPacketPayloadFromCheckpointResponse, buildAuthorCheckpointPacket, buildCheckpointPacketForEngineResult, buildProofAssessmentCheckpointPacket, buildStageCheckpointPacket, checkpointPacketIdentity, checkpointResponseIdentity, checkpointSummaryFromState, createCheckpointResponseTemplate, isDuplicateCheckpointResponse, normalizeCheckpointResponse, proofContractFromAuthorCheckpointResponse, statePathsForRunState } from '../checkpoint.js';
5
5
  export { RIDDLE_PROOF_RUN_CARD_VERSION, createRiddleProofRunCard } from '../run-card.js';
6
- export { RiddleProofPublicCheckpointSummary, RiddleProofPublicPolicyState, RiddleProofPublicStateSummary, riddleProofPublicStateAllowsClaim, riddleProofPublicStateAllowsMergeRecommendation, riddleProofPublicStateMergeRecommendation, summarizeRiddleProofPublicState } from '../public-state.js';
6
+ export { RiddleProofPublicCheckpointSummary, RiddleProofPublicConsumerSurface, RiddleProofPublicConsumerSurfaceKind, RiddleProofPublicConsumerSurfaceOptions, RiddleProofPublicPolicyState, RiddleProofPublicStateSummary, riddleProofPublicStateAllowsClaim, riddleProofPublicStateAllowsMergeRecommendation, riddleProofPublicStateMergeRecommendation, summarizeRiddleProofAgentSummarySurface, summarizeRiddleProofHostedProofViewSurface, summarizeRiddleProofPublicConsumerSurface, summarizeRiddleProofPublicState } from '../public-state.js';
@@ -10,11 +10,11 @@ import {
10
10
  normalizePrLifecycleState,
11
11
  normalizeRunParams,
12
12
  setRunStatus
13
- } from "../chunk-UEY5SJG5.js";
13
+ } from "../chunk-NMQIWBSB.js";
14
14
  import {
15
15
  RIDDLE_PROOF_RUN_CARD_VERSION,
16
16
  createRiddleProofRunCard
17
- } from "../chunk-NXEAFQYZ.js";
17
+ } from "../chunk-2OTPBHSM.js";
18
18
  import {
19
19
  RIDDLE_PROOF_CHECKPOINT_PACKET_VERSION,
20
20
  RIDDLE_PROOF_CHECKPOINT_RESPONSE_VERSION,
@@ -31,7 +31,7 @@ import {
31
31
  normalizeCheckpointResponse,
32
32
  proofContractFromAuthorCheckpointResponse,
33
33
  statePathsForRunState
34
- } from "../chunk-FX2CB4MG.js";
34
+ } from "../chunk-ZB5XBHWD.js";
35
35
  import {
36
36
  applyShipControlState,
37
37
  applyTerminalMetadata,
@@ -46,13 +46,16 @@ import {
46
46
  publicStateForRunState,
47
47
  recordValue,
48
48
  shipControlStateFor
49
- } from "../chunk-QGMSN34W.js";
49
+ } from "../chunk-UK7G4RKA.js";
50
50
  import {
51
51
  riddleProofPublicStateAllowsClaim,
52
52
  riddleProofPublicStateAllowsMergeRecommendation,
53
53
  riddleProofPublicStateMergeRecommendation,
54
+ summarizeRiddleProofAgentSummarySurface,
55
+ summarizeRiddleProofHostedProofViewSurface,
56
+ summarizeRiddleProofPublicConsumerSurface,
54
57
  summarizeRiddleProofPublicState
55
- } from "../chunk-WKIIJX3O.js";
58
+ } from "../chunk-6PSM6KB2.js";
56
59
  import "../chunk-MLKGABMK.js";
57
60
  export {
58
61
  RIDDLE_PROOF_CHECKPOINT_PACKET_VERSION,
@@ -98,5 +101,8 @@ export {
98
101
  setRunStatus,
99
102
  shipControlStateFor,
100
103
  statePathsForRunState,
104
+ summarizeRiddleProofAgentSummarySurface,
105
+ summarizeRiddleProofHostedProofViewSurface,
106
+ summarizeRiddleProofPublicConsumerSurface,
101
107
  summarizeRiddleProofPublicState
102
108
  };
@@ -23,6 +23,9 @@ __export(public_state_exports, {
23
23
  riddleProofPublicStateAllowsClaim: () => riddleProofPublicStateAllowsClaim,
24
24
  riddleProofPublicStateAllowsMergeRecommendation: () => riddleProofPublicStateAllowsMergeRecommendation,
25
25
  riddleProofPublicStateMergeRecommendation: () => riddleProofPublicStateMergeRecommendation,
26
+ summarizeRiddleProofAgentSummarySurface: () => summarizeRiddleProofAgentSummarySurface,
27
+ summarizeRiddleProofHostedProofViewSurface: () => summarizeRiddleProofHostedProofViewSurface,
28
+ summarizeRiddleProofPublicConsumerSurface: () => summarizeRiddleProofPublicConsumerSurface,
26
29
  summarizeRiddleProofPublicState: () => summarizeRiddleProofPublicState
27
30
  });
28
31
  module.exports = __toCommonJS(public_state_exports);
@@ -187,10 +190,75 @@ function summarizeRiddleProofPublicState(input) {
187
190
  prohibited_claims: uniqueStrings(prohibitedClaims)
188
191
  };
189
192
  }
193
+ function summarizeRiddleProofPublicConsumerSurface(input, options = {}) {
194
+ const record = asRecord(input);
195
+ const runCard = asRecord(record.run_card);
196
+ const stopCondition = asRecord(runCard.stop_condition);
197
+ const raw = asRecord(record.raw);
198
+ const publicState = summarizeRiddleProofPublicState(input);
199
+ const checkpointAudit = publicState.checkpoint_summary;
200
+ const mergeRecommendation = riddleProofPublicStateMergeRecommendation(
201
+ publicState,
202
+ firstStringValue(
203
+ options.merge_recommendation,
204
+ record.merge_recommendation,
205
+ stopCondition.merge_recommendation,
206
+ raw.merge_recommendation
207
+ )
208
+ );
209
+ const checkpointAuditRequired = publicState.required_disclosures.includes("checkpoint_audit_counters");
210
+ return {
211
+ kind: options.kind || "run_result",
212
+ status: publicState.status,
213
+ result_label: publicState.result_label,
214
+ policy_state: publicState.policy_state,
215
+ proof_complete: publicState.proof_complete,
216
+ claims: {
217
+ proof_passed: publicState.proof_passed,
218
+ ship_authorized: publicState.ship_authorized,
219
+ merge_ready: publicState.merge_ready,
220
+ sync_allowed: publicState.sync_allowed,
221
+ all_checkpoint_responses_accepted: checkpointAudit ? !checkpointAudit.audit_disclosure_required : false
222
+ },
223
+ ship_control: {
224
+ ship_held: publicState.ship_held,
225
+ shipping_disabled: publicState.shipping_disabled,
226
+ ship_authorized: publicState.ship_authorized
227
+ },
228
+ handoff: {
229
+ merge_ready: publicState.merge_ready,
230
+ sync_allowed: publicState.sync_allowed,
231
+ merge_recommendation: mergeRecommendation
232
+ },
233
+ checkpoint_audit: checkpointAudit,
234
+ disclosures: {
235
+ ship_control: true,
236
+ checkpoint_audit: !checkpointAuditRequired || Boolean(checkpointAudit),
237
+ required: [...publicState.required_disclosures],
238
+ prohibited_claims: [...publicState.prohibited_claims]
239
+ },
240
+ public_state: publicState
241
+ };
242
+ }
243
+ function summarizeRiddleProofHostedProofViewSurface(input, options = {}) {
244
+ return summarizeRiddleProofPublicConsumerSurface(input, {
245
+ ...options,
246
+ kind: "hosted_proof_view"
247
+ });
248
+ }
249
+ function summarizeRiddleProofAgentSummarySurface(input, options = {}) {
250
+ return summarizeRiddleProofPublicConsumerSurface(input, {
251
+ ...options,
252
+ kind: "agent_summary"
253
+ });
254
+ }
190
255
  // Annotate the CommonJS export names for ESM import in node:
191
256
  0 && (module.exports = {
192
257
  riddleProofPublicStateAllowsClaim,
193
258
  riddleProofPublicStateAllowsMergeRecommendation,
194
259
  riddleProofPublicStateMergeRecommendation,
260
+ summarizeRiddleProofAgentSummarySurface,
261
+ summarizeRiddleProofHostedProofViewSurface,
262
+ summarizeRiddleProofPublicConsumerSurface,
195
263
  summarizeRiddleProofPublicState
196
264
  });
@@ -1 +1 @@
1
- export { RiddleProofPublicCheckpointSummary, RiddleProofPublicPolicyState, RiddleProofPublicStateSummary, riddleProofPublicStateAllowsClaim, riddleProofPublicStateAllowsMergeRecommendation, riddleProofPublicStateMergeRecommendation, summarizeRiddleProofPublicState } from '../public-state.cjs';
1
+ export { RiddleProofPublicCheckpointSummary, RiddleProofPublicConsumerSurface, RiddleProofPublicConsumerSurfaceKind, RiddleProofPublicConsumerSurfaceOptions, RiddleProofPublicPolicyState, RiddleProofPublicStateSummary, riddleProofPublicStateAllowsClaim, riddleProofPublicStateAllowsMergeRecommendation, riddleProofPublicStateMergeRecommendation, summarizeRiddleProofAgentSummarySurface, summarizeRiddleProofHostedProofViewSurface, summarizeRiddleProofPublicConsumerSurface, summarizeRiddleProofPublicState } from '../public-state.cjs';
@@ -1 +1 @@
1
- export { RiddleProofPublicCheckpointSummary, RiddleProofPublicPolicyState, RiddleProofPublicStateSummary, riddleProofPublicStateAllowsClaim, riddleProofPublicStateAllowsMergeRecommendation, riddleProofPublicStateMergeRecommendation, summarizeRiddleProofPublicState } from '../public-state.js';
1
+ export { RiddleProofPublicCheckpointSummary, RiddleProofPublicConsumerSurface, RiddleProofPublicConsumerSurfaceKind, RiddleProofPublicConsumerSurfaceOptions, RiddleProofPublicPolicyState, RiddleProofPublicStateSummary, riddleProofPublicStateAllowsClaim, riddleProofPublicStateAllowsMergeRecommendation, riddleProofPublicStateMergeRecommendation, summarizeRiddleProofAgentSummarySurface, summarizeRiddleProofHostedProofViewSurface, summarizeRiddleProofPublicConsumerSurface, summarizeRiddleProofPublicState } from '../public-state.js';
@@ -2,12 +2,18 @@ import {
2
2
  riddleProofPublicStateAllowsClaim,
3
3
  riddleProofPublicStateAllowsMergeRecommendation,
4
4
  riddleProofPublicStateMergeRecommendation,
5
+ summarizeRiddleProofAgentSummarySurface,
6
+ summarizeRiddleProofHostedProofViewSurface,
7
+ summarizeRiddleProofPublicConsumerSurface,
5
8
  summarizeRiddleProofPublicState
6
- } from "../chunk-WKIIJX3O.js";
9
+ } from "../chunk-6PSM6KB2.js";
7
10
  import "../chunk-MLKGABMK.js";
8
11
  export {
9
12
  riddleProofPublicStateAllowsClaim,
10
13
  riddleProofPublicStateAllowsMergeRecommendation,
11
14
  riddleProofPublicStateMergeRecommendation,
15
+ summarizeRiddleProofAgentSummarySurface,
16
+ summarizeRiddleProofHostedProofViewSurface,
17
+ summarizeRiddleProofPublicConsumerSurface,
12
18
  summarizeRiddleProofPublicState
13
19
  };
@@ -12,8 +12,8 @@ import {
12
12
  publicStateForRunState,
13
13
  recordValue,
14
14
  shipControlStateFor
15
- } from "../chunk-QGMSN34W.js";
16
- import "../chunk-WKIIJX3O.js";
15
+ } from "../chunk-UK7G4RKA.js";
16
+ import "../chunk-6PSM6KB2.js";
17
17
  import "../chunk-MLKGABMK.js";
18
18
  export {
19
19
  applyShipControlState,
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  RIDDLE_PROOF_RUN_CARD_VERSION,
3
3
  createRiddleProofRunCard
4
- } from "../chunk-NXEAFQYZ.js";
5
- import "../chunk-FX2CB4MG.js";
6
- import "../chunk-QGMSN34W.js";
7
- import "../chunk-WKIIJX3O.js";
4
+ } from "../chunk-2OTPBHSM.js";
5
+ import "../chunk-ZB5XBHWD.js";
6
+ import "../chunk-UK7G4RKA.js";
7
+ import "../chunk-6PSM6KB2.js";
8
8
  import "../chunk-MLKGABMK.js";
9
9
  export {
10
10
  RIDDLE_PROOF_RUN_CARD_VERSION,
@@ -9,11 +9,11 @@ import {
9
9
  normalizePrLifecycleState,
10
10
  normalizeRunParams,
11
11
  setRunStatus
12
- } from "../chunk-UEY5SJG5.js";
13
- import "../chunk-NXEAFQYZ.js";
14
- import "../chunk-FX2CB4MG.js";
15
- import "../chunk-QGMSN34W.js";
16
- import "../chunk-WKIIJX3O.js";
12
+ } from "../chunk-NMQIWBSB.js";
13
+ import "../chunk-2OTPBHSM.js";
14
+ import "../chunk-ZB5XBHWD.js";
15
+ import "../chunk-UK7G4RKA.js";
16
+ import "../chunk-6PSM6KB2.js";
17
17
  import "../chunk-MLKGABMK.js";
18
18
  export {
19
19
  RIDDLE_PROOF_RUN_STATE_VERSION,
package/dist/state.js CHANGED
@@ -9,11 +9,11 @@ import {
9
9
  normalizePrLifecycleState,
10
10
  normalizeRunParams,
11
11
  setRunStatus
12
- } from "./chunk-UEY5SJG5.js";
13
- import "./chunk-NXEAFQYZ.js";
14
- import "./chunk-FX2CB4MG.js";
15
- import "./chunk-QGMSN34W.js";
16
- import "./chunk-WKIIJX3O.js";
12
+ } from "./chunk-NMQIWBSB.js";
13
+ import "./chunk-2OTPBHSM.js";
14
+ import "./chunk-ZB5XBHWD.js";
15
+ import "./chunk-UK7G4RKA.js";
16
+ import "./chunk-6PSM6KB2.js";
17
17
  import "./chunk-MLKGABMK.js";
18
18
  export {
19
19
  RIDDLE_PROOF_RUN_STATE_VERSION,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riddledc/riddle-proof",
3
- "version": "0.8.61",
3
+ "version": "0.8.63",
4
4
  "description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",