@riddledc/riddle-proof 0.5.0 → 0.5.1

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.
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 the packaged `@riddledc/riddle-proof-run`
14
+ checkpoint 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
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riddledc/riddle-proof",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",