Features
Quick Scan
Fast, lightweight code review for simple changes
Quick Scan
Quick Scan provides rapid feedback on straightforward pull requests, catching common issues without deep analysis.
How It Works
Quick Scan analyzes your diff for:
- Style inconsistencies - Formatting, naming conventions
- Common bugs - Null checks, off-by-one errors
- Documentation gaps - Missing or outdated comments
- Import issues - Unused imports, missing dependencies
When to Use Quick Scan
Quick Scan is perfect for:
- Documentation updates
- Minor bug fixes
- Configuration changes
- Simple refactors
- Typo corrections
Credit Usage
Quick Scan typically uses 10-20 credits per review, making it the most economical option for routine changes.
Example Output
[Style] Line 42: Consider using const instead of let for unchanging value
[Docs] Line 15-20: Function lacks JSDoc description
[Bug] Line 88: Potential null reference - add null check