Add a --since <git-ref> flag that restricts the export to only files changed since a given git reference (commit hash, branch name, or tag). Internally this would run git diff --name-only <ref> and intersect the result with the normal scan output.
excod . --since main
excod . --since HEAD~5
excod . --since v1.0.2
This dramatically reduces output size for incremental code reviews and keeps LLM context focused on recent changes.
Priority: Medium
Add a
--since <git-ref>flag that restricts the export to only files changed since a given git reference (commit hash, branch name, or tag). Internally this would rungit diff --name-only <ref>and intersect the result with the normal scan output.This dramatically reduces output size for incremental code reviews and keeps LLM context focused on recent changes.
Priority: Medium