The memory vault is a local, gitignored space for storing session learnings, runbooks, and operational notes. It is designed for fast filesystem search without polluting the repo history.
Location
memory/- Contents are ignored by git; only
.gitignoreand.gitkeepare tracked
Recommended structure
- Organize by content area to keep searches focused
- Example:
memory/helius/memory/ejabberd/memory/moonshot/
How to use
- Create a new topic folder if needed under
memory/. - Add a concise, searchable markdown file.
- Prefer one topic per file; name it for what you would search.
Example
mkdir -p memory/infra
vim memory/infra/tailscale-ops.mdNotes
- The vault is local-only; don’t expect changes to be shared via git.
- If you want a shared, versioned record, move the file into
docs/instead.