chore: init from code-review-graph-main snapshot (v2.3.7)

This commit is contained in:
dev
2026-08-05 13:16:12 +08:00
commit 82b7c6dc9e
358 changed files with 118525 additions and 0 deletions
@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<!-- edges -->
<line x1="6" y1="6" x2="18" y2="6" />
<line x1="6" y1="6" x2="6" y2="18" />
<line x1="18" y1="6" x2="12" y2="18" />
<line x1="6" y1="18" x2="12" y2="18" />
<!-- nodes -->
<circle cx="6" cy="6" r="2.5" fill="currentColor" />
<circle cx="18" cy="6" r="2.5" fill="currentColor" />
<circle cx="6" cy="18" r="2.5" fill="currentColor" />
<circle cx="12" cy="18" r="2.5" fill="currentColor" />
</svg>

After

Width:  |  Height:  |  Size: 611 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

@@ -0,0 +1,7 @@
## Build Your Graph
Click the button above to parse your codebase and create a knowledge graph.
This usually takes ~10 seconds for a 500-file project. The graph will be stored locally in `.code-review-graph/graph.db`.
After the initial build, the graph updates automatically when you save files.
@@ -0,0 +1,10 @@
## Explore Your Code
Open the **Code Graph** panel in the activity bar to browse your codebase structure.
**Try these commands** (Ctrl+Shift+P):
- **Code Graph: Show Blast Radius** -- See what's impacted when you change code
- **Code Graph: Find Callers** -- Find all callers of a function
- **Code Graph: Find Tests** -- Find tests for any function
- **Code Graph: Search** -- Search across your entire code graph
- **Code Graph: Show Graph** -- Open the interactive graph visualization
@@ -0,0 +1,17 @@
## Install the Backend
code-review-graph needs a Python backend to parse your codebase.
**Requirements:** Python 3.10+
**Recommended:** Install via [uv](https://docs.astral.sh/uv/):
```bash
uv pip install code-review-graph
```
**Alternatives:**
```bash
pipx install code-review-graph
# or
pip install code-review-graph
```