Resume a multi-week project without re-briefing Claude every morning
Quand l'utiliser : You spend the first 10 minutes of every session re-explaining context that Claude had yesterday.
Prérequis
- Claude Code installed — npm install -g @anthropic-ai/claude-code
- claude-mem installed — npx claude-mem install (registers hooks in ~/.claude)
Déroulement
-
Work normallyJust use Claude Code. claude-mem is passive — hooks capture events automatically.✓ Copié→ localhost:37777 shows the memory stream updating as you work
-
Start tomorrow's sessionWhere did we leave off on the migration branch?✓ Copié→ Claude recalls concrete facts + cites observation IDs
-
Correct misrememberingThat's wrong about the DB schema — we decided to keep the v1 field. Mark that observation as corrected.✓ Copié→ mem-search writes a correction; future recall prioritizes it
Résultat : Sessions feel continuous. The re-briefing ritual disappears.
Pièges
- Memory recalls stale facts after you change course — Explicitly mark corrections; mem-search respects recency and overrides
- Sensitive code snippets get captured — Wrap them in
<private>...</private>tags; hooks skip private blocks