open-agents-ai 0.187.295 → 0.187.296

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/index.js +4 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -330855,9 +330855,10 @@ ${entry.fullContent}`
330855
330855
  case "debug_littleman":
330856
330856
  if (event.littlemanAction) {
330857
330857
  const lm = event.littlemanAction;
330858
- const intervention = lm.intervention ? ` | INTERVENTION: ${lm.intervention}` : "";
330859
- const compact = `\x1B[38;5;178m[littleman] ${lm.recentSuccesses} ok, ${lm.recentFailures} err${intervention}\x1B[0m`;
330860
- contentWrite(() => renderInfo2(compact));
330858
+ if (lm.intervention) {
330859
+ const simple = `⚠ ${lm.intervention}`;
330860
+ contentWrite(() => renderInfo2(simple));
330861
+ }
330861
330862
  if (lm.details) {
330862
330863
  littlemanBuffer.push(lm.details);
330863
330864
  if (littlemanBuffer.length > 50) littlemanBuffer.splice(0, littlemanBuffer.length - 50);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.295",
3
+ "version": "0.187.296",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",