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.
- package/README.md +6 -5
- 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:
|
|
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
|
-
│ ├──
|
|
112
|
-
│
|
|
113
|
-
|
|
114
|
-
├──
|
|
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/
|