From 8d3f478acddd9bdf2ac7b8e9761f15a6a9d5d7e2 Mon Sep 17 00:00:00 2001 From: Leonid Pershin Date: Thu, 11 Jun 2026 05:19:57 +0300 Subject: [PATCH] Document echovault memory workflow in CLAUDE.md Load memory_context at session start, search before topic work, save decisions/bugs/gotchas before ending a session. Co-Authored-By: Claude Fable 5 --- CLAUDE.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index dfaf5df..74e2305 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -61,3 +61,13 @@ dotnet run --project samples/MrGameEng.Sample - Nullable reference types enabled, warnings as errors, file-scoped namespaces. - Public engine API requires XML doc comments (English). - Tests: xUnit, named `Method_Scenario_Expectation`. + +## Memory (echovault MCP) + +- At session start, call `memory_context` to load prior decisions for this project; + call `memory_search` before working on a topic that may have prior context + (e.g. "renderer", "transitions", "generator"). +- Before ending a session where you decided, fixed or learned something, save it with + `memory_save`: decisions (X over Y + why), bug root causes, non-obvious gotchas + (e.g. Friflo/Myra API traps). Write for a future agent with zero context. +- Don't save what the repo already records (code, docs/, git history) or trivia.