nexusmem 0.9.1 → 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 +13 -1
- package/README.md +550 -529
- package/dist/cli/index.js +336 -69
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,16 @@ 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
|
+
|
|
14
24
|
## [0.9.1] — 2026-08-29
|
|
15
25
|
|
|
16
26
|
Three ranking/retrieval correctness fixes, found and validated against a new 28-case retrieval-quality
|
|
@@ -565,7 +575,9 @@ First public release.
|
|
|
565
575
|
there is no local-model summarization pass, and the conversation collector has never been audited
|
|
566
576
|
for the stale-node bug that was found and fixed in the docs collector.
|
|
567
577
|
|
|
568
|
-
[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
|
|
569
581
|
[0.9.0]: https://github.com/yaminbkk/NexusMem/compare/v0.8.0...v0.9.0
|
|
570
582
|
[0.8.0]: https://github.com/yaminbkk/NexusMem/compare/v0.7.0...v0.8.0
|
|
571
583
|
[0.7.0]: https://github.com/yaminbkk/NexusMem/compare/v0.6.0...v0.7.0
|