blun-king-cli 2.1.0 → 2.1.1

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 +11 -0
  2. package/package.json +1 -1
package/bin/blun.js CHANGED
@@ -2289,6 +2289,17 @@ async function main() {
2289
2289
  // Box bottom
2290
2290
  process.stdout.write(C.brightBlue + " \u2570" + "\u2500".repeat(w - 2) + "\u256F" + C.reset + "\n"); lines++;
2291
2291
 
2292
+ // Status bar (permission mode + model + workdir)
2293
+ var permMode = getSetting("permissions.defaultMode") || "ask";
2294
+ var permIcon = permMode === "allow" ? "\u2714" : permMode === "deny" ? "\u2718" : "\u2753";
2295
+ var permColor = permMode === "allow" ? C.green : permMode === "deny" ? C.red : C.yellow;
2296
+ var modelName = config.model || "default";
2297
+ var wdShort = config.workdir ? path.basename(config.workdir) : "~";
2298
+ var statusLine = permColor + " " + permIcon + " " + permMode + C.reset + C.dim + " \u2502 " + C.reset +
2299
+ C.cyan + modelName + C.reset + C.dim + " \u2502 " + C.reset +
2300
+ C.dim + wdShort + C.reset;
2301
+ process.stdout.write(statusLine + "\x1b[K\n"); lines++;
2302
+
2292
2303
  // Menu
2293
2304
  if (menuVisible && menuItems.length > 0) {
2294
2305
  var show = menuItems.slice(0, 8);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blun-king-cli",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "BLUN King CLI — Premium KI Console",
5
5
  "bin": {
6
6
  "blun": "./bin/blun.js"