agenr 0.9.13 → 0.9.14

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.
Files changed (39) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/{chunk-OOMINNDQ.js → chunk-EY2VW6OI.js} +1 -1
  3. package/dist/cli-main.js +4 -4
  4. package/dist/openclaw-plugin/index.js +1 -1
  5. package/package.json +1 -1
  6. package/dist/chunk-2HANITK2.js +0 -1737
  7. package/dist/chunk-3BELR4QM.js +0 -2357
  8. package/dist/chunk-3DMRH57X.js +0 -2365
  9. package/dist/chunk-5K2G3I2J.js +0 -1736
  10. package/dist/chunk-5RBQPXEB.js +0 -1822
  11. package/dist/chunk-5ZIY7EEF.js +0 -788
  12. package/dist/chunk-736UKYBP.js +0 -774
  13. package/dist/chunk-AJR3OWNP.js +0 -1912
  14. package/dist/chunk-BGBXNBNL.js +0 -1649
  15. package/dist/chunk-BHV7UGJX.js +0 -1650
  16. package/dist/chunk-C55MCAEN.js +0 -2508
  17. package/dist/chunk-DMPHUNM6.js +0 -1737
  18. package/dist/chunk-G4NHDXJC.js +0 -2355
  19. package/dist/chunk-I5EOJBPQ.js +0 -1737
  20. package/dist/chunk-IC7FMYA3.js +0 -2147
  21. package/dist/chunk-JSPUNQPG.js +0 -608
  22. package/dist/chunk-JWL64JUH.js +0 -1886
  23. package/dist/chunk-L7VVZDWF.js +0 -792
  24. package/dist/chunk-NUFBXKLH.js +0 -1912
  25. package/dist/chunk-ONK37URD.js +0 -1714
  26. package/dist/chunk-P2CUJC4C.js +0 -2524
  27. package/dist/chunk-RMYAYY4E.js +0 -1908
  28. package/dist/chunk-RYFTWDLF.js +0 -2147
  29. package/dist/chunk-TNJ7U5WA.js +0 -2356
  30. package/dist/chunk-TOCUZX2Y.js +0 -1786
  31. package/dist/chunk-TRZJU4DT.js +0 -2524
  32. package/dist/chunk-TW7FHRVW.js +0 -586
  33. package/dist/chunk-U3C43QWU.js +0 -2364
  34. package/dist/chunk-U6PVSJJY.js +0 -212
  35. package/dist/chunk-UQLMQXKT.js +0 -796
  36. package/dist/chunk-VJ2WB7JG.js +0 -608
  37. package/dist/chunk-ZSUYAFMS.js +0 -1912
  38. package/dist/chunk-ZX2D3JMQ.js +0 -1745
  39. package/dist/co-recall-LNTNKBRK.js +0 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.14 - 2026-02-27
4
+
5
+ ### Fixed
6
+ - Fixed a pi-ai dual module registry bug that caused bundled `streamSimple`
7
+ calls and consolidate LLM dedup pre-screening to silently fail. `tsup`
8
+ split pi-ai imports across separate ESM instances with separate API
9
+ registries; `runSimpleStream` now imports from
10
+ `@mariozechner/pi-ai/dist/stream.js` so provider registration and stream
11
+ lookup use the same registry instance.
12
+ - Reverted the 0.9.13 workaround that made consolidate loose-band LLM dedup
13
+ opt-in only when `--loose-threshold` was set.
14
+
3
15
  ## 0.9.13 - 2026-02-27
4
16
 
5
17
  ### Changed
@@ -1158,7 +1158,7 @@ function resolveCredentials(params) {
1158
1158
  }
1159
1159
 
1160
1160
  // src/llm/stream.ts
1161
- import { streamSimple } from "@mariozechner/pi-ai";
1161
+ import { streamSimple } from "@mariozechner/pi-ai/dist/stream.js";
1162
1162
  function logVerbose(params, line) {
1163
1163
  if (!params.verbose) {
1164
1164
  return;
package/dist/cli-main.js CHANGED
@@ -49,7 +49,7 @@ import {
49
49
  setStoredCredential,
50
50
  walCheckpoint,
51
51
  writeConfig
52
- } from "./chunk-U3C43QWU.js";
52
+ } from "./chunk-EY2VW6OI.js";
53
53
  import {
54
54
  getCoRecallNeighbors,
55
55
  getTopCoRecallEdges,
@@ -8632,7 +8632,7 @@ async function runConsolidationOrchestrator(db, dbPath, llmClient, embeddingApiK
8632
8632
  typeFilter: type,
8633
8633
  platform,
8634
8634
  project,
8635
- llmClient: options.looseThreshold != null ? llmClient : void 0,
8635
+ llmClient,
8636
8636
  looseThreshold: options.looseThreshold,
8637
8637
  idempotencyDays: options.idempotencyDays,
8638
8638
  verbose: options.verbose,
@@ -8667,7 +8667,7 @@ async function runConsolidationOrchestrator(db, dbPath, llmClient, embeddingApiK
8667
8667
  maxClusterSize: phase2MaxClusterSize,
8668
8668
  platform,
8669
8669
  project,
8670
- llmClient: options.looseThreshold != null ? llmClient : void 0,
8670
+ llmClient,
8671
8671
  looseThreshold: options.looseThreshold,
8672
8672
  idempotencyDays: options.idempotencyDays,
8673
8673
  verbose: options.verbose,
@@ -8830,7 +8830,7 @@ async function runConsolidationOrchestrator(db, dbPath, llmClient, embeddingApiK
8830
8830
  maxClusterSize: phase1MaxClusterSize,
8831
8831
  platform,
8832
8832
  project,
8833
- llmClient: options.looseThreshold != null ? llmClient : void 0,
8833
+ llmClient,
8834
8834
  looseThreshold: options.looseThreshold,
8835
8835
  idempotencyDays: 0,
8836
8836
  verbose: options.verbose,
@@ -10,7 +10,7 @@ import {
10
10
  readConfig,
11
11
  resolveEmbeddingApiKey,
12
12
  runSimpleStream
13
- } from "../chunk-U3C43QWU.js";
13
+ } from "../chunk-EY2VW6OI.js";
14
14
  import {
15
15
  strengthenCoRecallEdges,
16
16
  toNumber,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agenr",
3
- "version": "0.9.13",
3
+ "version": "0.9.14",
4
4
  "openclaw": {
5
5
  "extensions": [
6
6
  "dist/openclaw-plugin/index.js"