agenr 0.9.12 → 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 +19 -0
  2. package/dist/{chunk-OOMINNDQ.js → chunk-EY2VW6OI.js} +1 -1
  3. package/dist/cli-main.js +1 -1
  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,24 @@
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
+
15
+ ## 0.9.13 - 2026-02-27
16
+
17
+ ### Changed
18
+ - LLM dedup pre-screening in consolidate is now opt-in via --loose-threshold.
19
+ Without it, consolidate uses subject-aware auto-union in the loose band but
20
+ skips LLM calls, avoiding potentially hundreds of sequential API round-trips.
21
+
3
22
  ## 0.9.12 - 2026-02-27
4
23
 
5
24
  ### Fixed
@@ -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,
@@ -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.12",
3
+ "version": "0.9.14",
4
4
  "openclaw": {
5
5
  "extensions": [
6
6
  "dist/openclaw-plugin/index.js"