eagle-mem 4.15.0 → 4.15.1
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 +9 -0
- package/README.md +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to the **Eagle Mem** project are documented here.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## v4.15.1 Documentation & npm Listing Refresh
|
|
8
|
+
|
|
9
|
+
Docs-only patch. No runtime code change — no edits to hooks, `lib`, `db`, `scripts`, or any stdin/stdout/exit contract.
|
|
10
|
+
|
|
11
|
+
- **Why.** npmjs.com renders the package README from the **published tarball**, not from GitHub. The v4.15.0 tarball still carried a README whose narrative ended at v4.13.0, so the npm listing was stale even though GitHub was current.
|
|
12
|
+
- **What.** README narrative now covers v4.15.0 (PreCompact synchronous capture) and the v4.14.x governance/fix releases, and the GitHub Pages homepage was bumped to v4.15.0 (hero badge, terminal shot, "What changed" section, footer). This patch republishes so the npm listing reflects the current narrative.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
7
16
|
## v4.15.0 PreCompact Synchronous Capture
|
|
8
17
|
|
|
9
18
|
A new lifecycle hook that captures a rich session summary **before** Claude Code compacts the context window — closing the auto-compaction gap.
|
package/README.md
CHANGED
|
@@ -15,6 +15,8 @@ Eagle Mem turns AI coding sessions into compounding project knowledge. It gives
|
|
|
15
15
|
|
|
16
16
|
**v4.13.0 is a full-spectrum security & reliability hardening:** orchestration workers no longer default to full filesystem access, all LLM inputs (not just outputs) are redacted before they leave the machine, fail-open `SQLITE_BUSY` reads now wait for the lock, the mod-tracker is concurrency-safe, failed background scans retry instead of self-blocking for a day, and SessionStart injection has a token-economy ceiling. Normal recall and capture are unchanged. See [`CHANGELOG.md`](CHANGELOG.md) and the [findings report](docs/reviews/2026-06-10-full-spectrum-hardening.md).
|
|
17
17
|
|
|
18
|
+
**v4.15.0 adds PreCompact Synchronous Capture:** a new lifecycle hook captures a rich, LLM-enriched session summary *before* Claude Code compacts the context window (manual or auto), closing the gap where the background enricher could otherwise finish after the window collapsed. It is side-effect-only — it never blocks compaction and never overwrites an agent-authored `eagle-mem session save`. Recent releases also added release-gate parity at the git layer (`eagle-mem gate` plus an opt-in `pre-push` hook) and provenance with a trust gate for curator-generated command rules (v4.14.0), plus a `busy_timeout` echo fix that closed a session→project mis-filing vector (v4.14.1). See [`CHANGELOG.md`](CHANGELOG.md).
|
|
19
|
+
|
|
18
20
|
**Website:** [Product](https://eagleisbatman.github.io/eagle-mem/) |
|
|
19
21
|
[Architecture](https://eagleisbatman.github.io/eagle-mem/architecture.html) |
|
|
20
22
|
[About](https://eagleisbatman.github.io/eagle-mem/about.html)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eagle-mem",
|
|
3
|
-
"version": "4.15.
|
|
3
|
+
"version": "4.15.1",
|
|
4
4
|
"description": "Shared memory, release guardrails, RTK token protection, and worker lanes for Claude Code, Codex, OpenCode, Grok, and Google Antigravity",
|
|
5
5
|
"bin": {
|
|
6
6
|
"eagle-mem": "bin/eagle-mem"
|