agenr 0.9.31 → 0.9.33
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 +33 -0
- package/dist/chunk-5FXUAECD.js +8184 -0
- package/dist/chunk-KYR5SFP6.js +2742 -0
- package/dist/cli-main.js +1462 -1196
- package/dist/maintain-E63TFMVC.js +2163 -0
- package/dist/openclaw-plugin/index.d.ts +6 -3
- package/dist/openclaw-plugin/index.js +376 -291
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.33 - 2026-03-01
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Split `src/commands/ingest.ts` into focused modules under `src/commands/ingest/`:
|
|
7
|
+
- `index.ts`: ingest command orchestration and reporting
|
|
8
|
+
- `file-resolver.ts`: input glob and file resolution helpers
|
|
9
|
+
- `bulk-store.ts`: bulk-mode dedup and store pipeline
|
|
10
|
+
- `target-processor.ts`: per-file extract/store processing and watch offset sync
|
|
11
|
+
- `pipeline.ts`: worker pool, first pass, and retry orchestration
|
|
12
|
+
- `progress.ts`: progress rendering and byte formatting helpers
|
|
13
|
+
- `helpers.ts`: ingest-specific retry, cleanup, and ingest-log helpers
|
|
14
|
+
- Updated ingest imports across CLI, command runtime, and tests to use `src/commands/ingest/index.ts`.
|
|
15
|
+
- Added an ingest export coverage test to verify the public `runIngestCommand` API and type exports remain available after the split.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Ingest bulk mode now reports `StoreResult.total_entries` correctly as `added + skipped`.
|
|
19
|
+
- Ingest command now initializes `embeddingApiKey` without a redundant always-true guard.
|
|
20
|
+
- Progress rendering now uses ANSI clear-line (`\x1b[2K\r`) so shorter updates do not leave trailing characters.
|
|
21
|
+
- File resolver now treats `[` and `]` as literal characters and fails fast on missing file paths with explicit `File not found` or `Directory not found` errors.
|
|
22
|
+
- Force re-ingest and failed-file cleanup delete sequences now run inside transactions with rollback on failure.
|
|
23
|
+
- Ingest worker loop now catches unexpected per-target exceptions and records file-level errors instead of aborting the whole pass.
|
|
24
|
+
- Bulk ingest teardown now preserves both pipeline and cleanup errors by attaching cleanup failure as cause when both happen.
|
|
25
|
+
- Chunk-failure counters now avoid double-counting the same file across retries by applying per-file deltas.
|
|
26
|
+
|
|
27
|
+
## 0.9.32 - 2026-03-01
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- Split src/openclaw-plugin/index.ts (1,858 lines) into focused modules
|
|
31
|
+
- session-handoff.ts: transcript building, LLM summarization, handoff orchestration
|
|
32
|
+
- session-state.ts: session tracking, LRU, signal state
|
|
33
|
+
- plugin-db.ts: plugin database lifecycle
|
|
34
|
+
- index.ts: hook wiring and tool registration
|
|
35
|
+
|
|
3
36
|
## 0.9.31 - 2026-03-01
|
|
4
37
|
|
|
5
38
|
### Changed
|