fix(analyzer): resolve memory-update vs read-only contradiction

"Update project memory" instructed file writes while RULES say
"Do not modify files". Patterns now surface in the analysis output;
persistence stays in the main thread via the gated capitalize flow.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Bastien Chanot 2026-06-11 19:09:44 +02:00
parent 83e9871bc4
commit 7719aea103

View File

@ -66,7 +66,10 @@ OPEN QUESTIONS:
- <ambiguity to clarify>
```
Update project memory with discovered patterns and conventions.
Surface discovered patterns and conventions in the analysis output
(CONTEXT / KEY COMPONENTS) — never write them to files yourself: the
"Do not modify files" rule wins. Persisting to `.claude/memory/`
happens in the main thread via the gated capitalize flow.
---