Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down