From 00b298966fe337b33a1f777354776c02816afe54 Mon Sep 17 00:00:00 2001 From: Colby Mchenry Date: Thu, 7 May 2026 22:06:40 -0500 Subject: [PATCH] docs(readme): add Initialize Projects snippet to Get Started (#145) The top-level Get Started section showed the install command but not the per-project init step. Adding the same `cd your-project / codegraph init -i` block that lives in Quick Start so users see the full happy path before scrolling. Co-authored-by: Claude Opus 4.7 (1M context) --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 1adee46..3e99eb4 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,13 @@ npx @colbymchenry/codegraph ![1_C_VYnhpys0UHrOuOgpgoyw](https://github.com/user-attachments/assets/f168182f-4d9a-44e0-94d7-08d018cc8a3a) +#### Initialize Projects + +```bash +cd your-project +codegraph init -i +``` + ---