26 lines
917 B
Markdown
26 lines
917 B
Markdown
# Agent Memory Index
|
|
|
|
This is the entry point for Claude when reading memory. Files in `memory/`
|
|
are read on demand based on the conversation.
|
|
|
|
## Read at session start
|
|
|
|
1. `memory/profile.md` — facts about Jason, role, preferences
|
|
2. The most relevant file under `memory/projects/` if a specific project is in play
|
|
|
|
## Write when
|
|
|
|
- Jason says "remember", "save", or "log this"
|
|
- A non-obvious decision is made → `memory/decisions/`
|
|
- A working session ends with substance → `memory/sessions/`
|
|
- Unsure where it goes → `memory/inbox.md`
|
|
|
|
## Folder map
|
|
|
|
- `memory/profile.md` — persistent facts about Jason
|
|
- `memory/projects/<slug>.md` — long-running project state
|
|
- `memory/sessions/YYYY-MM-DD-<slug>.md` — per-conversation logs
|
|
- `memory/people/<name>.md` — context about people
|
|
- `memory/decisions/<date>-<slug>.md` — decision records
|
|
- `memory/inbox.md` — uncategorized notes to triage later
|