code-review
Review pull requests to code-graph-rag, a multi-language code graph parser. Focuses on graph-edge correctness in language parsers, cross-language consistency, and test fixtures that actually exercise the fix.
소스 정보
- 저장소
- vitali87/code-graph-rag
- 최근 소스 활동
- 2026년 9월 20일 23:44
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5,164
- 포크
- 682
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SKILL.md 표시 중
SKILL.md
소스 지침 · 읽기 전용 미리보기- name
- code-review
- description
- Review pull requests to code-graph-rag, a multi-language code graph parser. Focuses on graph-edge correctness in language parsers, cross-language consistency, and test fixtures that actually exercise the fix.
# Reviewing code-graph-rag
This repository parses source in many languages with tree-sitter and ingests the
result into a code graph: nodes for modules, classes and functions, edges such as
`CALLS`, `INSTANTIATES`, `DEFINES` and `IMPORTS`. Most defects that reach `main`
are wrong or missing *edges* for a specific language construct, not crashes.
Weight the review accordingly.
## Highest-value checks
### Graph-edge correctness
- Does a new or changed construct produce every edge it should, and no edge it
should not? A constructor call is the recurring example: it should record
`INSTANTIATES` on the class *and* `CALLS` on the constructor.
- Check the qualified name the edge is attached to. Name-mangling bugs recur
here: duplicate-suffixed classes, verbatim identifiers (`@class` in C#),
named constructors, generics (`Box<int>()`) and marker-stripping passes have
each produced an edge pointing at a name that no node has.
- Resolution must respect scope. A local variable shadowing a type means the
receiver is not a construction; flag resolution that matches on bare name
without checking what is actually in scope.
### Language coverage and consistency
- A fix in one language's parser usually applies to its siblings. If the change
touches `dart/`, ask whether `csharp/`, `cpp/`, and the rest share the shape
and need the same fix — or say explicitly why they do not.
- Grammars are optional at install time. Code and tests must not assume a
grammar is present; tests for one language should skip cleanly without it.
### Tests
- Every behavioral fix needs a fixture reproducing the exact construct, and the
fixture must be *valid source in that language* — an invalid fixture can pass
for the wrong reason. Verify the assertion would fail without the fix.
- Prefer asserting on specific edges between specific qualified names over
asserting on counts, which pass accidentally.
## Repository conventions
- Python 3.12, `ruff` (line length 88), and `uv` for dependencies. Any
dependency change must update `uv.lock`; CI fails on drift via `uv lock --check`.
- Comments explain *why*, not what. Match the density of surrounding code.
## Calibration
Report correctness problems: a wrong edge, a missed construct, a fixture that
does not test the fix, a resolution that ignores scope. Do not report style that
`ruff` already enforces, and do not restate what the diff does. If the change is
correct, say so briefly rather than inventing findings.
GitHub에서 보기