eagle-mem 4.4.0 → 4.6.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/README.md +111 -66
- package/hooks/post-tool-use.sh +31 -2
- package/hooks/pre-tool-use.sh +8 -7
- package/hooks/session-start.sh +9 -3
- package/hooks/stop.sh +25 -0
- package/hooks/user-prompt-submit.sh +3 -3
- package/lib/common.sh +60 -23
- package/lib/db-backfill.sh +62 -4
- package/lib/db-mirrors.sh +12 -0
- package/lib/db-observations.sh +3 -2
- package/lib/hooks-posttool.sh +12 -4
- package/lib/hooks-sessionstart.sh +8 -2
- package/package.json +1 -1
- package/scripts/health.sh +5 -5
- package/scripts/memories.sh +6 -2
- package/scripts/statusline-em.sh +5 -3
package/README.md
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
1
1
|
```
|
|
2
2
|
======================================
|
|
3
|
-
Eagle Mem
|
|
3
|
+
Eagle Mem
|
|
4
4
|
======================================
|
|
5
5
|
```
|
|
6
6
|
|
|
7
7
|
# Eagle Mem
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## The Problem
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
Claude Code starts every session with amnesia. It doesn't remember what you built yesterday, what decisions you made, what files matter, or what broke last time. Every `/compact` wipes context. Every new session is a cold start. You waste tokens re-explaining your project, re-reading files, and watching Claude repeat mistakes you already corrected.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
The longer you work with Claude Code, the worse this gets. Projects accumulate history — decisions, gotchas, architectural patterns, feature dependencies — and none of it survives across sessions.
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
npm install -g eagle-mem
|
|
17
|
-
eagle-mem install
|
|
18
|
-
```
|
|
15
|
+
## The Solution
|
|
19
16
|
|
|
20
|
-
|
|
17
|
+
Eagle Mem gives Claude Code persistent memory. Every session starts with context from previous sessions — summaries, decisions, memories, tasks, project overviews, and relevant code — injected automatically via hooks. No commands to run, no prompts to write. It just works.
|
|
18
|
+
|
|
19
|
+
**Zero per-instance overhead.** No daemon, no vector DB, no MCP server. Just bash scripts, sqlite3 (WAL mode, FTS5 full-text search), and jq.
|
|
21
20
|
|
|
22
21
|
```
|
|
23
22
|
======================================
|
|
@@ -32,66 +31,46 @@ That's it. Open Claude Code in any project directory. Eagle Mem activates automa
|
|
|
32
31
|
======================================
|
|
33
32
|
```
|
|
34
33
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
## Commands
|
|
38
|
-
|
|
39
|
-
Six commands. Three for lifecycle, three for lookup and troubleshooting.
|
|
34
|
+
## Getting Started
|
|
40
35
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
| `eagle-mem uninstall` | Remove hooks and optionally delete data |
|
|
46
|
-
| `eagle-mem search` | Single lookup command — see modes below |
|
|
47
|
-
| `eagle-mem health` | Diagnose pipeline health and background automation |
|
|
48
|
-
| `eagle-mem config` | View or change LLM provider settings |
|
|
36
|
+
```bash
|
|
37
|
+
npm install -g eagle-mem
|
|
38
|
+
eagle-mem install
|
|
39
|
+
```
|
|
49
40
|
|
|
50
|
-
|
|
41
|
+
That's it. Open Claude Code in any project directory. Eagle Mem activates automatically.
|
|
51
42
|
|
|
52
|
-
|
|
53
|
-
|------|-------------|
|
|
54
|
-
| `eagle-mem search "query"` | FTS5 keyword search across session summaries |
|
|
55
|
-
| `eagle-mem search --timeline` | Recent sessions in chronological order |
|
|
56
|
-
| `eagle-mem search --overview` | View project overview |
|
|
57
|
-
| `eagle-mem search --memories` | Mirrored Claude Code memories |
|
|
58
|
-
| `eagle-mem search --tasks` | In-flight tasks (pending/in-progress) |
|
|
59
|
-
| `eagle-mem search --files` | Most frequently modified files |
|
|
60
|
-
| `eagle-mem search --stats` | Project statistics (counts) |
|
|
61
|
-
| `eagle-mem search --session <id>` | Full observation trail for one session |
|
|
43
|
+
Everything is automatic from here. Eagle Mem scans your codebase, indexes source files, captures session summaries, mirrors Claude's memories and tasks, learns which commands are noisy, and prunes stale data — all in the background via hooks.
|
|
62
44
|
|
|
63
|
-
|
|
45
|
+
### Prerequisites
|
|
64
46
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
| `/eagle-mem-overview` | Build a rich project briefing from README, entry points, and git history |
|
|
69
|
-
| `/eagle-mem-memories` | View and search mirrored Claude Code memories and plans |
|
|
70
|
-
| `/eagle-mem-tasks` | TaskAware Compact Loop — break complex work into tasks that survive `/compact` |
|
|
47
|
+
- `sqlite3` with FTS5 support (ships with macOS; the installer offers to install if missing)
|
|
48
|
+
- `jq` (the installer offers to install if missing)
|
|
49
|
+
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) installed (`~/.claude/` must exist)
|
|
71
50
|
|
|
72
|
-
## How
|
|
51
|
+
## How It Works
|
|
73
52
|
|
|
74
53
|
Six hooks fire automatically at different points in Claude Code's lifecycle:
|
|
75
54
|
|
|
76
|
-
| Hook | Fires
|
|
55
|
+
| Hook | Fires When | What It Does |
|
|
77
56
|
|------|-----------|--------------|
|
|
78
57
|
| **SessionStart** | startup, resume, clear, compact | Injects overview, summaries, memories, tasks, core files, working set. Auto-provisions new projects (scan, index). |
|
|
79
|
-
| **PreToolUse** | before Bash, Read, Edit, and
|
|
80
|
-
| **UserPromptSubmit** | user sends a message | FTS5 search for relevant
|
|
81
|
-
| **PostToolUse** | after tool calls | Records file touches, mirrors memory/plan/task writes,
|
|
82
|
-
| **Stop** | Claude's turn ends | Extracts `<eagle-summary
|
|
58
|
+
| **PreToolUse** | before Bash, Read, Edit, Write | Surfaces guardrails and decisions before edits. Rewrites noisy commands (learned rules). Detects redundant reads, nudges co-edit partners, detects stuck loops. |
|
|
59
|
+
| **UserPromptSubmit** | user sends a message | FTS5 search across past sessions and indexed code for relevant context |
|
|
60
|
+
| **PostToolUse** | after tool calls | Records file touches, mirrors memory/plan/task writes, surfaces decision history on reads |
|
|
61
|
+
| **Stop** | Claude's turn ends | Extracts `<eagle-summary>` blocks for rich session summaries |
|
|
83
62
|
| **SessionEnd** | session closes | Re-syncs tasks, marks session completed |
|
|
84
63
|
|
|
85
|
-
### Background
|
|
64
|
+
### Background Automation
|
|
86
65
|
|
|
87
66
|
These run automatically via SessionStart — no commands needed:
|
|
88
67
|
|
|
89
68
|
- **Auto-scan** — new project with no overview triggers a codebase scan
|
|
90
69
|
- **Auto-index** — new or stale project triggers FTS5 source indexing
|
|
91
70
|
- **Auto-prune** — observations over 10K rows trigger cleanup
|
|
92
|
-
- **Auto-curate** — the self-learning curator analyzes observation data and generates command rules, co-edit patterns,
|
|
71
|
+
- **Auto-curate** — the self-learning curator analyzes observation data and generates command rules, co-edit patterns, hot file detection, and guardrails (partially requires LLM provider)
|
|
93
72
|
|
|
94
|
-
### Token
|
|
73
|
+
### Token Savings
|
|
95
74
|
|
|
96
75
|
Eagle Mem actively reduces token consumption:
|
|
97
76
|
|
|
@@ -104,28 +83,94 @@ Eagle Mem actively reduces token consumption:
|
|
|
104
83
|
- **Working set recovery** — on compact, SessionStart injects the files you were actively editing so you resume without re-reading everything
|
|
105
84
|
- **Stuck loop detection** — if the same file is edited 5+ times in one session, PreToolUse nudges to reconsider the approach
|
|
106
85
|
|
|
107
|
-
###
|
|
86
|
+
### Anti-Regression
|
|
87
|
+
|
|
88
|
+
Eagle Mem prevents Claude from repeating past mistakes:
|
|
89
|
+
|
|
90
|
+
- **Decision surfacing** — when you edit a file that has past decisions recorded (from `<eagle-summary>` blocks), PreToolUse reminds Claude not to revert without asking
|
|
91
|
+
- **Guardrails** — file-level rules (manual or curator-discovered) that fire before every Edit/Write
|
|
92
|
+
- **Feature verification** — tracks features with smoke tests and dependencies; reminds you to verify on `git push`
|
|
93
|
+
- **Gotcha surfacing** — past surprises and gotchas are surfaced when editing related files
|
|
94
|
+
|
|
95
|
+
## Commands
|
|
96
|
+
|
|
97
|
+
| Command | What It Does |
|
|
98
|
+
|---------|-------------|
|
|
99
|
+
| `eagle-mem install` | First-time setup: hooks, database, skills |
|
|
100
|
+
| `eagle-mem update` | Re-deploy hooks and run migrations after `npm update` |
|
|
101
|
+
| `eagle-mem uninstall` | Remove hooks and optionally delete data |
|
|
102
|
+
| `eagle-mem search` | Search past sessions, memories, and code |
|
|
103
|
+
| `eagle-mem health` | Diagnose pipeline health and background automation |
|
|
104
|
+
| `eagle-mem config` | View or change LLM provider settings |
|
|
105
|
+
| `eagle-mem guard` | Manage regression guardrails for files |
|
|
106
|
+
| `eagle-mem overview` | Build or view project overview |
|
|
107
|
+
| `eagle-mem memories` | View/sync Claude Code memories |
|
|
108
|
+
| `eagle-mem tasks` | View mirrored tasks |
|
|
109
|
+
| `eagle-mem curate` | Run curator (co-edits, hot files, guardrails) |
|
|
110
|
+
| `eagle-mem feature` | Track and verify features |
|
|
111
|
+
| `eagle-mem prune` | Clean old sessions and stale data |
|
|
112
|
+
| `eagle-mem scan` | Scan codebase and generate overview |
|
|
113
|
+
| `eagle-mem index` | Index source files for FTS5 code search |
|
|
114
|
+
|
|
115
|
+
### Search Modes
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
eagle-mem search "auth bug" # keyword search across summaries
|
|
119
|
+
eagle-mem search --timeline # recent sessions in chronological order
|
|
120
|
+
eagle-mem search --overview # project overview
|
|
121
|
+
eagle-mem search --memories # mirrored Claude Code memories
|
|
122
|
+
eagle-mem search --tasks # in-flight tasks (pending/in-progress)
|
|
123
|
+
eagle-mem search --files # most frequently modified files
|
|
124
|
+
eagle-mem search --stats # project statistics
|
|
125
|
+
eagle-mem search --session <id> # full observation trail for one session
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
## Skills (Inside Claude Code)
|
|
129
|
+
|
|
130
|
+
| Skill | What It Does |
|
|
131
|
+
|-------|-------------|
|
|
132
|
+
| `/eagle-mem-search` | Search memory and past sessions — Claude interprets results in context |
|
|
133
|
+
| `/eagle-mem-overview` | Build a rich project briefing from README, entry points, and git history |
|
|
134
|
+
| `/eagle-mem-memories` | View and search mirrored Claude Code memories and plans |
|
|
135
|
+
| `/eagle-mem-tasks` | TaskAware Compact Loop — break complex work into tasks that survive `/compact` |
|
|
136
|
+
|
|
137
|
+
## Data
|
|
108
138
|
|
|
109
139
|
Single SQLite database at `~/.eagle-mem/memory.db` (WAL mode, FTS5 full-text search):
|
|
110
140
|
|
|
111
|
-
| Table | What
|
|
141
|
+
| Table | What It Stores |
|
|
112
142
|
|-------|---------------|
|
|
113
|
-
| sessions | Active/completed sessions per project |
|
|
114
|
-
| summaries | Per-session summaries (FTS5-indexed) |
|
|
115
|
-
| observations | Per-tool-use file touch records |
|
|
116
|
-
| overviews | One overview per project (auto-scan or manual) |
|
|
117
|
-
| code_chunks | FTS5-indexed source file chunks |
|
|
118
|
-
| command_rules | Curator-learned command output rules |
|
|
119
|
-
| file_hints | Curator-learned file access patterns (co-edit pairs) |
|
|
120
|
-
|
|
|
121
|
-
|
|
|
122
|
-
|
|
|
123
|
-
|
|
124
|
-
|
|
143
|
+
| `sessions` | Active/completed sessions per project |
|
|
144
|
+
| `summaries` | Per-session summaries with decisions, gotchas, key files (FTS5-indexed) |
|
|
145
|
+
| `observations` | Per-tool-use file touch records |
|
|
146
|
+
| `overviews` | One overview per project (auto-scan or manual) |
|
|
147
|
+
| `code_chunks` | FTS5-indexed source file chunks |
|
|
148
|
+
| `command_rules` | Curator-learned command output rules |
|
|
149
|
+
| `file_hints` | Curator-learned file access patterns (co-edit pairs, hot files) |
|
|
150
|
+
| `guardrails` | File-level regression rules (manual or curator-discovered) |
|
|
151
|
+
| `features` | Feature tracking with smoke tests and dependencies |
|
|
152
|
+
| `eagle_meta` | Internal metadata (last scan, last curate, etc.) |
|
|
153
|
+
| `claude_memories` | Mirror of Claude Code auto-memories |
|
|
154
|
+
| `claude_plans` | Mirror of Claude Code plans |
|
|
155
|
+
| `claude_tasks` | Mirror of Claude Code tasks |
|
|
125
156
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
-
|
|
157
|
+
### Project Identity
|
|
158
|
+
|
|
159
|
+
Projects are identified by their HOME-relative path (e.g., `personal_projects/eagle-mem`). This ensures uniqueness even when multiple projects share the same directory name. Git repositories use the repo root; non-git directories use the working directory.
|
|
160
|
+
|
|
161
|
+
### Namespace Migration
|
|
162
|
+
|
|
163
|
+
When upgrading from older versions, `eagle-mem update` automatically migrates project data to the new namespace format. The migration preserves newer data when conflicts exist and cleans up stale entries.
|
|
164
|
+
|
|
165
|
+
## LLM Provider (Optional)
|
|
166
|
+
|
|
167
|
+
Some features (curator auto-enrichment, overview generation) can use an LLM for richer output. Configure with:
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
eagle-mem config
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
Supported providers: Ollama (auto-detected), Anthropic, OpenAI. Eagle Mem works fully without a provider — LLM features gracefully degrade to heuristic fallbacks.
|
|
129
174
|
|
|
130
175
|
## License
|
|
131
176
|
|
package/hooks/post-tool-use.sh
CHANGED
|
@@ -24,14 +24,43 @@ hook_event=$(echo "$input" | jq -r '.hook_event_name // empty')
|
|
|
24
24
|
|
|
25
25
|
if [ -z "$session_id" ]; then exit 0; fi
|
|
26
26
|
|
|
27
|
-
# TaskCreated/TaskCompleted dedicated events —
|
|
27
|
+
# TaskCreated/TaskCompleted dedicated events — parse top-level fields and exit
|
|
28
28
|
case "$hook_event" in
|
|
29
29
|
TaskCreated|TaskCompleted)
|
|
30
30
|
[ ! -f "$EAGLE_MEM_DB" ] && exit 0
|
|
31
31
|
project=$(eagle_project_from_cwd "$cwd")
|
|
32
32
|
[ -z "$project" ] && exit 0
|
|
33
33
|
eagle_upsert_session "$session_id" "$project" "$cwd" "" ""
|
|
34
|
-
|
|
34
|
+
|
|
35
|
+
task_id=$(echo "$input" | jq -r '.task_id // empty')
|
|
36
|
+
task_subject=$(echo "$input" | jq -r '.task_subject // empty')
|
|
37
|
+
task_desc=$(echo "$input" | jq -r '.task_description // empty')
|
|
38
|
+
|
|
39
|
+
if [ -n "$task_id" ] && [ -n "$task_subject" ]; then
|
|
40
|
+
local_status="pending"
|
|
41
|
+
[ "$hook_event" = "TaskCompleted" ] && local_status="completed"
|
|
42
|
+
|
|
43
|
+
# Synthetic file_path keyed on session+task — file_path is the UNIQUE column
|
|
44
|
+
synthetic_fp="event://${session_id}/${task_id}"
|
|
45
|
+
|
|
46
|
+
tid_sql=$(eagle_sql_escape "$task_id")
|
|
47
|
+
fp_sql=$(eagle_sql_escape "$synthetic_fp")
|
|
48
|
+
proj_sql=$(eagle_sql_escape "$project")
|
|
49
|
+
sid_sql=$(eagle_sql_escape "$session_id")
|
|
50
|
+
subj_sql=$(eagle_sql_escape "$task_subject")
|
|
51
|
+
desc_sql=$(eagle_sql_escape "$task_desc")
|
|
52
|
+
stat_sql=$(eagle_sql_escape "$local_status")
|
|
53
|
+
|
|
54
|
+
eagle_db_pipe <<SQL
|
|
55
|
+
INSERT INTO claude_tasks (project, source_session_id, source_task_id, file_path, subject, description, status)
|
|
56
|
+
VALUES ('$proj_sql', '$sid_sql', '$tid_sql', '$fp_sql', '$subj_sql', '$desc_sql', '$stat_sql')
|
|
57
|
+
ON CONFLICT(file_path) DO UPDATE SET
|
|
58
|
+
subject = excluded.subject,
|
|
59
|
+
description = excluded.description,
|
|
60
|
+
status = excluded.status,
|
|
61
|
+
updated_at = strftime('%Y-%m-%dT%H:%M:%fZ', 'now');
|
|
62
|
+
SQL
|
|
63
|
+
fi
|
|
35
64
|
exit 0
|
|
36
65
|
;;
|
|
37
66
|
esac
|
package/hooks/pre-tool-use.sh
CHANGED
|
@@ -80,8 +80,9 @@ Bash)
|
|
|
80
80
|
done <<< "$changed_files"
|
|
81
81
|
|
|
82
82
|
if [ -n "$context" ]; then
|
|
83
|
-
context="Eagle Mem
|
|
84
|
-
|
|
83
|
+
context="=== Eagle Mem ===
|
|
84
|
+
This push affects the following features. After deploy, verify each works and run 'eagle-mem feature verify <name>'.
|
|
85
|
+
${context}================"
|
|
85
86
|
fi
|
|
86
87
|
fi
|
|
87
88
|
fi
|
|
@@ -91,7 +92,7 @@ ${context}"
|
|
|
91
92
|
# ─── Command output filtering (learned rules) ─────────────
|
|
92
93
|
|
|
93
94
|
base_cmd=$(echo "$cmd" | awk '{print $1}' | sed 's|.*/||')
|
|
94
|
-
rule=$(eagle_get_command_rule "$project" "$base_cmd")
|
|
95
|
+
rule=$(eagle_get_command_rule "$project" "$base_cmd" "$cmd")
|
|
95
96
|
|
|
96
97
|
if [ -n "$rule" ]; then
|
|
97
98
|
IFS='|' read -r strategy max_lines reason <<< "$rule"
|
|
@@ -105,7 +106,7 @@ ${context}"
|
|
|
105
106
|
*"| head"*|*"| tail"*|*"| wc"*|*"| grep"*|*">"*|*">>"*)
|
|
106
107
|
;;
|
|
107
108
|
*)
|
|
108
|
-
updated_input=$(jq
|
|
109
|
+
updated_input=$(echo "$input" | jq --arg cmd "${cmd} | head -${max_lines}" '.tool_input + {"command":$cmd}')
|
|
109
110
|
context+="Eagle Mem: '${base_cmd}' output is typically long (${reason}). Piped through head -${max_lines}."
|
|
110
111
|
;;
|
|
111
112
|
esac
|
|
@@ -146,12 +147,12 @@ Edit|Write)
|
|
|
146
147
|
while IFS= read -r ctx_line; do
|
|
147
148
|
case "$ctx_line" in
|
|
148
149
|
GR:*) gr_block+=" - ${ctx_line#GR:}"$'\n' ;;
|
|
149
|
-
DEC:*) context+="Eagle Mem
|
|
150
|
-
GOT:*) context+="Eagle Mem
|
|
150
|
+
DEC:*) context+="=== Eagle Mem ==="$'\n'"Decisions for '${fname}': ${ctx_line#DEC:} — Do not revert without asking."$'\n'"================"$'\n' ;;
|
|
151
|
+
GOT:*) context+="=== Eagle Mem ==="$'\n'"Gotchas for '${fname}': ${ctx_line#GOT:}"$'\n'"================"$'\n' ;;
|
|
151
152
|
esac
|
|
152
153
|
done <<< "$edit_ctx"
|
|
153
154
|
if [ -n "$gr_block" ]; then
|
|
154
|
-
context+="Eagle Mem
|
|
155
|
+
context+="=== Eagle Mem ==="$'\n'"Guardrails for '${fname}':"$'\n'"${gr_block}================"$'\n'
|
|
155
156
|
fi
|
|
156
157
|
fi
|
|
157
158
|
;;
|
package/hooks/session-start.sh
CHANGED
|
@@ -322,9 +322,15 @@ Memory active for '$project'. Scan, index, prune, and self-learning run automati
|
|
|
322
322
|
|
|
323
323
|
Before your final response, emit:
|
|
324
324
|
<eagle-summary>
|
|
325
|
-
request: [what user asked]
|
|
326
|
-
|
|
327
|
-
|
|
325
|
+
request: [what user asked]
|
|
326
|
+
completed: [what shipped]
|
|
327
|
+
learned: [non-obvious discoveries]
|
|
328
|
+
decisions: [choice — why]
|
|
329
|
+
gotchas: [what surprised]
|
|
330
|
+
next_steps: [concrete actions]
|
|
331
|
+
key_files: [path — role]
|
|
332
|
+
files_read: [path, ...]
|
|
333
|
+
files_modified: [path, ...]
|
|
328
334
|
</eagle-summary>
|
|
329
335
|
"
|
|
330
336
|
fi
|
package/hooks/stop.sh
CHANGED
|
@@ -231,6 +231,31 @@ else
|
|
|
231
231
|
eagle_log "INFO" "Stop: LLM enrichment skipped — rich data already present"
|
|
232
232
|
fi
|
|
233
233
|
|
|
234
|
+
# ─── Heuristic fallback: derive fields from tool activity when no LLM ──
|
|
235
|
+
# Fills key_files and completed from files_modified when both are empty
|
|
236
|
+
|
|
237
|
+
if [ -z "$key_files" ] && [ -n "$files_modified" ] && [ "$files_modified" != "[]" ]; then
|
|
238
|
+
key_files=$(echo "$files_modified" | jq -r '.[]?' 2>/dev/null | while read -r f; do basename "$f"; done | sort -u | head -10 | paste -sd ', ' -)
|
|
239
|
+
fi
|
|
240
|
+
|
|
241
|
+
if [ -z "$completed" ] && [ -n "$files_modified" ] && [ "$files_modified" != "[]" ]; then
|
|
242
|
+
mod_count=$(echo "$files_modified" | jq -r '.[]?' 2>/dev/null | wc -l | tr -d ' ')
|
|
243
|
+
mod_names=$(echo "$files_modified" | jq -r '.[]?' 2>/dev/null | while read -r f; do basename "$f"; done | sort -u | head -5 | paste -sd ', ' -)
|
|
244
|
+
if [ "${mod_count:-0}" -gt 0 ]; then
|
|
245
|
+
completed="Modified ${mod_count} files: ${mod_names}"
|
|
246
|
+
fi
|
|
247
|
+
elif [ -z "$completed" ] && [ -n "$files_read" ] && [ "$files_read" != "[]" ]; then
|
|
248
|
+
read_count=$(echo "$files_read" | jq -r '.[]?' 2>/dev/null | wc -l | tr -d ' ')
|
|
249
|
+
read_names=$(echo "$files_read" | jq -r '.[]?' 2>/dev/null | while read -r f; do basename "$f"; done | sort -u | head -5 | paste -sd ', ' -)
|
|
250
|
+
if [ "${read_count:-0}" -gt 0 ]; then
|
|
251
|
+
completed="Reviewed ${read_count} files: ${read_names}"
|
|
252
|
+
fi
|
|
253
|
+
fi
|
|
254
|
+
|
|
255
|
+
if [ -z "$key_files" ] && [ -n "$files_read" ] && [ "$files_read" != "[]" ]; then
|
|
256
|
+
key_files=$(echo "$files_read" | jq -r '.[]?' 2>/dev/null | while read -r f; do basename "$f"; done | sort -u | head -10 | paste -sd ', ' -)
|
|
257
|
+
fi
|
|
258
|
+
|
|
234
259
|
# ─── Test reminder for guardrailed files ─────────────────
|
|
235
260
|
|
|
236
261
|
if [ -n "$files_modified" ] && [ "$files_modified" != "[]" ]; then
|
|
@@ -81,7 +81,7 @@ fts_query=$(echo "$user_prompt" | tr -cs '[:alnum:]' ' ' | tr '[:upper:]' '[:low
|
|
|
81
81
|
results=$(eagle_search_summaries "$fts_query" "$project" 3)
|
|
82
82
|
|
|
83
83
|
if [ -n "$results" ]; then
|
|
84
|
-
context+="===
|
|
84
|
+
context+="=== Eagle Mem — Relevant Memory ===
|
|
85
85
|
"
|
|
86
86
|
while IFS='|' read -r req completed learned _next_steps created_at _proj decisions gotchas key_files; do
|
|
87
87
|
[ -z "$req" ] && [ -z "$completed" ] && continue
|
|
@@ -106,7 +106,7 @@ if [ "${has_chunks:-0}" -gt 0 ]; then
|
|
|
106
106
|
code_results=$(eagle_search_code_chunks "$fts_query" "$project" 5)
|
|
107
107
|
|
|
108
108
|
if [ -n "$code_results" ]; then
|
|
109
|
-
context+="===
|
|
109
|
+
context+="=== Eagle Mem — Relevant Code ===
|
|
110
110
|
"
|
|
111
111
|
while IFS='|' read -r fpath sline eline lang; do
|
|
112
112
|
[ -z "$fpath" ] && continue
|
|
@@ -123,7 +123,7 @@ fi
|
|
|
123
123
|
context+="
|
|
124
124
|
IMPORTANT: When Eagle Mem finds relevant memories or code for the user's prompt, briefly mention it at the start of your response: \"Eagle Mem recalled N relevant sessions\" or \"Eagle Mem found related code in [files]\". One line max — then proceed with the answer.
|
|
125
125
|
|
|
126
|
-
|
|
126
|
+
=== Eagle Mem (persistent memory across sessions) ===
|
|
127
127
|
"
|
|
128
128
|
|
|
129
129
|
echo "$context"
|
package/lib/common.sh
CHANGED
|
@@ -39,18 +39,27 @@ eagle_project_from_cwd() {
|
|
|
39
39
|
"$HOME/Desktop"|"$HOME/Desktop/"*) echo ""; return ;;
|
|
40
40
|
esac
|
|
41
41
|
|
|
42
|
+
local target_dir
|
|
42
43
|
local git_root
|
|
43
44
|
git_root=$(git -C "$cwd" rev-parse --show-toplevel 2>/dev/null)
|
|
44
45
|
if [ -n "$git_root" ]; then
|
|
45
|
-
|
|
46
|
+
target_dir="$git_root"
|
|
46
47
|
else
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
target_dir="$cwd"
|
|
49
|
+
fi
|
|
50
|
+
|
|
51
|
+
local name
|
|
52
|
+
name=$(basename "$target_dir")
|
|
53
|
+
if [ ${#name} -le 1 ]; then
|
|
54
|
+
echo ""; return
|
|
55
|
+
fi
|
|
56
|
+
|
|
57
|
+
if [[ "$target_dir" == "$HOME/"* ]]; then
|
|
58
|
+
echo "${target_dir#$HOME/}"
|
|
59
|
+
elif [ "$target_dir" = "$HOME" ]; then
|
|
60
|
+
echo "$name"
|
|
61
|
+
else
|
|
62
|
+
echo "${target_dir#/}"
|
|
54
63
|
fi
|
|
55
64
|
}
|
|
56
65
|
|
|
@@ -66,7 +75,7 @@ eagle_sql_int() {
|
|
|
66
75
|
}
|
|
67
76
|
|
|
68
77
|
eagle_fts_sanitize() {
|
|
69
|
-
printf '%s' "$1" | sed 's/[
|
|
78
|
+
printf '%s' "$1" | sed 's/[^A-Za-z0-9_]/ /g' | sed 's/ */ /g; s/^ //; s/ $//'
|
|
70
79
|
}
|
|
71
80
|
|
|
72
81
|
# Escape SQL LIKE wildcards (% and _) so literal filenames match exactly.
|
|
@@ -158,17 +167,8 @@ eagle_collect_files() {
|
|
|
158
167
|
fi
|
|
159
168
|
}
|
|
160
169
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
local marker="## Eagle Mem — Persistent Memory"
|
|
164
|
-
|
|
165
|
-
if [ -f "$claude_md" ] && grep -qF "$marker" "$claude_md" 2>/dev/null; then
|
|
166
|
-
return 1
|
|
167
|
-
fi
|
|
168
|
-
|
|
169
|
-
mkdir -p "$HOME/.claude"
|
|
170
|
-
|
|
171
|
-
cat >> "$claude_md" << 'EAGLE_MD'
|
|
170
|
+
_eagle_claude_md_section() {
|
|
171
|
+
cat << 'EAGLE_MD'
|
|
172
172
|
|
|
173
173
|
---
|
|
174
174
|
|
|
@@ -180,9 +180,15 @@ Eagle Mem hooks are active in every project. SessionStart injects context (overv
|
|
|
180
180
|
|
|
181
181
|
```
|
|
182
182
|
<eagle-summary>
|
|
183
|
-
request: [what user asked]
|
|
184
|
-
|
|
185
|
-
|
|
183
|
+
request: [what user asked]
|
|
184
|
+
completed: [what shipped]
|
|
185
|
+
learned: [non-obvious discoveries]
|
|
186
|
+
decisions: [choice — why]
|
|
187
|
+
gotchas: [what surprised]
|
|
188
|
+
next_steps: [concrete actions]
|
|
189
|
+
key_files: [path — role]
|
|
190
|
+
files_read: [path, ...]
|
|
191
|
+
files_modified: [path, ...]
|
|
186
192
|
</eagle-summary>
|
|
187
193
|
```
|
|
188
194
|
|
|
@@ -196,3 +202,34 @@ key_files: [path — role] | files_read: [...] | files_modified: [...]
|
|
|
196
202
|
- If you contradict a loaded memory, update the memory file
|
|
197
203
|
EAGLE_MD
|
|
198
204
|
}
|
|
205
|
+
|
|
206
|
+
eagle_patch_claude_md() {
|
|
207
|
+
local claude_md="$HOME/.claude/CLAUDE.md"
|
|
208
|
+
local marker="## Eagle Mem — Persistent Memory"
|
|
209
|
+
|
|
210
|
+
mkdir -p "$HOME/.claude"
|
|
211
|
+
|
|
212
|
+
if [ -f "$claude_md" ] && grep -qF "$marker" "$claude_md" 2>/dev/null; then
|
|
213
|
+
# Check if section has outdated pipe-separated format
|
|
214
|
+
if grep -qF 'request: \[what user asked\] | completed:' "$claude_md" 2>/dev/null; then
|
|
215
|
+
# Replace the outdated section: remove old, append new
|
|
216
|
+
local tmp_md
|
|
217
|
+
tmp_md=$(mktemp)
|
|
218
|
+
awk -v marker="$marker" '
|
|
219
|
+
$0 ~ marker { skip=1; next }
|
|
220
|
+
skip && /^---$/ && !seen_end { seen_end=1; next }
|
|
221
|
+
skip && /^## / { skip=0 }
|
|
222
|
+
!skip { print }
|
|
223
|
+
' "$claude_md" > "$tmp_md"
|
|
224
|
+
# Remove trailing blank lines left by section removal
|
|
225
|
+
sed -e :a -e '/^[[:space:]]*$/{ $d; N; ba; }' "$tmp_md" > "${tmp_md}.clean"
|
|
226
|
+
mv "${tmp_md}.clean" "$claude_md"
|
|
227
|
+
rm -f "$tmp_md"
|
|
228
|
+
_eagle_claude_md_section >> "$claude_md"
|
|
229
|
+
return 0
|
|
230
|
+
fi
|
|
231
|
+
return 1
|
|
232
|
+
fi
|
|
233
|
+
|
|
234
|
+
_eagle_claude_md_section >> "$claude_md"
|
|
235
|
+
}
|
package/lib/db-backfill.sh
CHANGED
|
@@ -39,16 +39,28 @@ eagle_backfill_projects() {
|
|
|
39
39
|
map=$(eagle_build_session_project_map)
|
|
40
40
|
[ -z "$map" ] && echo "0" && return 0
|
|
41
41
|
|
|
42
|
+
# Phase 1: Build old→new project mapping BEFORE mutating any rows.
|
|
43
|
+
# Collect from sessions table so non-session tables can be migrated.
|
|
44
|
+
local rename_map_file
|
|
45
|
+
rename_map_file=$(mktemp)
|
|
46
|
+
while IFS='|' read -r sid project; do
|
|
47
|
+
[ -z "$sid" ] || [ -z "$project" ] && continue
|
|
48
|
+
local sid_sql
|
|
49
|
+
sid_sql=$(eagle_sql_escape "$sid")
|
|
50
|
+
local old_project
|
|
51
|
+
old_project=$(eagle_db "SELECT project FROM sessions WHERE id = '$sid_sql';")
|
|
52
|
+
if [ -n "$old_project" ] && [ "$old_project" != "$project" ]; then
|
|
53
|
+
echo "$old_project|$project" >> "$rename_map_file"
|
|
54
|
+
fi
|
|
55
|
+
done <<< "$map"
|
|
56
|
+
|
|
57
|
+
# Phase 2: Update session-linked tables
|
|
42
58
|
while IFS='|' read -r sid project; do
|
|
43
59
|
[ -z "$sid" ] || [ -z "$project" ] && continue
|
|
44
60
|
local sid_sql proj_sql
|
|
45
61
|
sid_sql=$(eagle_sql_escape "$sid")
|
|
46
62
|
proj_sql=$(eagle_sql_escape "$project")
|
|
47
63
|
|
|
48
|
-
# All six tables updated atomically per session to prevent
|
|
49
|
-
# partial backfill if the process is interrupted.
|
|
50
|
-
# Note: total_changes() includes FTS trigger changes, so the
|
|
51
|
-
# reported count may be higher than actual rows updated.
|
|
52
64
|
local ch
|
|
53
65
|
ch=$(eagle_db_pipe <<SQL
|
|
54
66
|
BEGIN;
|
|
@@ -65,6 +77,52 @@ SQL
|
|
|
65
77
|
[ "${ch:-0}" -gt 0 ] && updated=$((updated + ch))
|
|
66
78
|
done <<< "$map"
|
|
67
79
|
|
|
80
|
+
# Phase 3: Update non-session tables using the old→new mapping.
|
|
81
|
+
# Skip ambiguous mappings (one old name → multiple new names).
|
|
82
|
+
if [ -s "$rename_map_file" ]; then
|
|
83
|
+
local uniq_map
|
|
84
|
+
uniq_map=$(sort -u "$rename_map_file")
|
|
85
|
+
local prev_old=""
|
|
86
|
+
local ambiguous=""
|
|
87
|
+
while IFS='|' read -r old_proj new_proj; do
|
|
88
|
+
[ -z "$old_proj" ] && continue
|
|
89
|
+
if [ "$old_proj" = "$prev_old" ]; then
|
|
90
|
+
ambiguous+="$old_proj|"
|
|
91
|
+
fi
|
|
92
|
+
prev_old="$old_proj"
|
|
93
|
+
done <<< "$(echo "$uniq_map" | sort -t'|' -k1,1)"
|
|
94
|
+
|
|
95
|
+
while IFS='|' read -r old_proj new_proj; do
|
|
96
|
+
[ -z "$old_proj" ] || [ -z "$new_proj" ] && continue
|
|
97
|
+
case "$ambiguous" in *"$old_proj|"*) continue ;; esac
|
|
98
|
+
|
|
99
|
+
local old_sql new_sql
|
|
100
|
+
old_sql=$(eagle_sql_escape "$old_proj")
|
|
101
|
+
new_sql=$(eagle_sql_escape "$new_proj")
|
|
102
|
+
|
|
103
|
+
eagle_db_pipe <<SQL 2>/dev/null
|
|
104
|
+
BEGIN;
|
|
105
|
+
UPDATE OR IGNORE overviews SET project = '$new_sql' WHERE project = '$old_sql';
|
|
106
|
+
DELETE FROM overviews WHERE project = '$old_sql';
|
|
107
|
+
DELETE FROM code_chunks WHERE project = '$old_sql'
|
|
108
|
+
AND EXISTS (SELECT 1 FROM code_chunks WHERE project = '$new_sql' LIMIT 1);
|
|
109
|
+
UPDATE code_chunks SET project = '$new_sql' WHERE project = '$old_sql';
|
|
110
|
+
UPDATE OR IGNORE features SET project = '$new_sql' WHERE project = '$old_sql';
|
|
111
|
+
DELETE FROM features WHERE project = '$old_sql';
|
|
112
|
+
UPDATE OR IGNORE command_rules SET project = '$new_sql' WHERE project = '$old_sql';
|
|
113
|
+
DELETE FROM command_rules WHERE project = '$old_sql';
|
|
114
|
+
UPDATE OR IGNORE eagle_meta SET project = '$new_sql' WHERE project = '$old_sql';
|
|
115
|
+
DELETE FROM eagle_meta WHERE project = '$old_sql';
|
|
116
|
+
UPDATE OR IGNORE file_hints SET project = '$new_sql' WHERE project = '$old_sql';
|
|
117
|
+
DELETE FROM file_hints WHERE project = '$old_sql';
|
|
118
|
+
UPDATE OR IGNORE guardrails SET project = '$new_sql' WHERE project = '$old_sql';
|
|
119
|
+
DELETE FROM guardrails WHERE project = '$old_sql';
|
|
120
|
+
COMMIT;
|
|
121
|
+
SQL
|
|
122
|
+
done <<< "$uniq_map"
|
|
123
|
+
fi
|
|
124
|
+
rm -f "$rename_map_file"
|
|
125
|
+
|
|
68
126
|
echo "$updated"
|
|
69
127
|
}
|
|
70
128
|
|
package/lib/db-mirrors.sh
CHANGED
|
@@ -55,6 +55,10 @@ SQL
|
|
|
55
55
|
|
|
56
56
|
eagle_search_claude_memories() {
|
|
57
57
|
local query; query=$(eagle_fts_sanitize "$1")
|
|
58
|
+
if [ -z "$query" ]; then
|
|
59
|
+
echo "Search query is empty after sanitization. Try a different search term." >&2
|
|
60
|
+
return 1
|
|
61
|
+
fi
|
|
58
62
|
query=$(eagle_sql_escape "$query")
|
|
59
63
|
local project="${2:-}"
|
|
60
64
|
local limit; limit=$(eagle_sql_int "${3:-10}")
|
|
@@ -131,6 +135,10 @@ SQL
|
|
|
131
135
|
|
|
132
136
|
eagle_search_claude_plans() {
|
|
133
137
|
local query; query=$(eagle_fts_sanitize "$1")
|
|
138
|
+
if [ -z "$query" ]; then
|
|
139
|
+
echo "Search query is empty after sanitization. Try a different search term." >&2
|
|
140
|
+
return 1
|
|
141
|
+
fi
|
|
134
142
|
query=$(eagle_sql_escape "$query")
|
|
135
143
|
local project="${2:-}"
|
|
136
144
|
local limit; limit=$(eagle_sql_int "${3:-10}")
|
|
@@ -242,6 +250,10 @@ eagle_list_claude_tasks() {
|
|
|
242
250
|
|
|
243
251
|
eagle_search_claude_tasks() {
|
|
244
252
|
local query; query=$(eagle_fts_sanitize "$1")
|
|
253
|
+
if [ -z "$query" ]; then
|
|
254
|
+
echo "Search query is empty after sanitization. Try a different search term." >&2
|
|
255
|
+
return 1
|
|
256
|
+
fi
|
|
245
257
|
query=$(eagle_sql_escape "$query")
|
|
246
258
|
local project="${2:-}"
|
|
247
259
|
local limit; limit=$(eagle_sql_int "${3:-10}")
|
package/lib/db-observations.sh
CHANGED
|
@@ -46,12 +46,13 @@ eagle_prune_observations() {
|
|
|
46
46
|
|
|
47
47
|
eagle_get_command_rule() {
|
|
48
48
|
local project; project=$(eagle_sql_escape "$1")
|
|
49
|
-
local
|
|
49
|
+
local base_cmd; base_cmd=$(eagle_sql_escape "$2")
|
|
50
|
+
local full_cmd; full_cmd=$(eagle_sql_escape "${3:-$2}")
|
|
50
51
|
eagle_db "SELECT strategy, max_lines, reason
|
|
51
52
|
FROM command_rules
|
|
52
53
|
WHERE enabled = 1
|
|
53
54
|
AND (project = '$project' OR project = '')
|
|
54
|
-
AND ('$
|
|
55
|
+
AND ('$base_cmd' = pattern OR '$full_cmd' = pattern OR '$full_cmd' LIKE pattern || ' %')
|
|
55
56
|
ORDER BY CASE WHEN project != '' THEN 0 ELSE 1 END,
|
|
56
57
|
LENGTH(pattern) DESC
|
|
57
58
|
LIMIT 1;"
|
package/lib/hooks-posttool.sh
CHANGED
|
@@ -75,7 +75,9 @@ eagle_posttool_stale_hint() {
|
|
|
75
75
|
local stale_hit
|
|
76
76
|
stale_hit=$(eagle_search_stale_memories "$project" "$fts_query")
|
|
77
77
|
if [ -n "$stale_hit" ]; then
|
|
78
|
-
local stale_msg="Eagle Mem
|
|
78
|
+
local stale_msg="=== Eagle Mem ===
|
|
79
|
+
Memory '${stale_hit}' may reference '${fname}'. If your edit contradicts it, update the memory.
|
|
80
|
+
================"
|
|
79
81
|
jq -nc --arg ctx "$stale_msg" '{"hookSpecificOutput":{"hookEventName":"PostToolUse","additionalContext":$ctx}}'
|
|
80
82
|
fi
|
|
81
83
|
fi
|
|
@@ -106,7 +108,10 @@ eagle_posttool_decision_surface() {
|
|
|
106
108
|
local decision_hit
|
|
107
109
|
decision_hit=$(eagle_search_decisions_for_file "$project" "$fts_query")
|
|
108
110
|
if [ -n "$decision_hit" ]; then
|
|
109
|
-
read_context+="Eagle Mem
|
|
111
|
+
read_context+="=== Eagle Mem ===
|
|
112
|
+
Decision history for '${fname}': ${decision_hit} — Do not revert without explicit user request.
|
|
113
|
+
================
|
|
114
|
+
"
|
|
110
115
|
fi
|
|
111
116
|
fi
|
|
112
117
|
fi
|
|
@@ -116,14 +121,17 @@ eagle_posttool_decision_surface() {
|
|
|
116
121
|
if [ -n "$feature_hit" ]; then
|
|
117
122
|
while IFS='|' read -r feat_name feat_desc feat_verified _role feat_deps feat_other_files feat_smoke; do
|
|
118
123
|
[ -z "$feat_name" ] && continue
|
|
119
|
-
read_context+="Eagle Mem
|
|
124
|
+
read_context+="=== Eagle Mem ===
|
|
125
|
+
'${fname}' is part of feature '${feat_name}'"
|
|
120
126
|
[ -n "$feat_desc" ] && read_context+=" ($feat_desc)"
|
|
121
127
|
read_context+="."
|
|
122
128
|
[ -n "$feat_verified" ] && read_context+=" Last verified: ${feat_verified}."
|
|
123
129
|
[ -n "$feat_deps" ] && read_context+=" Dependencies: ${feat_deps}."
|
|
124
130
|
[ -n "$feat_other_files" ] && read_context+=" Other files in pipeline: ${feat_other_files}."
|
|
125
131
|
[ -n "$feat_smoke" ] && read_context+=" Smoke tests: ${feat_smoke}."
|
|
126
|
-
read_context+=" Changes require re-testing after deploy.
|
|
132
|
+
read_context+=" Changes require re-testing after deploy.
|
|
133
|
+
================
|
|
134
|
+
"
|
|
127
135
|
done <<< "$feature_hit"
|
|
128
136
|
fi
|
|
129
137
|
|
|
@@ -8,16 +8,22 @@ _EAGLE_HOOKS_SESSIONSTART_LOADED=1
|
|
|
8
8
|
|
|
9
9
|
_state_dir="$EAGLE_MEM_DIR/state"
|
|
10
10
|
|
|
11
|
+
_eagle_state_slug() {
|
|
12
|
+
printf '%s' "$1" | shasum | cut -c1-12
|
|
13
|
+
}
|
|
14
|
+
|
|
11
15
|
_eagle_state_fresh() {
|
|
12
16
|
local key="$1" project="$2" max_age_days="${3:-1}"
|
|
13
|
-
local
|
|
17
|
+
local safe_project; safe_project=$(_eagle_state_slug "$project")
|
|
18
|
+
local state_file="$_state_dir/${key}-${safe_project}"
|
|
14
19
|
[ -f "$state_file" ] && [ -z "$(find "$state_file" -mtime +${max_age_days} 2>/dev/null)" ]
|
|
15
20
|
}
|
|
16
21
|
|
|
17
22
|
_eagle_state_touch() {
|
|
18
23
|
local key="$1" project="$2"
|
|
24
|
+
local safe_project; safe_project=$(_eagle_state_slug "$project")
|
|
19
25
|
mkdir -p "$_state_dir" 2>/dev/null
|
|
20
|
-
touch "$_state_dir/${key}-${
|
|
26
|
+
touch "$_state_dir/${key}-${safe_project}"
|
|
21
27
|
}
|
|
22
28
|
|
|
23
29
|
eagle_sessionstart_auto_provision() {
|
package/package.json
CHANGED
package/scripts/health.sh
CHANGED
|
@@ -54,8 +54,8 @@ max_score=$((max_score + 25))
|
|
|
54
54
|
|
|
55
55
|
total_sessions=$(eagle_db "SELECT COUNT(*) FROM sessions WHERE project = '$p_esc';")
|
|
56
56
|
total_summaries=$(eagle_db "SELECT COUNT(*) FROM summaries WHERE project = '$p_esc';")
|
|
57
|
-
heuristic_summaries=$(eagle_db "SELECT COUNT(*) FROM summaries WHERE project = '$p_esc' AND
|
|
58
|
-
enriched_summaries=$(eagle_db "SELECT COUNT(*) FROM summaries WHERE project = '$p_esc' AND (decisions IS NOT NULL AND decisions != '' OR gotchas IS NOT NULL AND gotchas != ''
|
|
57
|
+
heuristic_summaries=$(eagle_db "SELECT COUNT(*) FROM summaries WHERE project = '$p_esc' AND (decisions IS NULL OR decisions = '') AND (gotchas IS NULL OR gotchas = '');")
|
|
58
|
+
enriched_summaries=$(eagle_db "SELECT COUNT(*) FROM summaries WHERE project = '$p_esc' AND (decisions IS NOT NULL AND decisions != '' OR gotchas IS NOT NULL AND gotchas != '');")
|
|
59
59
|
|
|
60
60
|
if [ "${total_sessions:-0}" -eq 0 ]; then
|
|
61
61
|
capture_pct=0
|
|
@@ -92,7 +92,7 @@ fi
|
|
|
92
92
|
|
|
93
93
|
if [ "${total_summaries:-0}" -gt 0 ]; then
|
|
94
94
|
if [ "$enrich_pct" -ge 50 ]; then
|
|
95
|
-
eagle_ok "Enriched: ${enriched_summaries}/${total_summaries} (${enrich_pct}%) have decisions/gotchas
|
|
95
|
+
eagle_ok "Enriched: ${enriched_summaries}/${total_summaries} (${enrich_pct}%) have decisions/gotchas"
|
|
96
96
|
score=$((score + 25))
|
|
97
97
|
elif [ "$enrich_pct" -ge 20 ]; then
|
|
98
98
|
eagle_warn "Enriched: ${enriched_summaries}/${total_summaries} (${enrich_pct}%) — LLM extraction may need tuning"
|
|
@@ -101,9 +101,9 @@ if [ "${total_summaries:-0}" -gt 0 ]; then
|
|
|
101
101
|
elif [ "${enriched_summaries:-0}" -gt 0 ]; then
|
|
102
102
|
eagle_fail "Enriched: ${enriched_summaries}/${total_summaries} (${enrich_pct}%)"
|
|
103
103
|
score=$((score + 5))
|
|
104
|
-
issues+=("${enrich_pct}% enrichment. Decisions/gotchas
|
|
104
|
+
issues+=("${enrich_pct}% enrichment. Decisions/gotchas mostly missing.")
|
|
105
105
|
else
|
|
106
|
-
eagle_fail "Enriched: 0/${total_summaries} — no summaries have decisions/gotchas
|
|
106
|
+
eagle_fail "Enriched: 0/${total_summaries} — no summaries have decisions/gotchas"
|
|
107
107
|
issues+=("Zero enrichment. Check provider config: eagle-mem config")
|
|
108
108
|
fi
|
|
109
109
|
else
|
package/scripts/memories.sh
CHANGED
|
@@ -16,8 +16,12 @@ eagle_ensure_db
|
|
|
16
16
|
|
|
17
17
|
# ─── Parse arguments ──────────────────────────────────────
|
|
18
18
|
|
|
19
|
-
action="
|
|
20
|
-
|
|
19
|
+
action="list"
|
|
20
|
+
case "${1:-}" in
|
|
21
|
+
-*) ;; # flags parsed below
|
|
22
|
+
"") ;;
|
|
23
|
+
*) action="$1"; shift ;;
|
|
24
|
+
esac
|
|
21
25
|
|
|
22
26
|
project=""
|
|
23
27
|
limit=20
|
package/scripts/statusline-em.sh
CHANGED
|
@@ -8,12 +8,14 @@ eagle_mem_statusline() {
|
|
|
8
8
|
local em_db="$HOME/.eagle-mem/memory.db"
|
|
9
9
|
[ -f "$em_db" ] || return
|
|
10
10
|
|
|
11
|
+
local SCRIPT_DIR; SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
12
|
+
. "$SCRIPT_DIR/../lib/common.sh"
|
|
13
|
+
|
|
11
14
|
local proj
|
|
12
|
-
proj=$(
|
|
15
|
+
proj=$(eagle_project_from_cwd "$project_dir")
|
|
13
16
|
[ -z "$proj" ] && return
|
|
14
17
|
|
|
15
|
-
|
|
16
|
-
proj=$(printf '%s' "$proj" | sed "s/'/''/g")
|
|
18
|
+
proj=$(eagle_sql_escape "$proj")
|
|
17
19
|
|
|
18
20
|
local cnt mem
|
|
19
21
|
cnt=$(echo ".headers off
|