blun-king-cli 7.3.1 → 7.3.2
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/lib/ui.js +12 -0
- package/package.json +1 -1
package/lib/ui.js
CHANGED
|
@@ -60,21 +60,33 @@ function setTheme(name) {
|
|
|
60
60
|
|
|
61
61
|
// ── Settings Fields ───────────────────────────────────────
|
|
62
62
|
var SETTINGS_FIELDS = [
|
|
63
|
+
// Core
|
|
63
64
|
{ section: "Core", key: "model", label: "Model", values: ["auto", "gemma4", "claude", "llama"], help: "Welches Modell standardmaessig antwortet." },
|
|
64
65
|
{ section: "Core", key: "language", label: "Language", values: ["de", "en", "tr", "fr", "es"], help: "Primaere Antwortsprache." },
|
|
65
66
|
{ section: "Core", key: "permissionMode", label: "Permission", values: ["safe", "normal", "god"], help: "Welche Aktionen BLUN ausfuehren darf." },
|
|
67
|
+
{ section: "Core", key: "defaultMode", label: "Mode", values: ["agent", "chat"], help: "Agent-Modus oder reiner Chat." },
|
|
66
68
|
{ section: "Core", key: "maxTokens", label: "Max Tokens", values: [1024, 2048, 4096, 8192, 16384], help: "Maximale Antwortlaenge." },
|
|
69
|
+
// Style
|
|
70
|
+
{ section: "Style", key: "styleMode", label: "Style", values: ["normal", "learning", "concise", "explaining", "formal"], help: "Wie BLUN formuliert." },
|
|
71
|
+
{ section: "Style", key: "latencyMode", label: "Latency", values: ["fast", "balanced", "deep"], help: "Schnelle vs. gruendliche Antworten." },
|
|
72
|
+
{ section: "Style", key: "toolMode", label: "Tools", values: ["smart", "guided", "direct"], help: "Wie offensiv BLUN Werkzeuge nutzt." },
|
|
73
|
+
// Console
|
|
67
74
|
{ section: "Console", key: "theme", label: "Theme", values: ["neon", "midnight", "minimal"], help: "Farbstimmung der Konsole." },
|
|
68
75
|
{ section: "Console", key: "streamLevel", label: "Stream", values: ["off", "normal", "verbose"], help: "Wie Antworten angezeigt werden." },
|
|
76
|
+
{ section: "Console", key: "thinkingVisibility", label: "Thinking", values: ["off", "compact", "full"], help: "Denk-/Status-Infos anzeigen." },
|
|
69
77
|
{ section: "Console", key: "markdownRendering", label: "Markdown", values: [true, false], help: "Markdown in Antworten rendern." },
|
|
70
78
|
{ section: "Console", key: "codeHighlight", label: "Syntax", values: [true, false], help: "Code-Syntax-Highlighting." },
|
|
71
79
|
{ section: "Console", key: "statuslineMode", label: "Statusline", values: ["compact", "full", "off"], help: "Wie detailliert die Statuszeile ist." },
|
|
80
|
+
// Runtime
|
|
72
81
|
{ section: "Runtime", key: "voice", label: "Voice", values: [true, false], help: "Voice-Features an/aus." },
|
|
73
82
|
{ section: "Runtime", key: "autoSave", label: "AutoSave", values: [true, false], help: "Chat-Verlauf automatisch speichern." },
|
|
74
83
|
{ section: "Runtime", key: "contextMemory", label: "Memory", values: [true, false], help: "Kontext aus vorherigen Chats nutzen." },
|
|
84
|
+
{ section: "Runtime", key: "historyWindow", label: "History", values: [4, 8, 12, 20], help: "Wie viel Session-Kontext pro Request." },
|
|
75
85
|
{ section: "Runtime", key: "fileAccess", label: "File Access", values: ["ask", "auto", "off"], help: "Dateizugriff: fragen/automatisch/aus." },
|
|
76
86
|
{ section: "Runtime", key: "shellAccess", label: "Shell", values: ["ask", "auto", "off"], help: "Shell-Befehle: fragen/automatisch/aus." },
|
|
87
|
+
// Workflow
|
|
77
88
|
{ section: "Workflow", key: "costVisibility", label: "Cost", values: [true, false], help: "Token-/Kosten-Footer anzeigen." },
|
|
89
|
+
{ section: "Workflow", key: "suggestionsEnabled", label: "Suggest", values: [true, false], help: "Slash-Command-Vorschlaege anzeigen." },
|
|
78
90
|
{ section: "Workflow", key: "autoCommit", label: "AutoCommit", values: [true, false], help: "Automatisch Git-Commits erstellen." },
|
|
79
91
|
{ section: "Workflow", key: "codeReview", label: "Review", values: [true, false], help: "Code-Review vor Aenderungen." },
|
|
80
92
|
{ section: "Workflow", key: "notifications", label: "Notify", values: [true, false], help: "Desktop-Benachrichtigungen." },
|