first push

This commit is contained in:
2026-06-04 16:20:56 -05:00
parent a663de4f29
commit 392ae7bbe3
111 changed files with 5312 additions and 0 deletions
@@ -0,0 +1,25 @@
# 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