eagle-mem 2.0.0 → 2.0.2

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
@@ -51,7 +51,7 @@ Eagle Mem hooks into Claude Code's lifecycle to solve the context loss problem:
51
51
 
52
52
  | Command | What it does |
53
53
  |---------|-------------|
54
- | `eagle-mem refresh` | Full project sync: overview + scan + index + memories + tasks |
54
+ | `eagle-mem refresh` | Full project sync: scan + index + memories sync in one command |
55
55
  | `eagle-mem search <query>` | FTS5 search across summaries, memories, and code chunks |
56
56
  | `eagle-mem search --timeline` | Recent sessions in chronological order |
57
57
  | `eagle-mem overview` | View or set the project overview |
@@ -108,10 +108,11 @@ Package (npm) Runtime (~/.eagle-mem/)
108
108
  │ ├── prune.sh ├── lib/
109
109
  │ ├── scan.sh │ ├── common.sh
110
110
  │ ├── index.sh │ ├── db.sh
111
- │ ├── refresh.sh │ └── hooks.sh
112
- └── help.sh └── db/
113
- ├── hooks/ Source ├── schema.sql
114
- ├── lib/ Source └── [0-9]*.sql Migrations
111
+ │ ├── memories.sh │ └── hooks.sh
112
+ ├── refresh.sh └── db/
113
+ │ └── help.sh ├── schema.sql
114
+ ├── hooks/ Source └── [0-9]*.sql Migrations
115
+ ├── lib/ Source
115
116
  ├── db/ Source
116
117
  └── skills/ → ~/.claude/skills/
117
118
  ├── eagle-mem-search/
package/lib/hooks.sh CHANGED
@@ -13,7 +13,7 @@ eagle_patch_hook() {
13
13
 
14
14
  if jq -e ".hooks.${event}[]? | select(.hooks[]?.command == \"$command\")" "$settings" &>/dev/null; then
15
15
  [ -n "$description" ] && eagle_ok "$description ${DIM}(already registered)${RESET}"
16
- return
16
+ return 0
17
17
  fi
18
18
 
19
19
  local entry
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eagle-mem",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Persistent memory for Claude Code — SQLite + FTS5, no daemon, no bloat",
5
5
  "bin": {
6
6
  "eagle-mem": "bin/eagle-mem"