blun-king-cli 3.0.3 → 3.0.4

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/bin/blun.js +0 -13
  2. package/package.json +1 -1
package/bin/blun.js CHANGED
@@ -591,13 +591,6 @@ async function sendChat(message) {
591
591
  process.stdout.write("\r\x1b[2K" + C.dim + " " + BOX.bot + " " + thinkFrames[dots % 4] + " " + C.reset);
592
592
  dots++;
593
593
  }, 300);
594
- // Redraw input box below thinking line so user sees the prompt
595
- if (_globalDrawPrompt) {
596
- processing = false;
597
- _globalDrawPrompt();
598
- processing = true;
599
- }
600
-
601
594
  var resp = await apiCall("POST", "/chat", {
602
595
  message: message,
603
596
  history: chatHistory.slice(-10)
@@ -1530,12 +1523,6 @@ async function cmdAgent(args) {
1530
1523
  var phase = loop === 0 ? "planning" : "step " + loop + "/" + maxLoops;
1531
1524
  process.stdout.write("\r\x1b[2K" + C.dim + " " + BOX.bot + " [" + phase + "] working..." + C.reset);
1532
1525
  }, 300);
1533
- if (_globalDrawPrompt) {
1534
- processing = false;
1535
- _globalDrawPrompt();
1536
- processing = true;
1537
- }
1538
-
1539
1526
  while (loop < maxLoops) {
1540
1527
  loop++;
1541
1528
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blun-king-cli",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "description": "BLUN King CLI — Premium KI Console",
5
5
  "bin": {
6
6
  "blun": "./bin/blun.js"