agenr 0.9.35 → 0.9.37

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,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.37 - 2026-03-01
4
+
5
+ ### Added
6
+ - Added `src/utils/logger.ts` with a shared `createLogger` factory and global verbose controls (`setVerbose`, `isVerbose`) to standardize stderr logging output.
7
+ - Added `tests/utils/logger.test.ts` coverage for logger method shape and stderr output behavior for `info`, `warn`, `error`, and `debug`.
8
+
9
+ ### Changed
10
+ - Replaced ad-hoc logging in targeted modules with the shared logger factory, including maintain helpers, OpenClaw plugin debug/handoff paths, DB conflict and contradiction flows, store pipeline diagnostics, claim extraction diagnostics, whole-file and extractor warnings, shutdown logging, and selected command-level logging paths.
11
+ - Updated maintain LLM logging to use a dedicated `maintain-llm` logger prefix instead of raw prefixed strings.
12
+
13
+ ## 0.9.36 - 2026-03-01
14
+
15
+ ### Changed
16
+ - Split `src/cli-main.ts` into focused command registration modules under `src/cli/`:
17
+ - `helpers.ts`: shared CLI helpers (`stderrLine`, `assertReadableFile`, `createEmptyStats`, `formatTaskModelLines`, `toReportKey`)
18
+ - `extract.ts`: extract types (`ExtractCommandOptions`, `CliDeps`), `runExtractCommand`, and extract command registration
19
+ - `store.ts`, `recall.ts`, `retire.ts`, `review.ts`, `edges.ts`, `eval.ts`, `watch.ts`, `todo.ts`, `ingest.ts`, `benchmark.ts`, `consolidate.ts`, `maintain.ts`, `conflicts.ts`, `backfill.ts`, `init.ts`, `mcp.ts`, `watcher.ts`, `db.ts`, `setup.ts`, `config.ts`, `auth.ts`: command-specific registration builders
20
+ - Slimmed `src/cli-main.ts` to a composition root that wires `register*Command` functions and keeps the root status action inline.
21
+ - Preserved `src/cli-main.ts` public extract exports by re-exporting `ExtractCommandOptions`, `CliDeps`, and `runExtractCommand` from `src/cli/extract.ts`.
22
+ - Added CLI registration coverage test to verify `createProgram()` registers all expected top-level commands.
23
+
3
24
  ## 0.9.35 - 2026-03-01
4
25
 
5
26
  ### Changed