agenr 0.4.0
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 +52 -0
- package/LICENSE +661 -0
- package/README.md +221 -0
- package/dist/cli-main.d.ts +213 -0
- package/dist/cli-main.js +13414 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +23 -0
- package/package.json +57 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- `_meta` table with schema version stamp for future migrations
|
|
7
|
+
- `agenr db version` command to print schema version metadata
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- `agenr db stats` output now includes schema version
|
|
11
|
+
|
|
12
|
+
## 0.4.0
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- `agenr context` command - generate context files for AI tool integration
|
|
16
|
+
- `agenr watch --context` - auto-refresh context file after each extraction cycle
|
|
17
|
+
- `agenr daemon` - launchd daemon management for background watching
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- Embedding dimensions upgraded from 512 to 1024 (text-embedding-3-small)
|
|
21
|
+
- `confidence` field renamed to `importance` for clarity
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
- Session-start recall no longer dominated by stale todos (todo staleness penalty)
|
|
25
|
+
- Consolidate releases DB lock after WAL checkpoint, not before
|
|
26
|
+
|
|
27
|
+
## 0.3.1
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
- `agenr consolidate` - knowledge base cleanup with rule-based and LLM-assisted merging
|
|
31
|
+
|
|
32
|
+
## 0.3.0
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
- `agenr watch` - live file watcher with auto-extraction
|
|
36
|
+
- `agenr ingest` - bulk ingestion of markdown, plaintext, and JSONL
|
|
37
|
+
- `agenr mcp` - MCP server for cross-tool AI memory (recall, store, extract)
|
|
38
|
+
|
|
39
|
+
## 0.2.0
|
|
40
|
+
|
|
41
|
+
### Added
|
|
42
|
+
- `agenr store` - smart dedup with cosine similarity bands
|
|
43
|
+
- `agenr recall` - recall with scoring and budget-constrained retrieval
|
|
44
|
+
- `agenr db` subcommands (stats, export, reset, path)
|
|
45
|
+
|
|
46
|
+
## 0.1.0
|
|
47
|
+
|
|
48
|
+
### Added
|
|
49
|
+
- `agenr extract` - structured knowledge extraction from conversation transcripts
|
|
50
|
+
- `agenr setup` - interactive configuration
|
|
51
|
+
- `agenr auth status` - live connection testing
|
|
52
|
+
- `agenr config` - configuration management
|