@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/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import "./chunk-6F4PWJZI.js";
1
2
  import {
2
3
  DEFAULT_DIAGNOSTIC_ARRAY_LIMIT,
3
4
  DEFAULT_DIAGNOSTIC_HISTORY_LIMIT,
@@ -12,7 +13,7 @@ import {
12
13
  createDisabledRiddleProofAgentAdapter,
13
14
  readRiddleProofRunStatus,
14
15
  runRiddleProofEngineHarness
15
- } from "./chunk-LVP22WE4.js";
16
+ } from "./chunk-5GZZZ6JA.js";
16
17
  import {
17
18
  runRiddleProof
18
19
  } from "./chunk-VSEKLCNU.js";
@@ -38,7 +39,6 @@ import {
38
39
  normalizeTerminalMetadata,
39
40
  recordValue
40
41
  } from "./chunk-TMMKRKY5.js";
41
- import "./chunk-6F4PWJZI.js";
42
42
  export {
43
43
  DEFAULT_DIAGNOSTIC_ARRAY_LIMIT,
44
44
  DEFAULT_DIAGNOSTIC_HISTORY_LIMIT,
package/dist/openclaw.cjs CHANGED
@@ -116,7 +116,7 @@ function openClawIntegrationContext(params) {
116
116
  source_url: params.discord_source_url,
117
117
  metadata: compactRecord({
118
118
  wrapper: "openclaw",
119
- tool: "proofed_change_run"
119
+ tool: "riddle_proof_change"
120
120
  })
121
121
  }, "openclaw");
122
122
  }
package/dist/openclaw.js CHANGED
@@ -28,7 +28,7 @@ function openClawIntegrationContext(params) {
28
28
  source_url: params.discord_source_url,
29
29
  metadata: compactRecord({
30
30
  wrapper: "openclaw",
31
- tool: "proofed_change_run"
31
+ tool: "riddle_proof_change"
32
32
  })
33
33
  }, "openclaw");
34
34
  }