| name | code-graph |
| description | Optional code-navigation aid for large or unfamiliar codebases. Use during the plan or implement phases to map module dependencies, find where a symbol is defined and used, and orient before making changes. This is a navigation helper only — it is NOT the memory layer. Skip for small projects. |
Code Graph (navigation, optional)
Adapted from safishamsi/graphify. Builds a lightweight dependency/symbol map to orient in
big codebases. Not persistent memory — use memory-manager for that.
When to use
/plan on an existing large codebase → map current architecture before proposing changes.
/implement when a task touches unfamiliar modules → find definitions and call sites first.
What it provides
- Module/file dependency graph.
- Symbol definition → usages lookup.
- "What breaks if I change X" impact hints.
When NOT to use
- Small projects (a few files) — overhead not worth it.
- As a memory store — wrong tool; use
memory-manager.
Примітка (UK)
Допоміжний інструмент навігації для великих кодових баз: граф залежностей, пошук
визначень/використань символів, оцінка впливу змін. Це НЕ памʼять — для памʼяті є
memory-manager. Для маленьких проєктів не потрібен.