@riddledc/riddle-proof 0.5.0 → 0.5.2

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 (35) hide show
  1. package/README.md +6 -6
  2. package/dist/chunk-3MHFLQKG.js +853 -0
  3. package/dist/{chunk-LVP22WE4.js → chunk-5GZZZ6JA.js} +5 -1
  4. package/dist/engine-harness.cjs +2505 -22
  5. package/dist/engine-harness.js +1 -1
  6. package/dist/index.cjs +2512 -29
  7. package/dist/index.js +2 -2
  8. package/dist/openclaw.cjs +1 -1
  9. package/dist/openclaw.js +1 -1
  10. package/dist/proof-run-core.cjs +909 -0
  11. package/dist/proof-run-core.d.cts +280 -0
  12. package/dist/proof-run-core.d.ts +280 -0
  13. package/dist/proof-run-core.js +48 -0
  14. package/dist/proof-run-engine.cjs +2499 -0
  15. package/dist/proof-run-engine.d.cts +677 -0
  16. package/dist/proof-run-engine.d.ts +677 -0
  17. package/dist/proof-run-engine.js +1649 -0
  18. package/lib/workspace-core.mjs +391 -0
  19. package/package.json +15 -3
  20. package/runtime/lib/author.py +343 -0
  21. package/runtime/lib/implement.py +63 -0
  22. package/runtime/lib/preflight.py +246 -0
  23. package/runtime/lib/recon.py +1048 -0
  24. package/runtime/lib/riddle_core_call.mjs +151 -0
  25. package/runtime/lib/setup.py +387 -0
  26. package/runtime/lib/ship.py +834 -0
  27. package/runtime/lib/util.py +673 -0
  28. package/runtime/lib/verify.py +1223 -0
  29. package/runtime/pipelines/riddle-proof-author.lobster +28 -0
  30. package/runtime/pipelines/riddle-proof-implement.lobster +26 -0
  31. package/runtime/pipelines/riddle-proof-recon.lobster +79 -0
  32. package/runtime/pipelines/riddle-proof-setup.lobster +141 -0
  33. package/runtime/pipelines/riddle-proof-ship.lobster +36 -0
  34. package/runtime/pipelines/riddle-proof-verify.lobster +74 -0
  35. package/runtime/tests/recon_verify_smoke.py +1198 -0
package/README.md CHANGED
@@ -8,10 +8,10 @@ Proof standardizes evidence, proof assessment, ship gates, terminal results,
8
8
  and integration metadata.
9
9
 
10
10
  This package includes the reusable runner harness that drives a request through
11
- preflight, setup, implementation, proof capture, judgment, shipping, and notification
12
- adapters. The current OpenClaw `proofed_change_run` implementation remains the
13
- reference workflow while adapter implementations are extracted behind parity
14
- tests.
11
+ preflight, setup, implementation, proof capture, judgment, shipping, and
12
+ notification adapters. The OpenClaw wrapper uses the public
13
+ `riddle_proof_change` tool and this package's bundled proof-run checkpoint
14
+ engine.
15
15
 
16
16
  ## Initial Scope
17
17
 
@@ -155,8 +155,8 @@ shape, and errors without rerunning blind.
155
155
 
156
156
  ## OpenClaw Adapter Boundary
157
157
 
158
- `@riddledc/riddle-proof/openclaw` translates the current
159
- `proofed_change_run`-style tool params into generic `RiddleProofRunParams`.
158
+ `@riddledc/riddle-proof/openclaw` translates OpenClaw Riddle Proof tool params
159
+ into generic `RiddleProofRunParams`.
160
160
  It preserves Discord routing metadata as `integration_context` and parses
161
161
  `assertions_json` into the shared assertions field. Compatibility params such as
162
162
  `ship_after_verify` and the explicit `leave_draft` escape hatch are preserved so