- What diff formats does it accept?
- Unified diff (git diff output), GitHub patch format, and raw text pairs. Paste the output of 'git diff HEAD~1' directly.
- What does the complexity score measure?
- A heuristic combining: number of hunks, cyclomatic complexity of changed code blocks, and ratio of modified lines to total file size. Higher scores suggest higher review effort.
- Does it detect secrets in diffs?
- It runs a basic pattern scan for common secret formats (API key patterns, private key headers, high-entropy strings). Not a replacement for dedicated secret-scanning tools like gitleaks.