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.
- package/CHANGELOG.md +12 -0
- package/dist/{chunk-OOMINNDQ.js → chunk-EY2VW6OI.js} +1 -1
- package/dist/cli-main.js +4 -4
- package/dist/openclaw-plugin/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-2HANITK2.js +0 -1737
- package/dist/chunk-3BELR4QM.js +0 -2357
- package/dist/chunk-3DMRH57X.js +0 -2365
- package/dist/chunk-5K2G3I2J.js +0 -1736
- package/dist/chunk-5RBQPXEB.js +0 -1822
- package/dist/chunk-5ZIY7EEF.js +0 -788
- package/dist/chunk-736UKYBP.js +0 -774
- package/dist/chunk-AJR3OWNP.js +0 -1912
- package/dist/chunk-BGBXNBNL.js +0 -1649
- package/dist/chunk-BHV7UGJX.js +0 -1650
- package/dist/chunk-C55MCAEN.js +0 -2508
- package/dist/chunk-DMPHUNM6.js +0 -1737
- package/dist/chunk-G4NHDXJC.js +0 -2355
- package/dist/chunk-I5EOJBPQ.js +0 -1737
- package/dist/chunk-IC7FMYA3.js +0 -2147
- package/dist/chunk-JSPUNQPG.js +0 -608
- package/dist/chunk-JWL64JUH.js +0 -1886
- package/dist/chunk-L7VVZDWF.js +0 -792
- package/dist/chunk-NUFBXKLH.js +0 -1912
- package/dist/chunk-ONK37URD.js +0 -1714
- package/dist/chunk-P2CUJC4C.js +0 -2524
- package/dist/chunk-RMYAYY4E.js +0 -1908
- package/dist/chunk-RYFTWDLF.js +0 -2147
- package/dist/chunk-TNJ7U5WA.js +0 -2356
- package/dist/chunk-TOCUZX2Y.js +0 -1786
- package/dist/chunk-TRZJU4DT.js +0 -2524
- package/dist/chunk-TW7FHRVW.js +0 -586
- package/dist/chunk-U3C43QWU.js +0 -2364
- package/dist/chunk-U6PVSJJY.js +0 -212
- package/dist/chunk-UQLMQXKT.js +0 -796
- package/dist/chunk-VJ2WB7JG.js +0 -608
- package/dist/chunk-ZSUYAFMS.js +0 -1912
- package/dist/chunk-ZX2D3JMQ.js +0 -1745
- 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-
|
|
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
|
|
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
|
|
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
|
|
8833
|
+
llmClient,
|
|
8834
8834
|
looseThreshold: options.looseThreshold,
|
|
8835
8835
|
idempotencyDays: 0,
|
|
8836
8836
|
verbose: options.verbose,
|