@riddledc/riddle-proof 0.8.56 → 0.8.58
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/dist/{chunk-6KYXX4OE.js → chunk-62XLYPMS.js} +93 -2
- package/dist/chunk-KG64Y5MC.js +155 -0
- package/dist/{chunk-54DIEDR3.js → chunk-ONOPGCID.js} +1 -1
- package/dist/cli/index.js +3 -2
- package/dist/cli.cjs +266 -27
- package/dist/cli.js +3 -2
- package/dist/index.cjs +554 -313
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +5 -1
- package/dist/pr-comment.cjs +268 -27
- package/dist/pr-comment.d.cts +21 -1
- package/dist/pr-comment.d.ts +21 -1
- package/dist/pr-comment.js +2 -1
- package/dist/public-state.cjs +179 -0
- package/dist/public-state.d.cts +29 -0
- package/dist/public-state.d.ts +29 -0
- package/dist/public-state.js +7 -0
- package/dist/spec/index.cjs +156 -2
- package/dist/spec/index.d.cts +1 -0
- package/dist/spec/index.d.ts +1 -0
- package/dist/spec/index.js +5 -1
- package/dist/spec/public-state.cjs +181 -0
- package/dist/spec/public-state.d.cts +1 -0
- package/dist/spec/public-state.d.ts +1 -0
- package/dist/spec/public-state.js +7 -0
- package/package.json +12 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@riddledc/riddle-proof",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.58",
|
|
4
4
|
"description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "RiddleDC",
|
|
@@ -44,6 +44,11 @@
|
|
|
44
44
|
"import": "./dist/run-card.js",
|
|
45
45
|
"require": "./dist/run-card.cjs"
|
|
46
46
|
},
|
|
47
|
+
"./public-state": {
|
|
48
|
+
"types": "./dist/public-state.d.ts",
|
|
49
|
+
"import": "./dist/public-state.js",
|
|
50
|
+
"require": "./dist/public-state.cjs"
|
|
51
|
+
},
|
|
47
52
|
"./runner": {
|
|
48
53
|
"types": "./dist/runner.d.ts",
|
|
49
54
|
"import": "./dist/runner.js",
|
|
@@ -84,6 +89,11 @@
|
|
|
84
89
|
"import": "./dist/spec/run-card.js",
|
|
85
90
|
"require": "./dist/spec/run-card.cjs"
|
|
86
91
|
},
|
|
92
|
+
"./spec/public-state": {
|
|
93
|
+
"types": "./dist/spec/public-state.d.ts",
|
|
94
|
+
"import": "./dist/spec/public-state.js",
|
|
95
|
+
"require": "./dist/spec/public-state.cjs"
|
|
96
|
+
},
|
|
87
97
|
"./codex-exec-agent": {
|
|
88
98
|
"types": "./dist/codex-exec-agent.d.ts",
|
|
89
99
|
"import": "./dist/codex-exec-agent.js",
|
|
@@ -229,7 +239,7 @@
|
|
|
229
239
|
"typescript": "^5.4.5"
|
|
230
240
|
},
|
|
231
241
|
"scripts": {
|
|
232
|
-
"build": "npm --workspace @riddledc/riddle-proof-app-contract run build --if-present && tsup src/index.ts src/types.ts src/result.ts src/state.ts src/checkpoint.ts src/run-card.ts src/runner.ts src/engine-harness.ts src/codex-exec-agent.ts src/local-agent.ts src/cli.ts src/cli/index.ts src/diagnostics.ts src/proof-session.ts src/playability.ts src/basic-gameplay.ts src/profile.ts src/profile/index.ts src/pr-comment.ts src/openclaw.ts src/proof-run-core.ts src/proof-run-engine.ts src/riddle-client.ts src/runtime/riddle-client.ts src/spec/index.ts src/spec/types.ts src/spec/result.ts src/spec/state.ts src/spec/checkpoint.ts src/spec/run-card.ts src/runtime/index.ts src/app-contract/index.ts src/advanced/index.ts src/advanced/runner.ts src/advanced/engine-harness.ts src/advanced/proof-run-core.ts src/advanced/proof-run-engine.ts src/adapters/openclaw.ts src/adapters/local-agent.ts src/adapters/codex-exec-agent.ts src/adapters/codex.ts --format cjs,esm --dts --out-dir dist --clean",
|
|
242
|
+
"build": "npm --workspace @riddledc/riddle-proof-app-contract run build --if-present && tsup src/index.ts src/types.ts src/result.ts src/state.ts src/checkpoint.ts src/run-card.ts src/public-state.ts src/runner.ts src/engine-harness.ts src/codex-exec-agent.ts src/local-agent.ts src/cli.ts src/cli/index.ts src/diagnostics.ts src/proof-session.ts src/playability.ts src/basic-gameplay.ts src/profile.ts src/profile/index.ts src/pr-comment.ts src/openclaw.ts src/proof-run-core.ts src/proof-run-engine.ts src/riddle-client.ts src/runtime/riddle-client.ts src/spec/index.ts src/spec/types.ts src/spec/result.ts src/spec/state.ts src/spec/checkpoint.ts src/spec/run-card.ts src/spec/public-state.ts src/runtime/index.ts src/app-contract/index.ts src/advanced/index.ts src/advanced/runner.ts src/advanced/engine-harness.ts src/advanced/proof-run-core.ts src/advanced/proof-run-engine.ts src/adapters/openclaw.ts src/adapters/local-agent.ts src/adapters/codex-exec-agent.ts src/adapters/codex.ts --format cjs,esm --dts --out-dir dist --clean",
|
|
233
243
|
"clean": "rm -rf dist",
|
|
234
244
|
"lint": "echo 'lint: (not configured)'",
|
|
235
245
|
"test": "npm run build && node test.js && node proof-run.test.js && node formal-conformance.test.js && node trust-boundary.test.js && node regression-packs.test.js && python3 runtime/tests/trust_boundary_regression.py && python3 runtime/tests/ship_artifact_publication.py && (python3 runtime/tests/recon_verify_smoke.py >/tmp/riddle-proof-recon-verify-smoke.json || (tail -120 /tmp/riddle-proof-recon-verify-smoke.json; exit 1))"
|