@riddledc/riddle-proof 0.8.51 → 0.8.53

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 (67) hide show
  1. package/dist/adapters/openclaw.js +4 -4
  2. package/dist/advanced/engine-harness.cjs +79 -26
  3. package/dist/advanced/engine-harness.js +5 -5
  4. package/dist/advanced/index.cjs +81 -26
  5. package/dist/advanced/index.d.cts +2 -2
  6. package/dist/advanced/index.d.ts +2 -2
  7. package/dist/advanced/index.js +7 -7
  8. package/dist/advanced/proof-run-core.cjs +24 -2
  9. package/dist/advanced/proof-run-core.d.cts +1 -1
  10. package/dist/advanced/proof-run-core.d.ts +1 -1
  11. package/dist/advanced/proof-run-core.js +5 -1
  12. package/dist/advanced/proof-run-engine.cjs +20 -2
  13. package/dist/advanced/proof-run-engine.d.cts +2 -2
  14. package/dist/advanced/proof-run-engine.d.ts +2 -2
  15. package/dist/advanced/proof-run-engine.js +2 -2
  16. package/dist/advanced/runner.js +5 -5
  17. package/dist/checkpoint.cjs +41 -11
  18. package/dist/checkpoint.d.cts +2 -1
  19. package/dist/checkpoint.d.ts +2 -1
  20. package/dist/checkpoint.js +3 -1
  21. package/dist/{chunk-AWM2BKDF.js → chunk-2ALMXMFZ.js} +3 -2
  22. package/dist/{chunk-AXWJJ2LC.js → chunk-BLM5EIBA.js} +40 -11
  23. package/dist/{chunk-X7SQTCIQ.js → chunk-EKZXU6MU.js} +24 -2
  24. package/dist/{chunk-RBAU2M4S.js → chunk-JJ4IWRMJ.js} +1 -1
  25. package/dist/{chunk-OYWZGDTS.js → chunk-LNWJAHAQ.js} +1 -1
  26. package/dist/{chunk-DFQBQGSD.js → chunk-S5DX7Z6X.js} +2 -2
  27. package/dist/{chunk-IOI6QR3B.js → chunk-VYJD6XYF.js} +1 -1
  28. package/dist/{chunk-M3IE3VNC.js → chunk-WDIKPIMB.js} +1 -1
  29. package/dist/{chunk-ZHTJEZH5.js → chunk-ZLBOGPUL.js} +27 -17
  30. package/dist/cli/index.js +6 -6
  31. package/dist/cli.cjs +81 -26
  32. package/dist/cli.js +6 -6
  33. package/dist/engine-harness.cjs +79 -26
  34. package/dist/engine-harness.js +5 -5
  35. package/dist/index.cjs +82 -26
  36. package/dist/index.d.cts +1 -1
  37. package/dist/index.d.ts +1 -1
  38. package/dist/index.js +8 -6
  39. package/dist/openclaw.js +4 -4
  40. package/dist/{proof-run-core-B1GeqkR8.d.ts → proof-run-core-7Dqm7RKM.d.cts} +6 -2
  41. package/dist/{proof-run-core-B1GeqkR8.d.cts → proof-run-core-7Dqm7RKM.d.ts} +6 -2
  42. package/dist/proof-run-core.cjs +24 -2
  43. package/dist/proof-run-core.d.cts +1 -1
  44. package/dist/proof-run-core.d.ts +1 -1
  45. package/dist/proof-run-core.js +5 -1
  46. package/dist/{proof-run-engine-BqaeqAze.d.ts → proof-run-engine-BqRoA3Do.d.ts} +1 -1
  47. package/dist/{proof-run-engine-4dM37pEx.d.cts → proof-run-engine-DpChFR5H.d.cts} +1 -1
  48. package/dist/proof-run-engine.cjs +20 -2
  49. package/dist/proof-run-engine.d.cts +2 -2
  50. package/dist/proof-run-engine.d.ts +2 -2
  51. package/dist/proof-run-engine.js +2 -2
  52. package/dist/run-card.js +2 -2
  53. package/dist/runner.js +5 -5
  54. package/dist/spec/checkpoint.cjs +41 -11
  55. package/dist/spec/checkpoint.d.cts +1 -1
  56. package/dist/spec/checkpoint.d.ts +1 -1
  57. package/dist/spec/checkpoint.js +3 -1
  58. package/dist/spec/index.cjs +41 -11
  59. package/dist/spec/index.d.cts +1 -1
  60. package/dist/spec/index.d.ts +1 -1
  61. package/dist/spec/index.js +5 -3
  62. package/dist/spec/run-card.js +2 -2
  63. package/dist/spec/state.js +3 -3
  64. package/dist/state.js +3 -3
  65. package/dist/types.d.cts +5 -0
  66. package/dist/types.d.ts +5 -0
  67. package/package.json +1 -1
package/dist/types.d.cts CHANGED
@@ -90,6 +90,7 @@ interface RiddleProofCheckpointPacket {
90
90
  version: "riddle-proof.checkpoint.v1";
91
91
  run_id: string;
92
92
  state_path?: string;
93
+ packet_id?: string;
93
94
  stage: RiddleProofStage;
94
95
  checkpoint: string;
95
96
  kind: "assess_recon" | "author_proof" | "implement_change" | "assess_proof" | "recover_evidence" | "human_review" | "advance_decision" | (string & {});
@@ -111,6 +112,7 @@ interface RiddleProofCheckpointResponse {
111
112
  version: "riddle-proof.checkpoint_response.v1";
112
113
  run_id: string;
113
114
  checkpoint: string;
115
+ packet_id?: string;
114
116
  resume_token?: string;
115
117
  decision: string;
116
118
  summary: string;
@@ -140,6 +142,9 @@ interface RiddleProofCheckpointSummary {
140
142
  latest_decision?: string | null;
141
143
  latest_packet_summary?: string | null;
142
144
  latest_response_summary?: string | null;
145
+ latest_packet_id?: string | null;
146
+ latest_response_packet_id?: string | null;
147
+ packet_id_matches?: boolean | null;
143
148
  latest_resume_token?: string | null;
144
149
  latest_response_token?: string | null;
145
150
  token_matches?: boolean | null;
package/dist/types.d.ts CHANGED
@@ -90,6 +90,7 @@ interface RiddleProofCheckpointPacket {
90
90
  version: "riddle-proof.checkpoint.v1";
91
91
  run_id: string;
92
92
  state_path?: string;
93
+ packet_id?: string;
93
94
  stage: RiddleProofStage;
94
95
  checkpoint: string;
95
96
  kind: "assess_recon" | "author_proof" | "implement_change" | "assess_proof" | "recover_evidence" | "human_review" | "advance_decision" | (string & {});
@@ -111,6 +112,7 @@ interface RiddleProofCheckpointResponse {
111
112
  version: "riddle-proof.checkpoint_response.v1";
112
113
  run_id: string;
113
114
  checkpoint: string;
115
+ packet_id?: string;
114
116
  resume_token?: string;
115
117
  decision: string;
116
118
  summary: string;
@@ -140,6 +142,9 @@ interface RiddleProofCheckpointSummary {
140
142
  latest_decision?: string | null;
141
143
  latest_packet_summary?: string | null;
142
144
  latest_response_summary?: string | null;
145
+ latest_packet_id?: string | null;
146
+ latest_response_packet_id?: string | null;
147
+ packet_id_matches?: boolean | null;
143
148
  latest_resume_token?: string | null;
144
149
  latest_response_token?: string | null;
145
150
  token_matches?: boolean | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riddledc/riddle-proof",
3
- "version": "0.8.51",
3
+ "version": "0.8.53",
4
4
  "description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",