blun-king-cli 9.1.502 → 9.1.503
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 +5 -1
- package/README.md +5 -1
- package/blun.mjs +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 9.1.503 - 2026-08-30
|
|
4
|
+
|
|
5
|
+
- Gives the isolated TodoList maintenance message the complete provider message shape with an explicit empty `toolCalls` array.
|
|
6
|
+
- Prevents the real BLUN provider normalization path from aborting the maintenance turn with `TypeError: message.toolCalls is not iterable`.
|
|
7
|
+
- Adds a regression that iterates the generated message exactly as the provider boundary does before accepting the Todo-only request.
|
|
8
|
+
|
|
3
9
|
## 9.1.502 - 2026-08-30
|
|
4
10
|
|
|
5
11
|
- Runs proactive TodoList maintenance against one isolated Todo-only request instead of replaying the old work-tool history into the restricted maintenance step.
|
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.503
|
|
13
13
|
|
|
14
14
|
Start
|
|
15
15
|
-----
|
|
@@ -65,6 +65,10 @@ 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.503 ergaenzt die isolierte Wartungsnachricht um das vom Anbieterpfad
|
|
69
|
+
erwartete leere toolCalls-Feld. Dadurch erreicht der Wartungsschritt das Modell,
|
|
70
|
+
statt in der Nachrichten-Normalisierung mit einem TypeError abzubrechen.
|
|
71
|
+
|
|
68
72
|
Version 9.1.502 fuehrt die automatische Todo-Pflege in einem isolierten
|
|
69
73
|
TodoList-Schritt ohne alte Datei-, Shell- oder MCP-Aufrufe aus. Erledigte Punkte
|
|
70
74
|
werden unmittelbar aus der sichtbaren und gespeicherten Liste entfernt; offene,
|
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.503
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Reproduzierbares Staging und Packen
|
|
@@ -81,6 +81,10 @@ 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.503 ergänzt die isolierte Wartungsnachricht um das vom Anbieterpfad
|
|
85
|
+
erwartete leere `toolCalls`-Feld. Dadurch erreicht der Wartungsschritt das Modell,
|
|
86
|
+
statt in der Nachrichten-Normalisierung mit einem TypeError abzubrechen.
|
|
87
|
+
|
|
84
88
|
Version 9.1.502 führt die automatische Todo-Pflege in einem isolierten
|
|
85
89
|
TodoList-Schritt ohne alte Datei-, Shell- oder MCP-Aufrufe aus. Erledigte Punkte
|
|
86
90
|
werden unmittelbar aus der sichtbaren und gespeicherten Liste entfernt; offene,
|
package/blun.mjs
CHANGED
|
@@ -423285,7 +423285,8 @@ function buildGoalTodoMaintenanceMessages(agent, mode) {
|
|
|
423285
423285
|
].join("\n\n");
|
|
423286
423286
|
return [{
|
|
423287
423287
|
role: "user",
|
|
423288
|
-
content: [{ type: "text", text: request }]
|
|
423288
|
+
content: [{ type: "text", text: request }],
|
|
423289
|
+
toolCalls: []
|
|
423289
423290
|
}];
|
|
423290
423291
|
}
|
|
423291
423292
|
function enforceGoalTodoPolicy(agent, context) {
|