Resume a multi-week project without re-briefing Claude every morning
Cuándo usarlo: You spend the first 10 minutes of every session re-explaining context that Claude had yesterday.
Requisitos previos
- Claude Code installed — npm install -g @anthropic-ai/claude-code
- claude-mem installed — npx claude-mem install (registers hooks in ~/.claude)
Flujo
-
Work normallyJust use Claude Code. claude-mem is passive — hooks capture events automatically.✓ Copiado→ localhost:37777 shows the memory stream updating as you work
-
Start tomorrow's sessionWhere did we leave off on the migration branch?✓ Copiado→ 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.✓ Copiado→ mem-search writes a correction; future recall prioritizes it
Resultado: Sessions feel continuous. The re-briefing ritual disappears.
Errores comunes
- 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