From 3a4089b7a07e0052d9b1fc4b3c414bc1f46a852c Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 21 Jun 2026 02:30:27 +0000 Subject: [PATCH] chore(gitignore): ignore regenerable memory working-set + index The memory-orchestrator rewrites docs/memories/CONSOLIDATED.md (working set) and docs/memories/INDEX.md from scratch on every pass, exactly like the already- ignored .orchestrator-state.json. They are derived/regenerable artifacts, not source, and were showing up as perpetual untracked noise. Ignore them so only real, dated snapshot files (docs/memories/.md) stay tracked. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01LvLWMML8cpBq2q81kL1ByJ --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index ad2c8b4..a6ec1a8 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,8 @@ htmlcov/ # Memory orchestrator runtime state (regenerable; snapshots themselves stay committable) docs/memories/.orchestrator-state.json +# Derived working-set + index are rewritten from scratch on every orchestrator +# pass (like the state file above), so they are regenerable artifacts rather than +# source. The dated snapshot files (docs/memories/.md) remain tracked. +docs/memories/INDEX.md +docs/memories/CONSOLIDATED.md