blun-king-cli 9.1.597 → 9.1.599
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 +32 -0
- package/README.md +6 -0
- package/blun.mjs +672 -115
- package/package.json +1 -1
- package/worker-host.mjs +101 -61
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# BLUN King Changelog
|
|
2
2
|
|
|
3
|
+
## 9.1.599
|
|
4
|
+
|
|
5
|
+
Local candidate; not published or installed.
|
|
6
|
+
|
|
7
|
+
- Show localized personal-memory actions and complete previews of settings changes or remembered text, with terminal control characters escaped.
|
|
8
|
+
- Offer one-shot approval for valid memory changes and rejection only for invalid inputs.
|
|
9
|
+
- Prevent session-wide approval from automatically accepting queued requests that require individual approval.
|
|
10
|
+
|
|
11
|
+
## 9.1.598
|
|
12
|
+
|
|
13
|
+
- Distinguish lower-bound input counts from exact counts in upstream context rejections.
|
|
14
|
+
- Reduce the output allowance once for a lower-bound rejection without discarding messages or tools; retain cancellation and bounded retry behavior.
|
|
15
|
+
- Verify moving tokenization thresholds and exact-count counterexamples in the compiled program.
|
|
16
|
+
- Include the previously missing package notes for 9.1.595 through 9.1.597.
|
|
17
|
+
- Restore the original 150 rotating activity words without additional model requests.
|
|
18
|
+
- Keep media payloads out of AgentSpine's text-only hook input while preserving complete model attachments and policy checks.
|
|
19
|
+
|
|
20
|
+
## 9.1.597
|
|
21
|
+
|
|
22
|
+
- Classify explicit context-limit errors wrapped in HTTP 502 and allow one corrected request with a smaller output allowance.
|
|
23
|
+
- Preserve messages, tools, cancellation, and the rule against replaying an already-started response.
|
|
24
|
+
- Known limitation: this initial correction treated lower-bound input counts as exact. The additional correction is included in 9.1.598.
|
|
25
|
+
|
|
26
|
+
## 9.1.596
|
|
27
|
+
|
|
28
|
+
- Distinguish owner cancellation from automatic turn interruption.
|
|
29
|
+
|
|
30
|
+
## 9.1.595
|
|
31
|
+
|
|
32
|
+
- Defer tool and skill descriptions until they are needed, while keeping discovery available.
|
|
33
|
+
- Bound greeting context without deleting saved task history or weakening permissions.
|
|
34
|
+
|
|
3
35
|
## 9.1.594
|
|
4
36
|
|
|
5
37
|
- Preserve private Telegram replies while group messages wait, and retain slash-command routing.
|
package/README.md
CHANGED
|
@@ -40,6 +40,12 @@ eingerichtet. Die Anmeldung erfolgt anschließend in der
|
|
|
40
40
|
Konsole mit `/login` über den BLUN-OAuth-Server. Das Paket erzeugt keine
|
|
41
41
|
statische Anbieter- oder API-Key-Konfiguration.
|
|
42
42
|
|
|
43
|
+
## Persönliches Gedächtnis
|
|
44
|
+
|
|
45
|
+
Der lokale Kandidat 9.1.599 zeigt Freigaben für das persönliche Gedächtnis mit übersetzten Aktionstiteln und vollständigen Vorschauen der tatsächlichen Einstellungsänderungen oder des zu speichernden Textes. Gültige Änderungen lassen sich nur einmalig freigeben, ungültige Eingaben nur ablehnen. Eine Sitzungsfreigabe genehmigt solche wartenden Anfragen nicht automatisch. Steuerzeichen werden sichtbar maskiert; der Originalinhalt bleibt unverändert.
|
|
46
|
+
|
|
47
|
+
Diese Korrektur ist nicht in 9.1.598 enthalten. Veröffentlichung, Installation und Live-Abnahme von 9.1.599 stehen noch aus.
|
|
48
|
+
|
|
43
49
|
## Nachweisbare Arbeitsabläufe
|
|
44
50
|
|
|
45
51
|
Version 9.1.0 enthält sieben zusätzliche, getrennt nutzbare Befehlsgruppen:
|