From 7719aea103ad1e71c4ab753267881c696406be92 Mon Sep 17 00:00:00 2001 From: Bastien Chanot Date: Thu, 11 Jun 2026 19:09:44 +0200 Subject: [PATCH] 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 --- agents/analyzer.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/agents/analyzer.md b/agents/analyzer.md index 1cc67fc..739259e 100644 --- a/agents/analyzer.md +++ b/agents/analyzer.md @@ -66,7 +66,10 @@ OPEN QUESTIONS: - ``` -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. ---