nexusmem 0.9.0 → 0.10.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 +40 -1
- package/README.md +550 -529
- package/dist/cli/index.js +368 -80
- package/dist/cli/index.js.map +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,43 @@ built from, matched by publish timestamp: `v0.1.0` → `67a4776`, `v0.1.1` → `
|
|
|
11
11
|
|
|
12
12
|
No unreleased changes yet.
|
|
13
13
|
|
|
14
|
+
## [0.10.0] — 2026-08-29
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- New opt-in `github` source: `sources.github.enabled`, `nexusmem scan-github`, `sync --github`.
|
|
19
|
+
Reads issue/PR threads (title, body, comments) from this repo's github.com remote via the `gh`
|
|
20
|
+
CLI, one `github_thread` node per thread. First source with a real external dependency (needs `gh`
|
|
21
|
+
installed and authenticated) rather than reading only what's already on disk; a missing remote or
|
|
22
|
+
an unreachable `gh` is a silent no-op, matching how an unreachable Ollama degrades elsewhere.
|
|
23
|
+
|
|
24
|
+
## [0.9.1] — 2026-08-29
|
|
25
|
+
|
|
26
|
+
Three ranking/retrieval correctness fixes, found and validated against a new 28-case retrieval-quality
|
|
27
|
+
eval harness (`npm run eval`, dev-only, not part of the published package).
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- `nodes_vec` (vector search) over-fetched `k` globally, then filtered by `project_id` after the join —
|
|
32
|
+
a heuristic, not a guarantee. A sparse project sharing `memory.db` with a much larger one could have
|
|
33
|
+
every true nearest neighbour fall outside the over-fetch window and get silently dropped (reproduced:
|
|
34
|
+
495 rows in one project + 5 in another, global `k=50` surfaced 0 of the 5). Schema V11 gives `nodes_vec`
|
|
35
|
+
a `PARTITION KEY` on `project_id` (`sqlite-vec` 0.1.9+), pushing the equality filter into the k-NN
|
|
36
|
+
search itself so cross-project exactness is now guaranteed, not probable. Migrates existing databases
|
|
37
|
+
automatically on next `sync`/`query`. `--as-of` date filtering still over-fetches — only the
|
|
38
|
+
`project_id` dimension was ever a correctness guarantee.
|
|
39
|
+
- `MAX_PRIOR_OVERTURN` (the cap on how far a recency/signal prior may overturn relevance) raised
|
|
40
|
+
`2 → 2.4`, the highest value that both improves eval MRR (0.924→0.943) and still passes every legacy
|
|
41
|
+
regression test guarding against the original same-day-fix-commits bug this constant exists to bound.
|
|
42
|
+
- A commit's `code_diff` siblings (one node per changed file, all sharing the same `ts`) could crowd a
|
|
43
|
+
packed result and bury that commit's own `git_commit` node — its answer — several ranks down. Now
|
|
44
|
+
capped per commit, matching the existing `conversation_turn`/`doc_section` family cap.
|
|
45
|
+
- `package.json`/`tsconfig.json` diffs were ranking above more relevant results when a changed file's
|
|
46
|
+
path happened to echo its commit's conventional-commit scope (title is weighted 10x body, so the scope
|
|
47
|
+
word counted twice). Down-weighted as mechanical wiring, same reasoning `TEST_PATHS` already applies to
|
|
48
|
+
tests. Only affects nodes ingested from here on — existing manifest/config diffs need `sync --rebuild`
|
|
49
|
+
to get the corrected signal retroactively.
|
|
50
|
+
|
|
14
51
|
## [0.9.0] — 2026-08-27
|
|
15
52
|
|
|
16
53
|
Closes the three remaining mechanisms from a recurring external review (Simon Strandgaard, Agent
|
|
@@ -538,7 +575,9 @@ First public release.
|
|
|
538
575
|
there is no local-model summarization pass, and the conversation collector has never been audited
|
|
539
576
|
for the stale-node bug that was found and fixed in the docs collector.
|
|
540
577
|
|
|
541
|
-
[Unreleased]: https://github.com/yaminbkk/NexusMem/compare/v0.
|
|
578
|
+
[Unreleased]: https://github.com/yaminbkk/NexusMem/compare/v0.10.0...HEAD
|
|
579
|
+
[0.10.0]: https://github.com/yaminbkk/NexusMem/compare/v0.9.1...v0.10.0
|
|
580
|
+
[0.9.1]: https://github.com/yaminbkk/NexusMem/compare/v0.9.0...v0.9.1
|
|
542
581
|
[0.9.0]: https://github.com/yaminbkk/NexusMem/compare/v0.8.0...v0.9.0
|
|
543
582
|
[0.8.0]: https://github.com/yaminbkk/NexusMem/compare/v0.7.0...v0.8.0
|
|
544
583
|
[0.7.0]: https://github.com/yaminbkk/NexusMem/compare/v0.6.0...v0.7.0
|