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.
Files changed (2) hide show
  1. package/blun.mjs +6 -0
  2. 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})`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blun-king-cli",
3
- "version": "9.1.366",
3
+ "version": "9.1.367",
4
4
  "description": "BLUN CLI - your own AI agent with a Telegram channel. Get it done. With BLUN.",
5
5
  "license": "MIT",
6
6
  "bin": {