blun-king-cli 9.1.506 → 9.1.507
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/CHANGELOG.md +6 -0
- package/LIESMICH.txt +6 -1
- package/README.md +6 -1
- package/blun.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 9.1.507 - 2026-08-30
|
|
4
|
+
|
|
5
|
+
- Instructs the Read tool to issue independent file and range reads together in one model response when several inputs may be useful.
|
|
6
|
+
- Reduces avoidable model round trips over large work contexts without changing Read execution, paging, permissions, or result handling.
|
|
7
|
+
- Adds a focused regression and keeps all TodoList, Telegram queue, bot-priority, tool-restoration, and package tests green.
|
|
8
|
+
|
|
3
9
|
## 9.1.506 - 2026-08-30
|
|
4
10
|
|
|
5
11
|
- Removes completed TodoList entries from the visible TUI immediately, matching the already-pruned persistent Todo store while retaining every unfinished item.
|
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.507
|
|
13
13
|
|
|
14
14
|
Start
|
|
15
15
|
-----
|
|
@@ -65,6 +65,11 @@ geschriebenen Entwurf zu löschen. Das gilt auch bei
|
|
|
65
65
|
Autovervollständigung, Geistervorschlägen, Bash-Eingabe und einer offenen
|
|
66
66
|
Mehrzeileneingabe.
|
|
67
67
|
|
|
68
|
+
Version 9.1.507 fordert das Modell im Read-Werkzeug ausdruecklich dazu auf,
|
|
69
|
+
voneinander unabhaengige Datei- und Bereichslesungen in einer Modellantwort zu
|
|
70
|
+
buendeln. Dadurch entfallen vermeidbare Modellrunden, ohne Ausfuehrung,
|
|
71
|
+
Seitennavigation, Berechtigungen oder Ergebnisbehandlung des Werkzeugs zu aendern.
|
|
72
|
+
|
|
68
73
|
Version 9.1.506 entfernt erledigte TodoList-Punkte sofort aus der sichtbaren
|
|
69
74
|
TUI und verwendet fuer den automatischen Wartungszug einen eigenstaendigen,
|
|
70
75
|
546 Zeichen langen Systemprompt statt des rund 19.000 Zeichen langen
|
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.507
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Reproduzierbares Staging und Packen
|
|
@@ -81,6 +81,11 @@ konkurrierenden Start zurückgewiesen und bleiben an der Spitze der
|
|
|
81
81
|
FIFO-Warteschlange. Für diesen normalen Wartestatus erscheint kein
|
|
82
82
|
`turn.agent_busy`-Fehler.
|
|
83
83
|
|
|
84
|
+
Version 9.1.507 fordert das Modell im Read-Werkzeug ausdrücklich dazu auf,
|
|
85
|
+
voneinander unabhängige Datei- und Bereichslesungen in einer Modellantwort zu
|
|
86
|
+
bündeln. Dadurch entfallen vermeidbare Modellrunden, ohne Ausführung,
|
|
87
|
+
Seitennavigation, Berechtigungen oder Ergebnisbehandlung des Werkzeugs zu ändern.
|
|
88
|
+
|
|
84
89
|
Version 9.1.506 entfernt erledigte TodoList-Punkte sofort aus der sichtbaren
|
|
85
90
|
TUI und verwendet fuer den automatischen Wartungszug einen eigenstaendigen,
|
|
86
91
|
546 Zeichen langen Systemprompt statt des rund 19.000 Zeichen langen
|
package/blun.mjs
CHANGED
|
@@ -259434,7 +259434,7 @@ var init_read = __esmMin((() => {
|
|
|
259434
259434
|
MAX_BYTES_KB: MAX_BYTES / 1024,
|
|
259435
259435
|
MAX_LINE_LENGTH
|
|
259436
259436
|
});
|
|
259437
|
-
read_default = "Read a known UTF-8 text file. Invalid paths error; directories are unsupported. Relative paths use the working directory; outside paths must be absolute. Use Glob for unknown names, Grep for content, and ReadMediaFile for media.\n\nEach call returns at most {{ MAX_LINES }} lines or {{ MAX_BYTES_KB }} KB and truncates lines beyond {{ MAX_LINE_LENGTH }} characters. Page large files with 1-based `line_offset` and `n_lines`; omit `n_lines` for the cap. Negative `line_offset` reads from the end, up to {{ MAX_LINES }} lines. A capped result names the exact next `line_offset
|
|
259437
|
+
read_default = "Read a known UTF-8 text file. Invalid paths error; directories are unsupported. Relative paths use the working directory; outside paths must be absolute. Use Glob for unknown names, Grep for content, and ReadMediaFile for media.\n\nEach call returns at most {{ MAX_LINES }} lines or {{ MAX_BYTES_KB }} KB and truncates lines beyond {{ MAX_LINE_LENGTH }} characters. Page large files with 1-based `line_offset` and `n_lines`; omit `n_lines` for the cap. Negative `line_offset` reads from the end, up to {{ MAX_LINES }} lines. A capped result names the exact next `line_offset`. Issue independent Read calls together in one response when several files or ranges may be useful.\n\nSensitive files such as `.env` and credential stores are refused; templates and public keys remain readable. Only UTF-8 text without NUL bytes is accepted; use Bash or an MCP tool for other binaries.\n\nOutput is `<line-number>\\t<content>` per line. The trailing `<system>...</system>` block is status, not file content. Pure CRLF appears as LF and is preserved by Edit. Mixed or lone carriage returns appear as `\\r` and require exact `Edit.old_string` escapes.";
|
|
259438
259438
|
READ_DESCRIPTION = renderPrompt(read_default, {
|
|
259439
259439
|
MAX_LINES: MAX_LINES$1,
|
|
259440
259440
|
MAX_BYTES_KB: MAX_BYTES / 1024,
|