blun-king-cli 9.1.366 → 9.1.367
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/blun.mjs +6 -0
- package/package.json +1 -1
package/blun.mjs
CHANGED
|
@@ -231103,6 +231103,12 @@ function buildGoalReminder(goal) {
|
|
|
231103
231103
|
lines.push("");
|
|
231104
231104
|
lines.push(`Status: ${goal.status}`);
|
|
231105
231105
|
lines.push(`Progress: ${goal.turnsUsed} continuation turns, ${goal.tokensUsed} tokens, ${formatElapsed$4(goal.wallClockMs)} elapsed.`);
|
|
231106
|
+
const checkpointProjection = projectActionCheckpoint(goal.actionCheckpoint);
|
|
231107
|
+
if (checkpointProjection !== null) {
|
|
231108
|
+
lines.push("");
|
|
231109
|
+
lines.push(checkpointProjection);
|
|
231110
|
+
lines.push("Execute the exact checkpointed next action before exploring alternatives. Update the checkpoint only after new evidence changes the verified state.");
|
|
231111
|
+
}
|
|
231106
231112
|
const budget = goal.budget;
|
|
231107
231113
|
const budgetLines = [];
|
|
231108
231114
|
if (budget.turnBudget !== null) budgetLines.push(`turns ${goal.turnsUsed}/${budget.turnBudget} (remaining ${budget.remainingTurns})`);
|