open-agents-ai 0.138.23 → 0.138.24

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
@@ -53837,9 +53837,10 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
53837
53837
  let restoredSessionContext = null;
53838
53838
  let sessionSudoPassword = null;
53839
53839
  let sudoPromptPending = false;
53840
- const idlePrompt = `${c2.bold(c2.white("\u276F "))}`;
53841
- const activePrompt = `${c2.bold(c2.white("+ "))}`;
53842
- const pausedPrompt = `${c2.bold(c2.yellow("| "))}`;
53840
+ const panelBg = "\x1B[48;5;234m";
53841
+ const idlePrompt = `${panelBg}${c2.bold(c2.white("\u276F "))}${panelBg}`;
53842
+ const activePrompt = `${panelBg}${c2.bold(c2.white("+ "))}${panelBg}`;
53843
+ const pausedPrompt = `${panelBg}${c2.bold(c2.yellow("| "))}${panelBg}`;
53843
53844
  const BUILTIN_COMMANDS = [
53844
53845
  "/help",
53845
53846
  "/quit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.138.23",
3
+ "version": "0.138.24",
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",