eagle-mem 2.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/README.md +6 -5
  2. package/package.json +1 -1
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eagle-mem",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Persistent memory for Claude Code — SQLite + FTS5, no daemon, no bloat",
5
5
  "bin": {
6
6
  "eagle-mem": "bin/eagle-mem"