micro-models-agent 0.48.1 → 0.48.2

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/dist/main.js +5 -1
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -34100,7 +34100,7 @@ class Repl {
34100
34100
  pendingClipboardImage = null;
34101
34101
  exitOnClose = false;
34102
34102
  activePlan = null;
34103
- lastPlanSig = "";
34103
+ lastPlanSig = null;
34104
34104
  rl;
34105
34105
  agent;
34106
34106
  config;
@@ -34401,6 +34401,10 @@ ${t("image.clipboard_empty")}`));
34401
34401
  return;
34402
34402
  }
34403
34403
  this.activePlan = plan;
34404
+ if (this.lastPlanSig === null) {
34405
+ this.lastPlanSig = sig;
34406
+ return;
34407
+ }
34404
34408
  if (sig !== this.lastPlanSig) {
34405
34409
  this.lastPlanSig = sig;
34406
34410
  renderer.planBlock(formatPlanChecklist(plan));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "micro-models-agent",
3
- "version": "0.48.1",
3
+ "version": "0.48.2",
4
4
  "description": "Micro Models Agent (MMA) — LLM agent harness for small models (Qwen3.5-9B, 32K-64K context)",
5
5
  "type": "module",
6
6
  "bin": {