From c00db8d82d89a457b6b10cafb8f072e08559a6dd Mon Sep 17 00:00:00 2001 From: saketgoswami09 Date: Tue, 14 Jul 2026 10:00:18 +0530 Subject: [PATCH] docs: expand team-setup gitignore recommendations --- README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0a883e75b..680a176d4 100644 --- a/README.md +++ b/README.md @@ -415,13 +415,24 @@ dist/ `graphify-out/` is meant to be committed to git so everyone on the team starts with a map. **Recommended `.gitignore` additions:** -``` -graphify-out/cost.json # local only -# graphify-out/cache/ # optional: commit for speed, skip to keep repo small + +```gitignore +graphify-out/cost.json +graphify-out/memory/ +graphify-out/reflections/ +graphify-out/.graphify_* +graphify-out/????-??-??/ + +# Optional: commit cache for speed, or ignore it to keep the repo small +# graphify-out/cache/ + +# Optional: uncomment if your team does not want to share labels +# graphify-out/.graphify_labels.json ``` > `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. + **Workflow:** 1. One person runs `/graphify .` and commits `graphify-out/`. 2. Everyone pulls — their assistant reads the graph immediately.