blun-king-cli 9.1.578 → 9.1.579

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## 9.1.579 - Research capture ordering
2
+
3
+ - Saved research passages with equal relevance are ordered by their actual UTC retrieval time, including mixed second and millisecond timestamp formats.
4
+ - Duplicate passages retain the newest capture's provenance. Equal instants retain the existing stable order; relevance still takes priority over time.
5
+ - Existing snapshots are not rewritten or called fresh. This is a local research-recall correction, not a search ranking, model latency or Telegram routing change.
6
+ - Includes the 9.1.578 Telegram reply repair and bounded thinking-only retry unchanged.
7
+
1
8
  ## 9.1.578 - 2026-09-08
2
9
 
3
10
  - Bound thinking-only recovery to one additional attempt per step. A second thinking-only timeout stops that step instead of repeatedly issuing the same request. The chosen reasoning effort and existing timeout remain unchanged; this is not a promise of faster first-token response times.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blun-king-cli",
3
- "version": "9.1.578",
3
+ "version": "9.1.579",
4
4
  "description": "BLUN CLI - your own AI agent with a Telegram channel. Get it done. With BLUN.",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -209,7 +209,7 @@ function query({ home, project, query: question, limit = 5, maxChars = 8000, off
209
209
  output.diagnostics = [...new Set(output.diagnostics)];
210
210
  if (output.diagnostics.length) output.availability = 'partial';
211
211
  const seen = new Set();
212
- for (const match of found.sort((a, b) => b.rank - a.rank || b.retrievedAt.localeCompare(a.retrievedAt))) {
212
+ for (const match of found.sort((a, b) => b.rank - a.rank || Date.parse(b.retrievedAt) - Date.parse(a.retrievedAt))) {
213
213
  const key = revisionKey(match) + '\0' + match.textSha256;
214
214
  if (seen.has(key)) continue;
215
215
  seen.add(key);