From 5edce0075ff24a22c5a214a04a93ce86e3f3050b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=80lex=20Serra?= Date: Mon, 13 Jul 2026 22:14:52 +0200 Subject: [PATCH] docs: expand team-setup gitignore recommendations Adds missing local-only entries that teams should gitignore when committing graphify-out/: memory/ (personal Q&A annotations), reflections/ (derived from memory), .graphify_* hidden metadata files (local paths, markers, incremental caches), and dated backup snapshots. Also notes .graphify_labels.json as optionally committable for teams that curate community labels together. Co-Authored-By: Claude Sonnet 4.6 (1M context) --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 0a883e75b..52b837532 100644 --- a/README.md +++ b/README.md @@ -417,7 +417,12 @@ dist/ **Recommended `.gitignore` additions:** ``` graphify-out/cost.json # local only +graphify-out/memory/ # personal Q&A annotations (graphify save-result) +graphify-out/reflections/ # derived from memory/, local only +graphify-out/.graphify_* # local metadata (paths, markers, incremental caches) +graphify-out/????-??-??/ # dated backup snapshots # graphify-out/cache/ # optional: commit for speed, skip to keep repo small +# graphify-out/.graphify_labels.json # un-ignore if your team curates community labels together ``` > `manifest.json` is now portable — keys are stored as relative paths and re-anchored on load, so committing it is safe and avoids a full rebuild on first checkout.