@riddledc/riddle-proof 0.5.31 → 0.5.32
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.
|
@@ -524,7 +524,8 @@ async function handleImplementation(request, state, result, agent) {
|
|
|
524
524
|
});
|
|
525
525
|
return {
|
|
526
526
|
next: compactRecord({
|
|
527
|
-
|
|
527
|
+
action: "run",
|
|
528
|
+
state_path: String(result.state_path || ""),
|
|
528
529
|
advance_stage: "implement",
|
|
529
530
|
implementation_notes: implementation.implementationNotes || implementation.summary
|
|
530
531
|
})
|
package/dist/engine-harness.cjs
CHANGED
|
@@ -1716,7 +1716,7 @@ async function executeWorkflow(params, pluginConfig, resolvedConfig) {
|
|
|
1716
1716
|
}
|
|
1717
1717
|
state = readState(config.statePath);
|
|
1718
1718
|
const continuedStage = params.continue_from_checkpoint ? checkpointContinueStage(state) : null;
|
|
1719
|
-
if (params.continue_from_checkpoint && !continuedStage) {
|
|
1719
|
+
if (params.continue_from_checkpoint && !params.advance_stage && !continuedStage) {
|
|
1720
1720
|
const recommended = recommendedAdvanceStage(state);
|
|
1721
1721
|
return checkpoint(
|
|
1722
1722
|
state?.active_checkpoint_stage || recommended || "recon",
|
|
@@ -3525,7 +3525,8 @@ async function handleImplementation(request, state, result, agent) {
|
|
|
3525
3525
|
});
|
|
3526
3526
|
return {
|
|
3527
3527
|
next: compactRecord({
|
|
3528
|
-
|
|
3528
|
+
action: "run",
|
|
3529
|
+
state_path: String(result.state_path || ""),
|
|
3529
3530
|
advance_stage: "implement",
|
|
3530
3531
|
implementation_notes: implementation.implementationNotes || implementation.summary
|
|
3531
3532
|
})
|
package/dist/engine-harness.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1716,7 +1716,7 @@ async function executeWorkflow(params, pluginConfig, resolvedConfig) {
|
|
|
1716
1716
|
}
|
|
1717
1717
|
state = readState(config.statePath);
|
|
1718
1718
|
const continuedStage = params.continue_from_checkpoint ? checkpointContinueStage(state) : null;
|
|
1719
|
-
if (params.continue_from_checkpoint && !continuedStage) {
|
|
1719
|
+
if (params.continue_from_checkpoint && !params.advance_stage && !continuedStage) {
|
|
1720
1720
|
const recommended = recommendedAdvanceStage(state);
|
|
1721
1721
|
return checkpoint(
|
|
1722
1722
|
state?.active_checkpoint_stage || recommended || "recon",
|
|
@@ -4081,7 +4081,8 @@ async function handleImplementation(request, state, result, agent) {
|
|
|
4081
4081
|
});
|
|
4082
4082
|
return {
|
|
4083
4083
|
next: compactRecord({
|
|
4084
|
-
|
|
4084
|
+
action: "run",
|
|
4085
|
+
state_path: String(result.state_path || ""),
|
|
4085
4086
|
advance_stage: "implement",
|
|
4086
4087
|
implementation_notes: implementation.implementationNotes || implementation.summary
|
|
4087
4088
|
})
|
package/dist/index.js
CHANGED
|
@@ -1714,7 +1714,7 @@ async function executeWorkflow(params, pluginConfig, resolvedConfig) {
|
|
|
1714
1714
|
}
|
|
1715
1715
|
state = readState(config.statePath);
|
|
1716
1716
|
const continuedStage = params.continue_from_checkpoint ? checkpointContinueStage(state) : null;
|
|
1717
|
-
if (params.continue_from_checkpoint && !continuedStage) {
|
|
1717
|
+
if (params.continue_from_checkpoint && !params.advance_stage && !continuedStage) {
|
|
1718
1718
|
const recommended = recommendedAdvanceStage(state);
|
|
1719
1719
|
return checkpoint(
|
|
1720
1720
|
state?.active_checkpoint_stage || recommended || "recon",
|
package/dist/proof-run-engine.js
CHANGED
|
@@ -862,7 +862,7 @@ async function executeWorkflow(params, pluginConfig, resolvedConfig) {
|
|
|
862
862
|
}
|
|
863
863
|
state = readState(config.statePath);
|
|
864
864
|
const continuedStage = params.continue_from_checkpoint ? checkpointContinueStage(state) : null;
|
|
865
|
-
if (params.continue_from_checkpoint && !continuedStage) {
|
|
865
|
+
if (params.continue_from_checkpoint && !params.advance_stage && !continuedStage) {
|
|
866
866
|
const recommended = recommendedAdvanceStage(state);
|
|
867
867
|
return checkpoint(
|
|
868
868
|
state?.active_checkpoint_stage || recommended || "recon",
|