eagle-mem 4.8.2 → 4.8.3

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/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
 
12
12
  Eagle Mem turns AI coding sessions into compounding project knowledge. It gives Claude Code and Codex the same local memory, labels which agent created each memory, blocks risky release commands until affected features are verified, and lets broad work split into durable worker lanes.
13
13
 
14
- **v4.8.2 ships Codex output polish:** Codex final replies now stay clean by default instead of printing large `<eagle-summary>` capture blocks. Eagle Mem still captures summaries from the Stop transcript, while Claude Code can keep using the richer explicit summary path where it behaves cleanly.
14
+ **v4.8.3 ships Codex output and communication polish:** Codex final replies now stay clean by default instead of printing large `<eagle-summary>` capture blocks, installer/update output uses clean-output wording, and the GitHub Pages homepage now has a clearer hero plus explicit installer/orchestrator sections.
15
15
 
16
16
  **Website:** [Product](https://eagleisbatman.github.io/eagle-mem/) |
17
17
  [Architecture](https://eagleisbatman.github.io/eagle-mem/architecture.html) |
@@ -149,6 +149,10 @@ Eagle Mem prevents Claude from repeating past mistakes:
149
149
  | `eagle-mem scan` | Scan codebase and generate overview |
150
150
  | `eagle-mem index` | Index source files for FTS5 code search |
151
151
 
152
+ ### v4.8.3 Patch
153
+
154
+ GitHub Pages now keeps hero text readable over the terminal background and the homepage explicitly explains installer-created/updated `CLAUDE.md` and `AGENTS.md` sections plus orchestrator/worker mode. Installer/update output also uses the new clean-output Codex wording instead of saying it added eagle-summary instructions.
155
+
152
156
  ### v4.8.2 Patch
153
157
 
154
158
  Codex no longer gets instructed to print large user-visible `<eagle-summary>` XML blocks. The installer/update path rewrites existing `~/.codex/AGENTS.md` Eagle Mem instructions to the clean-output contract, context-pressure nudges use normal prose, and Codex-oriented skills/worker prompts avoid raw capture templates.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eagle-mem",
3
- "version": "4.8.2",
3
+ "version": "4.8.3",
4
4
  "description": "Shared memory, release guardrails, RTK token protection, and worker lanes for Claude Code and Codex",
5
5
  "bin": {
6
6
  "eagle-mem": "bin/eagle-mem"
@@ -328,7 +328,7 @@ fi
328
328
 
329
329
  if [ "$codex_found" = true ]; then
330
330
  if eagle_patch_codex_agents_md; then
331
- eagle_ok "AGENTS.md ${DIM}(Codex eagle-summary instructions added)${RESET}"
331
+ eagle_ok "AGENTS.md ${DIM}(Codex clean-output memory instructions added)${RESET}"
332
332
  else
333
333
  eagle_ok "AGENTS.md ${DIM}(already has Eagle Mem section)${RESET}"
334
334
  fi
package/scripts/update.sh CHANGED
@@ -162,7 +162,7 @@ fi
162
162
 
163
163
  if [ "$codex_found" = true ]; then
164
164
  if eagle_patch_codex_agents_md; then
165
- eagle_ok "AGENTS.md updated ${DIM}(Codex eagle-summary instructions added)${RESET}"
165
+ eagle_ok "AGENTS.md updated ${DIM}(Codex clean-output memory instructions updated)${RESET}"
166
166
  else
167
167
  eagle_ok "AGENTS.md up to date"
168
168
  fi