nexusmem 0.10.3 → 0.10.4
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 +22 -3
- package/README.md +7 -0
- package/dist/cli/index.js +600 -160
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,9 +7,28 @@ Tags were added retroactively on 2026-08-11 and point at the exact commits the n
|
|
|
7
7
|
built from, matched by publish timestamp: `v0.1.0` → `67a4776`, `v0.1.1` → `809e62c`,
|
|
8
8
|
`v0.1.2` → `b22a3b0`.
|
|
9
9
|
|
|
10
|
-
## [Unreleased]
|
|
11
|
-
|
|
12
|
-
No unreleased changes yet.
|
|
10
|
+
## [Unreleased]
|
|
11
|
+
|
|
12
|
+
No unreleased changes yet.
|
|
13
|
+
|
|
14
|
+
## [0.10.4] — 2026-09-07
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- Fresh-project syncs classify reconstructable Git commits and diffs, timestamped shell history,
|
|
19
|
+
and already-supported opt-in coding-agent history as `backfilled` only when a trustworthy source
|
|
20
|
+
timestamp predates NexusMem initialization. Trustworthily timestamped events between initialization
|
|
21
|
+
and sync time are `observed`. Tracked Markdown, untimestamped shell history, and other records that
|
|
22
|
+
cannot be classified remain `unknown`. Retrieval exposes this origin alongside the existing evidence
|
|
23
|
+
provenance.
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- Historical shell entries no longer receive timestamps inferred from history-file mtimes.
|
|
28
|
+
Missing timestamp, cwd, exit code, and duration metadata remain null, and incomplete shell
|
|
29
|
+
evidence is excluded from failure-to-fix correlation.
|
|
30
|
+
- Schema V13 adds `nodes.capture_mode` and nullable `nodes.source_ts`. Existing approximate
|
|
31
|
+
shell timestamps and document mtimes migrate to a null `source_ts`; other existing event timestamps are retained.
|
|
13
32
|
|
|
14
33
|
## [0.10.3] — 2026-08-31
|
|
15
34
|
|
package/README.md
CHANGED
|
@@ -23,6 +23,8 @@ The shell history is the part worth caring about. Git tells an agent what shippe
|
|
|
23
23
|
tells it what was attempted, in what order, and which commands exited non-zero. That information
|
|
24
24
|
exists nowhere else, and it disappears when your terminal scrollback rolls over.
|
|
25
25
|
|
|
26
|
+

|
|
27
|
+
|
|
26
28
|
**Contents:** [Try it](#try-it) · [Exact shell capture](#optional-exact-shell-capture) ·
|
|
27
29
|
[Failure → fix chains](#failure--fix-chains-opt-in) · [How retrieval works](#how-retrieval-works) ·
|
|
28
30
|
[Session summaries](#session-summaries-optional-local-model) ·
|
|
@@ -539,6 +541,11 @@ Tests are behavioral rather than snapshot-based, and several are regressions tie
|
|
|
539
541
|
observed failures. `tests/git-errors.test.ts` injects a fake `spawn` to exercise the Windows
|
|
540
542
|
process-spawn faults, which cannot be provoked on demand.
|
|
541
543
|
|
|
544
|
+
Bug fixes, test coverage, and small focused features are welcome — see
|
|
545
|
+
[CONTRIBUTING.md](CONTRIBUTING.md) for the workflow, or browse issues labeled
|
|
546
|
+
[`good first issue`](https://github.com/yaminbkk/nexusmem/labels/good%20first%20issue)
|
|
547
|
+
for something scoped and self-contained to start with.
|
|
548
|
+
|
|
542
549
|
## On how this was built
|
|
543
550
|
|
|
544
551
|
This started as an experiment in whether a local context-memory engine for coding agents was viable,
|