@riddledc/riddle-proof 0.8.45 → 0.8.46
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/adapters/openclaw.js +4 -4
- package/dist/advanced/engine-harness.cjs +4 -4
- package/dist/advanced/engine-harness.js +4 -4
- package/dist/advanced/index.cjs +4 -4
- package/dist/advanced/index.js +5 -5
- package/dist/advanced/runner.js +4 -4
- package/dist/checkpoint.cjs +4 -4
- package/dist/checkpoint.js +1 -1
- package/dist/{chunk-OILKSY5J.js → chunk-4D76AYZW.js} +4 -4
- package/dist/{chunk-ZREWMTFA.js → chunk-6BFLSCBD.js} +3 -3
- package/dist/{chunk-AYMHHRJZ.js → chunk-73K5UYI2.js} +1 -1
- package/dist/{chunk-RDPG554T.js → chunk-DZLBYXL3.js} +1 -1
- package/dist/{chunk-EPFGN7G7.js → chunk-HJ2FNDJ4.js} +2 -2
- package/dist/{chunk-C2NHHBFV.js → chunk-HMEYW33D.js} +1 -1
- package/dist/{chunk-ZQWVXQKJ.js → chunk-Z7BSDAOE.js} +1 -1
- package/dist/cli/index.js +5 -5
- package/dist/cli.cjs +4 -4
- package/dist/cli.js +5 -5
- package/dist/engine-harness.cjs +4 -4
- package/dist/engine-harness.js +4 -4
- package/dist/index.cjs +4 -4
- package/dist/index.js +5 -5
- package/dist/openclaw.js +4 -4
- package/dist/run-card.js +2 -2
- package/dist/runner.js +4 -4
- package/dist/spec/checkpoint.cjs +4 -4
- package/dist/spec/checkpoint.js +1 -1
- package/dist/spec/index.cjs +4 -4
- package/dist/spec/index.js +3 -3
- package/dist/spec/run-card.js +2 -2
- package/dist/spec/state.js +3 -3
- package/dist/state.js +3 -3
- package/package.json +2 -2
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
parseOpenClawAssertions,
|
|
4
4
|
parseOpenClawJsonObjectOrArray,
|
|
5
5
|
toRiddleProofRunParams
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-73K5UYI2.js";
|
|
7
|
+
import "../chunk-Z7BSDAOE.js";
|
|
8
|
+
import "../chunk-DZLBYXL3.js";
|
|
9
|
+
import "../chunk-4D76AYZW.js";
|
|
10
10
|
import "../chunk-VY4Y5U57.js";
|
|
11
11
|
import "../chunk-MLKGABMK.js";
|
|
12
12
|
export {
|
|
@@ -3869,11 +3869,11 @@ function stageFromCheckpoint(checkpoint) {
|
|
|
3869
3869
|
return "setup";
|
|
3870
3870
|
}
|
|
3871
3871
|
function allowedDecisionsForStage(stage, checkpoint) {
|
|
3872
|
-
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "blocked", "human_review"];
|
|
3872
|
+
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "needs_recon", "blocked", "human_review"];
|
|
3873
3873
|
if (stage === "implement") return ["implementation_complete", "needs_author", "needs_recon", "blocked", "human_review"];
|
|
3874
|
-
if (stage === "ship") return ["continue_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3875
|
-
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "blocked", "human_review"];
|
|
3876
|
-
return ["continue_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3874
|
+
if (stage === "ship") return ["continue_stage", "retry_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3875
|
+
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3876
|
+
return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3877
3877
|
}
|
|
3878
3878
|
function packetKindForStage(stage, checkpoint) {
|
|
3879
3879
|
if (stage === "recon") return "assess_recon";
|
|
@@ -2,11 +2,11 @@ import {
|
|
|
2
2
|
createDisabledRiddleProofAgentAdapter,
|
|
3
3
|
readRiddleProofRunStatus,
|
|
4
4
|
runRiddleProofEngineHarness
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-6BFLSCBD.js";
|
|
6
|
+
import "../chunk-Z7BSDAOE.js";
|
|
7
|
+
import "../chunk-DZLBYXL3.js";
|
|
8
8
|
import "../chunk-X7SQTCIQ.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-4D76AYZW.js";
|
|
10
10
|
import "../chunk-VY4Y5U57.js";
|
|
11
11
|
import "../chunk-MLKGABMK.js";
|
|
12
12
|
export {
|
package/dist/advanced/index.cjs
CHANGED
|
@@ -3901,11 +3901,11 @@ function stageFromCheckpoint(checkpoint) {
|
|
|
3901
3901
|
return "setup";
|
|
3902
3902
|
}
|
|
3903
3903
|
function allowedDecisionsForStage(stage, checkpoint) {
|
|
3904
|
-
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "blocked", "human_review"];
|
|
3904
|
+
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "needs_recon", "blocked", "human_review"];
|
|
3905
3905
|
if (stage === "implement") return ["implementation_complete", "needs_author", "needs_recon", "blocked", "human_review"];
|
|
3906
|
-
if (stage === "ship") return ["continue_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3907
|
-
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "blocked", "human_review"];
|
|
3908
|
-
return ["continue_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3906
|
+
if (stage === "ship") return ["continue_stage", "retry_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3907
|
+
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3908
|
+
return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3909
3909
|
}
|
|
3910
3910
|
function packetKindForStage(stage, checkpoint) {
|
|
3911
3911
|
if (stage === "recon") return "assess_recon";
|
package/dist/advanced/index.js
CHANGED
|
@@ -3,16 +3,16 @@ import {
|
|
|
3
3
|
} from "../chunk-IOI6QR3B.js";
|
|
4
4
|
import {
|
|
5
5
|
runner_exports
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-HMEYW33D.js";
|
|
7
7
|
import {
|
|
8
8
|
engine_harness_exports
|
|
9
|
-
} from "../chunk-
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
9
|
+
} from "../chunk-6BFLSCBD.js";
|
|
10
|
+
import "../chunk-Z7BSDAOE.js";
|
|
11
|
+
import "../chunk-DZLBYXL3.js";
|
|
12
12
|
import {
|
|
13
13
|
proof_run_core_exports
|
|
14
14
|
} from "../chunk-X7SQTCIQ.js";
|
|
15
|
-
import "../chunk-
|
|
15
|
+
import "../chunk-4D76AYZW.js";
|
|
16
16
|
import "../chunk-VY4Y5U57.js";
|
|
17
17
|
import "../chunk-MLKGABMK.js";
|
|
18
18
|
export {
|
package/dist/advanced/runner.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runRiddleProof
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-HMEYW33D.js";
|
|
4
|
+
import "../chunk-Z7BSDAOE.js";
|
|
5
|
+
import "../chunk-DZLBYXL3.js";
|
|
6
6
|
import "../chunk-X7SQTCIQ.js";
|
|
7
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-4D76AYZW.js";
|
|
8
8
|
import "../chunk-VY4Y5U57.js";
|
|
9
9
|
import "../chunk-MLKGABMK.js";
|
|
10
10
|
export {
|
package/dist/checkpoint.cjs
CHANGED
|
@@ -310,11 +310,11 @@ function stageFromCheckpoint(checkpoint) {
|
|
|
310
310
|
return "setup";
|
|
311
311
|
}
|
|
312
312
|
function allowedDecisionsForStage(stage, checkpoint) {
|
|
313
|
-
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "blocked", "human_review"];
|
|
313
|
+
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "needs_recon", "blocked", "human_review"];
|
|
314
314
|
if (stage === "implement") return ["implementation_complete", "needs_author", "needs_recon", "blocked", "human_review"];
|
|
315
|
-
if (stage === "ship") return ["continue_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
316
|
-
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "blocked", "human_review"];
|
|
317
|
-
return ["continue_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
315
|
+
if (stage === "ship") return ["continue_stage", "retry_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
316
|
+
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
317
|
+
return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
318
318
|
}
|
|
319
319
|
function packetKindForStage(stage, checkpoint) {
|
|
320
320
|
if (stage === "recon") return "assess_recon";
|
package/dist/checkpoint.js
CHANGED
|
@@ -256,11 +256,11 @@ function stageFromCheckpoint(checkpoint) {
|
|
|
256
256
|
return "setup";
|
|
257
257
|
}
|
|
258
258
|
function allowedDecisionsForStage(stage, checkpoint) {
|
|
259
|
-
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "blocked", "human_review"];
|
|
259
|
+
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "needs_recon", "blocked", "human_review"];
|
|
260
260
|
if (stage === "implement") return ["implementation_complete", "needs_author", "needs_recon", "blocked", "human_review"];
|
|
261
|
-
if (stage === "ship") return ["continue_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
262
|
-
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "blocked", "human_review"];
|
|
263
|
-
return ["continue_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
261
|
+
if (stage === "ship") return ["continue_stage", "retry_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
262
|
+
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
263
|
+
return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
264
264
|
}
|
|
265
265
|
function packetKindForStage(stage, checkpoint) {
|
|
266
266
|
if (stage === "recon") return "assess_recon";
|
|
@@ -5,10 +5,10 @@ import {
|
|
|
5
5
|
createRunStatusSnapshot,
|
|
6
6
|
normalizeRunParams,
|
|
7
7
|
setRunStatus
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-Z7BSDAOE.js";
|
|
9
9
|
import {
|
|
10
10
|
createRiddleProofRunCard
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-DZLBYXL3.js";
|
|
12
12
|
import {
|
|
13
13
|
noImplementationModeFor,
|
|
14
14
|
proofAssessmentHardBlockersForState,
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
normalizeCheckpointResponse,
|
|
26
26
|
proofContractFromAuthorCheckpointResponse,
|
|
27
27
|
statePathsForRunState
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-4D76AYZW.js";
|
|
29
29
|
import {
|
|
30
30
|
applyTerminalMetadata,
|
|
31
31
|
compactRecord,
|
|
@@ -28,10 +28,10 @@ import {
|
|
|
28
28
|
createDisabledRiddleProofAgentAdapter,
|
|
29
29
|
readRiddleProofRunStatus,
|
|
30
30
|
runRiddleProofEngineHarness
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-6BFLSCBD.js";
|
|
32
32
|
import {
|
|
33
33
|
createCheckpointResponseTemplate
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-4D76AYZW.js";
|
|
35
35
|
import {
|
|
36
36
|
createCodexExecAgentAdapter,
|
|
37
37
|
runCodexExecAgentDoctor
|
package/dist/cli/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import "../chunk-
|
|
1
|
+
import "../chunk-HJ2FNDJ4.js";
|
|
2
2
|
import "../chunk-DI2XNGEZ.js";
|
|
3
3
|
import "../chunk-6KYXX4OE.js";
|
|
4
4
|
import "../chunk-EX7TO4I5.js";
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
5
|
+
import "../chunk-6BFLSCBD.js";
|
|
6
|
+
import "../chunk-Z7BSDAOE.js";
|
|
7
|
+
import "../chunk-DZLBYXL3.js";
|
|
8
8
|
import "../chunk-X7SQTCIQ.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-4D76AYZW.js";
|
|
10
10
|
import "../chunk-JFQXAJH2.js";
|
|
11
11
|
import "../chunk-73EBR3YL.js";
|
|
12
12
|
import "../chunk-VY4Y5U57.js";
|
package/dist/cli.cjs
CHANGED
|
@@ -3865,11 +3865,11 @@ function stageFromCheckpoint(checkpoint) {
|
|
|
3865
3865
|
return "setup";
|
|
3866
3866
|
}
|
|
3867
3867
|
function allowedDecisionsForStage(stage, checkpoint) {
|
|
3868
|
-
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "blocked", "human_review"];
|
|
3868
|
+
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "needs_recon", "blocked", "human_review"];
|
|
3869
3869
|
if (stage === "implement") return ["implementation_complete", "needs_author", "needs_recon", "blocked", "human_review"];
|
|
3870
|
-
if (stage === "ship") return ["continue_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3871
|
-
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "blocked", "human_review"];
|
|
3872
|
-
return ["continue_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3870
|
+
if (stage === "ship") return ["continue_stage", "retry_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3871
|
+
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3872
|
+
return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3873
3873
|
}
|
|
3874
3874
|
function packetKindForStage(stage, checkpoint) {
|
|
3875
3875
|
if (stage === "recon") return "assess_recon";
|
package/dist/cli.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-HJ2FNDJ4.js";
|
|
3
3
|
import "./chunk-DI2XNGEZ.js";
|
|
4
4
|
import "./chunk-6KYXX4OE.js";
|
|
5
5
|
import "./chunk-EX7TO4I5.js";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-6BFLSCBD.js";
|
|
7
|
+
import "./chunk-Z7BSDAOE.js";
|
|
8
|
+
import "./chunk-DZLBYXL3.js";
|
|
9
9
|
import "./chunk-X7SQTCIQ.js";
|
|
10
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-4D76AYZW.js";
|
|
11
11
|
import "./chunk-JFQXAJH2.js";
|
|
12
12
|
import "./chunk-73EBR3YL.js";
|
|
13
13
|
import "./chunk-VY4Y5U57.js";
|
package/dist/engine-harness.cjs
CHANGED
|
@@ -3867,11 +3867,11 @@ function stageFromCheckpoint(checkpoint) {
|
|
|
3867
3867
|
return "setup";
|
|
3868
3868
|
}
|
|
3869
3869
|
function allowedDecisionsForStage(stage, checkpoint) {
|
|
3870
|
-
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "blocked", "human_review"];
|
|
3870
|
+
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "needs_recon", "blocked", "human_review"];
|
|
3871
3871
|
if (stage === "implement") return ["implementation_complete", "needs_author", "needs_recon", "blocked", "human_review"];
|
|
3872
|
-
if (stage === "ship") return ["continue_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3873
|
-
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "blocked", "human_review"];
|
|
3874
|
-
return ["continue_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3872
|
+
if (stage === "ship") return ["continue_stage", "retry_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3873
|
+
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3874
|
+
return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3875
3875
|
}
|
|
3876
3876
|
function packetKindForStage(stage, checkpoint) {
|
|
3877
3877
|
if (stage === "recon") return "assess_recon";
|
package/dist/engine-harness.js
CHANGED
|
@@ -2,11 +2,11 @@ import {
|
|
|
2
2
|
createDisabledRiddleProofAgentAdapter,
|
|
3
3
|
readRiddleProofRunStatus,
|
|
4
4
|
runRiddleProofEngineHarness
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-6BFLSCBD.js";
|
|
6
|
+
import "./chunk-Z7BSDAOE.js";
|
|
7
|
+
import "./chunk-DZLBYXL3.js";
|
|
8
8
|
import "./chunk-X7SQTCIQ.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-4D76AYZW.js";
|
|
10
10
|
import "./chunk-VY4Y5U57.js";
|
|
11
11
|
import "./chunk-MLKGABMK.js";
|
|
12
12
|
export {
|
package/dist/index.cjs
CHANGED
|
@@ -3986,11 +3986,11 @@ function stageFromCheckpoint(checkpoint) {
|
|
|
3986
3986
|
return "setup";
|
|
3987
3987
|
}
|
|
3988
3988
|
function allowedDecisionsForStage(stage, checkpoint) {
|
|
3989
|
-
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "blocked", "human_review"];
|
|
3989
|
+
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "needs_recon", "blocked", "human_review"];
|
|
3990
3990
|
if (stage === "implement") return ["implementation_complete", "needs_author", "needs_recon", "blocked", "human_review"];
|
|
3991
|
-
if (stage === "ship") return ["continue_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3992
|
-
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "blocked", "human_review"];
|
|
3993
|
-
return ["continue_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3991
|
+
if (stage === "ship") return ["continue_stage", "retry_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
3992
|
+
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3993
|
+
return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
3994
3994
|
}
|
|
3995
3995
|
function packetKindForStage(stage, checkpoint) {
|
|
3996
3996
|
if (stage === "recon") return "assess_recon";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runRiddleProof
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-HMEYW33D.js";
|
|
4
4
|
import "./chunk-6F4PWJZI.js";
|
|
5
5
|
import {
|
|
6
6
|
RIDDLE_PROOF_PLAYABILITY_ASSESSMENT_VERSION,
|
|
@@ -102,7 +102,7 @@ import {
|
|
|
102
102
|
createDisabledRiddleProofAgentAdapter,
|
|
103
103
|
readRiddleProofRunStatus,
|
|
104
104
|
runRiddleProofEngineHarness
|
|
105
|
-
} from "./chunk-
|
|
105
|
+
} from "./chunk-6BFLSCBD.js";
|
|
106
106
|
import {
|
|
107
107
|
RIDDLE_PROOF_RUN_STATE_VERSION,
|
|
108
108
|
appendRunEvent,
|
|
@@ -114,11 +114,11 @@ import {
|
|
|
114
114
|
normalizePrLifecycleState,
|
|
115
115
|
normalizeRunParams,
|
|
116
116
|
setRunStatus
|
|
117
|
-
} from "./chunk-
|
|
117
|
+
} from "./chunk-Z7BSDAOE.js";
|
|
118
118
|
import {
|
|
119
119
|
RIDDLE_PROOF_RUN_CARD_VERSION,
|
|
120
120
|
createRiddleProofRunCard
|
|
121
|
-
} from "./chunk-
|
|
121
|
+
} from "./chunk-DZLBYXL3.js";
|
|
122
122
|
import "./chunk-X7SQTCIQ.js";
|
|
123
123
|
import {
|
|
124
124
|
RIDDLE_PROOF_CHECKPOINT_PACKET_VERSION,
|
|
@@ -135,7 +135,7 @@ import {
|
|
|
135
135
|
normalizeCheckpointResponse,
|
|
136
136
|
proofContractFromAuthorCheckpointResponse,
|
|
137
137
|
statePathsForRunState
|
|
138
|
-
} from "./chunk-
|
|
138
|
+
} from "./chunk-4D76AYZW.js";
|
|
139
139
|
import "./chunk-JFQXAJH2.js";
|
|
140
140
|
import {
|
|
141
141
|
createCodexExecAgentAdapter,
|
package/dist/openclaw.js
CHANGED
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
parseOpenClawAssertions,
|
|
4
4
|
parseOpenClawJsonObjectOrArray,
|
|
5
5
|
toRiddleProofRunParams
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-73K5UYI2.js";
|
|
7
|
+
import "./chunk-Z7BSDAOE.js";
|
|
8
|
+
import "./chunk-DZLBYXL3.js";
|
|
9
|
+
import "./chunk-4D76AYZW.js";
|
|
10
10
|
import "./chunk-VY4Y5U57.js";
|
|
11
11
|
import "./chunk-MLKGABMK.js";
|
|
12
12
|
export {
|
package/dist/run-card.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
RIDDLE_PROOF_RUN_CARD_VERSION,
|
|
3
3
|
createRiddleProofRunCard
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-DZLBYXL3.js";
|
|
5
|
+
import "./chunk-4D76AYZW.js";
|
|
6
6
|
import "./chunk-VY4Y5U57.js";
|
|
7
7
|
import "./chunk-MLKGABMK.js";
|
|
8
8
|
export {
|
package/dist/runner.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runRiddleProof
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-HMEYW33D.js";
|
|
4
|
+
import "./chunk-Z7BSDAOE.js";
|
|
5
|
+
import "./chunk-DZLBYXL3.js";
|
|
6
6
|
import "./chunk-X7SQTCIQ.js";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-4D76AYZW.js";
|
|
8
8
|
import "./chunk-VY4Y5U57.js";
|
|
9
9
|
import "./chunk-MLKGABMK.js";
|
|
10
10
|
export {
|
package/dist/spec/checkpoint.cjs
CHANGED
|
@@ -312,11 +312,11 @@ function stageFromCheckpoint(checkpoint) {
|
|
|
312
312
|
return "setup";
|
|
313
313
|
}
|
|
314
314
|
function allowedDecisionsForStage(stage, checkpoint) {
|
|
315
|
-
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "blocked", "human_review"];
|
|
315
|
+
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "needs_recon", "blocked", "human_review"];
|
|
316
316
|
if (stage === "implement") return ["implementation_complete", "needs_author", "needs_recon", "blocked", "human_review"];
|
|
317
|
-
if (stage === "ship") return ["continue_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
318
|
-
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "blocked", "human_review"];
|
|
319
|
-
return ["continue_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
317
|
+
if (stage === "ship") return ["continue_stage", "retry_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
318
|
+
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
319
|
+
return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
320
320
|
}
|
|
321
321
|
function packetKindForStage(stage, checkpoint) {
|
|
322
322
|
if (stage === "recon") return "assess_recon";
|
package/dist/spec/checkpoint.js
CHANGED
package/dist/spec/index.cjs
CHANGED
|
@@ -535,11 +535,11 @@ function stageFromCheckpoint(checkpoint) {
|
|
|
535
535
|
return "setup";
|
|
536
536
|
}
|
|
537
537
|
function allowedDecisionsForStage(stage, checkpoint) {
|
|
538
|
-
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "blocked", "human_review"];
|
|
538
|
+
if (stage === "recon") return ["ready_for_author", "retry_recon", "recon_stuck", "needs_recon", "blocked", "human_review"];
|
|
539
539
|
if (stage === "implement") return ["implementation_complete", "needs_author", "needs_recon", "blocked", "human_review"];
|
|
540
|
-
if (stage === "ship") return ["continue_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
541
|
-
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "blocked", "human_review"];
|
|
542
|
-
return ["continue_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
540
|
+
if (stage === "ship") return ["continue_stage", "retry_stage", "needs_implementation", "needs_recon", "blocked", "human_review"];
|
|
541
|
+
if (checkpoint === "awaiting_stage_advance") return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
542
|
+
return ["continue_stage", "retry_stage", "needs_recon", "needs_implementation", "blocked", "human_review"];
|
|
543
543
|
}
|
|
544
544
|
function packetKindForStage(stage, checkpoint) {
|
|
545
545
|
if (stage === "recon") return "assess_recon";
|
package/dist/spec/index.js
CHANGED
|
@@ -10,11 +10,11 @@ import {
|
|
|
10
10
|
normalizePrLifecycleState,
|
|
11
11
|
normalizeRunParams,
|
|
12
12
|
setRunStatus
|
|
13
|
-
} from "../chunk-
|
|
13
|
+
} from "../chunk-Z7BSDAOE.js";
|
|
14
14
|
import {
|
|
15
15
|
RIDDLE_PROOF_RUN_CARD_VERSION,
|
|
16
16
|
createRiddleProofRunCard
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-DZLBYXL3.js";
|
|
18
18
|
import {
|
|
19
19
|
RIDDLE_PROOF_CHECKPOINT_PACKET_VERSION,
|
|
20
20
|
RIDDLE_PROOF_CHECKPOINT_RESPONSE_VERSION,
|
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
normalizeCheckpointResponse,
|
|
31
31
|
proofContractFromAuthorCheckpointResponse,
|
|
32
32
|
statePathsForRunState
|
|
33
|
-
} from "../chunk-
|
|
33
|
+
} from "../chunk-4D76AYZW.js";
|
|
34
34
|
import {
|
|
35
35
|
applyTerminalMetadata,
|
|
36
36
|
compactRecord,
|
package/dist/spec/run-card.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
RIDDLE_PROOF_RUN_CARD_VERSION,
|
|
3
3
|
createRiddleProofRunCard
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-DZLBYXL3.js";
|
|
5
|
+
import "../chunk-4D76AYZW.js";
|
|
6
6
|
import "../chunk-VY4Y5U57.js";
|
|
7
7
|
import "../chunk-MLKGABMK.js";
|
|
8
8
|
export {
|
package/dist/spec/state.js
CHANGED
|
@@ -9,9 +9,9 @@ import {
|
|
|
9
9
|
normalizePrLifecycleState,
|
|
10
10
|
normalizeRunParams,
|
|
11
11
|
setRunStatus
|
|
12
|
-
} from "../chunk-
|
|
13
|
-
import "../chunk-
|
|
14
|
-
import "../chunk-
|
|
12
|
+
} from "../chunk-Z7BSDAOE.js";
|
|
13
|
+
import "../chunk-DZLBYXL3.js";
|
|
14
|
+
import "../chunk-4D76AYZW.js";
|
|
15
15
|
import "../chunk-VY4Y5U57.js";
|
|
16
16
|
import "../chunk-MLKGABMK.js";
|
|
17
17
|
export {
|
package/dist/state.js
CHANGED
|
@@ -9,9 +9,9 @@ import {
|
|
|
9
9
|
normalizePrLifecycleState,
|
|
10
10
|
normalizeRunParams,
|
|
11
11
|
setRunStatus
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
12
|
+
} from "./chunk-Z7BSDAOE.js";
|
|
13
|
+
import "./chunk-DZLBYXL3.js";
|
|
14
|
+
import "./chunk-4D76AYZW.js";
|
|
15
15
|
import "./chunk-VY4Y5U57.js";
|
|
16
16
|
import "./chunk-MLKGABMK.js";
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@riddledc/riddle-proof",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.46",
|
|
4
4
|
"description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "RiddleDC",
|
|
@@ -232,6 +232,6 @@
|
|
|
232
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",
|
|
233
233
|
"clean": "rm -rf dist",
|
|
234
234
|
"lint": "echo 'lint: (not configured)'",
|
|
235
|
-
"test": "npm run build && node test.js && node proof-run.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))"
|
|
235
|
+
"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))"
|
|
236
236
|
}
|
|
237
237
|
}
|