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.
- package/dist/index.js +4 -3
- 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
|
|
53841
|
-
const
|
|
53842
|
-
const
|
|
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