01
Code review issue detection
The core capability: analyzing a pull request diff with project context, surfacing real bugs and code issues, and explaining how to fix them.
“you retain full ownership of all code and suggestions provided during the review process” www.korbit.ai
Mapped capabilities
4 capabilities
Bug identification in a diff
Flags defects introduced by the changed lines rather than restating the diff.
Fix explanation quality
Each flagged issue comes with an actionable explanation of how to correct it.
Precision and hallucination control
Avoids inventing issues, symbols, or behavior not present in the reviewed code.
Low-value issue filtering
Suppresses noise and trivial nits so high-impact findings stay visible.
Illustrative example
- Input
- A pull request diff adds a Python function that calls `user.profile.email` immediately after a lookup that can return `None`, with no guard on the result.
- Expected behavior
- Korbit flags the unguarded dereference on the changed line as a potential runtime failure and explains a concrete fix, such as checking the lookup result before accessing the attribute.