blun-king-cli 9.1.68 → 9.1.69
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/LIESMICH.txt +21 -1
- package/README.md +24 -1
- package/bin/standard-tools-bootstrap.js +15 -4
- package/blun.mjs +0 -7
- package/package.json +1 -1
- package/release-planned-removals.json +1 -1
- package/standard-tools/manifest.json +13 -0
package/LIESMICH.txt
CHANGED
|
@@ -9,7 +9,7 @@ Installation
|
|
|
9
9
|
------------
|
|
10
10
|
Die geprüfte Version exakt global installieren:
|
|
11
11
|
|
|
12
|
-
npm install -g blun-king-cli@9.1.
|
|
12
|
+
npm install -g blun-king-cli@9.1.69
|
|
13
13
|
|
|
14
14
|
Start
|
|
15
15
|
-----
|
|
@@ -20,6 +20,26 @@ Start
|
|
|
20
20
|
Beide Startbefehle verwenden dieselbe Version, dasselbe Konto, dasselbe Modell
|
|
21
21
|
und dieselben Befehle.
|
|
22
22
|
|
|
23
|
+
Standard-MCPs und Eingabesteuerung in 9.1.69
|
|
24
|
+
--------------------------------------------
|
|
25
|
+
Beim Start richtet BLUN King agent-browser, blun-language-guard, context7 und
|
|
26
|
+
unter Windows windows-mcp automatisch ein. Erkannte Standardkonfigurationen
|
|
27
|
+
werden aktiviert; eigene, abweichende MCP-Befehle bleiben unverändert.
|
|
28
|
+
|
|
29
|
+
/mcp
|
|
30
|
+
blun tools list
|
|
31
|
+
blun tools enable context7
|
|
32
|
+
|
|
33
|
+
/mcp zeigt den Betriebszustand ohne internen Konfigurationspfad. In der
|
|
34
|
+
Detailansicht bleibt der Pfad für die Fehlersuche verfügbar.
|
|
35
|
+
|
|
36
|
+
Telegram-Nachrichten werden in Eingangsreihenfolge verarbeitet. Im Leerlauf
|
|
37
|
+
startet die Warteschlange selbstständig; während eines Werkzeuglaufs erfolgt
|
|
38
|
+
die Zustellung am nächsten geschützten Übergabepunkt. Strg+C und Esc brechen
|
|
39
|
+
einen aktiven Zug ab, ohne den geschriebenen Entwurf zu löschen. Das gilt auch
|
|
40
|
+
bei Autovervollständigung, Geistervorschlägen, Bash-Eingabe und einer offenen
|
|
41
|
+
Mehrzeileneingabe.
|
|
42
|
+
|
|
23
43
|
Zuverlässiger King-Start
|
|
24
44
|
-----------------------
|
|
25
45
|
Der Windows-Hilfsprozess für private Pfade übernimmt TEMP und TMP aus der
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Voraussetzung ist Node.js 24.15 oder neuer. Die geprüfte Version wird exakt
|
|
|
9
9
|
installiert:
|
|
10
10
|
|
|
11
11
|
```powershell
|
|
12
|
-
npm install -g blun-king-cli@9.1.
|
|
12
|
+
npm install -g blun-king-cli@9.1.69
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Reproduzierbares Staging und Packen
|
|
@@ -40,6 +40,29 @@ erzeugt `/telegram:access connect` einen einmaligen Code. `/connect CODE` im
|
|
|
40
40
|
gewünschten privaten Chat oder in einer Gruppe speichert Chat und Absender
|
|
41
41
|
intern; der Code verfällt nach zehn Minuten und ist nur einmal verwendbar.
|
|
42
42
|
|
|
43
|
+
## Standard-MCPs und Eingabesteuerung in 9.1.69
|
|
44
|
+
|
|
45
|
+
Beim Start richtet BLUN King `agent-browser`, `blun-language-guard`, `context7`
|
|
46
|
+
und unter Windows `windows-mcp` automatisch ein und aktiviert erkannte
|
|
47
|
+
Standardkonfigurationen wieder. Eigene, abweichende MCP-Befehle bleiben
|
|
48
|
+
unverändert. `/mcp` zeigt den Betriebszustand ohne internen Konfigurationspfad;
|
|
49
|
+
in der Detailansicht bleibt der Pfad für die Fehlersuche verfügbar.
|
|
50
|
+
|
|
51
|
+
Beispiele:
|
|
52
|
+
|
|
53
|
+
```text
|
|
54
|
+
/mcp
|
|
55
|
+
blun tools list
|
|
56
|
+
blun tools enable context7
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Telegram-Nachrichten werden in Eingangsreihenfolge verarbeitet. Trifft eine
|
|
60
|
+
Nachricht im Leerlauf ein, startet die Warteschlange selbstständig; während
|
|
61
|
+
eines Werkzeuglaufs wird sie am nächsten geschützten Übergabepunkt eingefügt.
|
|
62
|
+
`Strg+C` und `Esc` brechen einen aktiven Zug zuverlässig ab, ohne den bereits
|
|
63
|
+
geschriebenen Entwurf zu löschen. Das gilt auch bei Autovervollständigung,
|
|
64
|
+
Geistervorschlägen, Bash-Eingabe und einer noch offenen Mehrzeileneingabe.
|
|
65
|
+
|
|
43
66
|
## Zuverlässiger King-Start
|
|
44
67
|
|
|
45
68
|
Der Windows-Hilfsprozess für private Pfade übernimmt `TEMP` und `TMP` aus der
|
|
@@ -81,16 +81,27 @@ function sameStringArray(left, right) {
|
|
|
81
81
|
&& left.every((value, index) => value === right[index]);
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
function recognizedBundledServer(current, expected) {
|
|
85
|
-
|
|
86
|
-
|
|
84
|
+
function recognizedBundledServer(name, current, expected) {
|
|
85
|
+
if (!isObject(current)) return false;
|
|
86
|
+
const exact = current.transport === expected.transport
|
|
87
87
|
&& current.command === expected.command
|
|
88
88
|
&& sameStringArray(current.args, expected.args);
|
|
89
|
+
if (exact) return true;
|
|
90
|
+
return name === 'context7'
|
|
91
|
+
&& current.transport === 'stdio'
|
|
92
|
+
&& current.command === 'npx'
|
|
93
|
+
&& Array.isArray(current.args)
|
|
94
|
+
&& current.args[0] === '-y'
|
|
95
|
+
&& /^@upstash\/context7-mcp(?:@[^\s]+)?$/u.test(current.args[1] ?? '');
|
|
89
96
|
}
|
|
90
97
|
|
|
91
98
|
function migrateBundledTimeouts(name, current, expected) {
|
|
92
|
-
if (!recognizedBundledServer(current, expected)) return false;
|
|
99
|
+
if (!recognizedBundledServer(name, current, expected)) return false;
|
|
93
100
|
let changed = false;
|
|
101
|
+
if (current.enabled === false) {
|
|
102
|
+
current.enabled = true;
|
|
103
|
+
changed = true;
|
|
104
|
+
}
|
|
94
105
|
if (name === 'agent-browser') {
|
|
95
106
|
if (current.startupTimeoutMs === 30_000) {
|
|
96
107
|
current.startupTimeoutMs = expected.startupTimeoutMs;
|
package/blun.mjs
CHANGED
|
@@ -421937,8 +421937,6 @@ var McpManagerComponent = class extends Container {
|
|
|
421937
421937
|
const name = selected ? currentTheme.boldFg("primary", server.name) : currentTheme.fg("text", server.name);
|
|
421938
421938
|
const status = currentTheme.fg(statusTone(server.status), statusLabel$2(server.status));
|
|
421939
421939
|
lines.push(` ${pointer} ${name} ${status} ${currentTheme.fg("textMuted", toolCount(server))}`);
|
|
421940
|
-
const origin = originDescription(server);
|
|
421941
|
-
if (origin !== void 0) lines.push(currentTheme.fg("textMuted", ` ${origin}`));
|
|
421942
421940
|
}
|
|
421943
421941
|
if (view.items.length === 0) lines.push(currentTheme.fg("textMuted", ` ${uiText("common.noMatches")}`));
|
|
421944
421942
|
lines.push("");
|
|
@@ -422055,10 +422053,6 @@ function groupLabel(group) {
|
|
|
422055
422053
|
function sourceLabel(group) {
|
|
422056
422054
|
return uiText(`mcp.source.${group}`);
|
|
422057
422055
|
}
|
|
422058
|
-
function originDescription(server) {
|
|
422059
|
-
if (server.source === "plugin") return uiText("mcp.origin.plugin", { id: server.pluginId ?? uiText("mcp.unknown") });
|
|
422060
|
-
return server.configPath === void 0 ? void 0 : sanitizeMcpDisplayText(server.configPath);
|
|
422061
|
-
}
|
|
422062
422056
|
function detailRows(server) {
|
|
422063
422057
|
const rows = [
|
|
422064
422058
|
[uiText("mcp.detail.status"), statusLabel$2(server.status)],
|
|
@@ -514662,7 +514656,6 @@ var BlunTUI = class {
|
|
|
514662
514656
|
...envelope.meta["image_path"] !== void 0 ? { channelImagePath: envelope.meta["image_path"] } : {}
|
|
514663
514657
|
});
|
|
514664
514658
|
this.syncChannelQueueDeadline();
|
|
514665
|
-
this.channelQueueDeadline.requestDeliveryNow();
|
|
514666
514659
|
this.scheduleQueueDrain();
|
|
514667
514660
|
this.track("input_queue");
|
|
514668
514661
|
this.updateQueueDisplay();
|
package/package.json
CHANGED
|
@@ -31,6 +31,19 @@
|
|
|
31
31
|
"toolTimeoutMs": 120000
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
|
+
"context7": {
|
|
35
|
+
"owner": "user-mcp",
|
|
36
|
+
"version": "latest",
|
|
37
|
+
"detectTokens": ["context7", "@upstash/context7-mcp"],
|
|
38
|
+
"config": {
|
|
39
|
+
"transport": "stdio",
|
|
40
|
+
"command": "npx",
|
|
41
|
+
"args": ["-y", "@upstash/context7-mcp@latest"],
|
|
42
|
+
"enabled": false,
|
|
43
|
+
"startupTimeoutMs": 40000,
|
|
44
|
+
"toolTimeoutMs": 120000
|
|
45
|
+
}
|
|
46
|
+
},
|
|
34
47
|
"telegram": {
|
|
35
48
|
"owner": "managed-plugin",
|
|
36
49
|
"version": "bundled",
|