When using the code review agent (attempting to use) despite having a bunch of changes in the various repo’s attached to the cursor project directory (top level cursor directory is not git, subdirectories are not). the agent always says “no issues found”. Would be good to use the same source of truth as the source control module if possible.
Steps to Reproduce
Not clear.
Operating System
MacOS
Current Cursor Version (Menu → About Cursor → Copy)
Hey, thanks for the report. The AI Code Review feature is very new, and it looks like it might not be detecting changes in git repositories that live in subdirectories.
Could you please share:
A screenshot of the “no issues found” message.
The git status from one of your subdirectory repos that has changes.
How you’re opening the project (are you opening a top-level non-git folder in Cursor?).
A screenshot of your source control panel showing the changes.
The review agent is designed to sync with your git changes, so this information will help us see whether the issue is with detecting your subdirectory repo structure.
In the meantime, you can try opening one of the subdirectory repos directly and check if the code review agent detects the changes in that setup.
% git status
On branch main
Your branch is up to date with ‘origin/main’.
Changes not staged for commit:
(use “git add …” to update what will be committed)
(use “git restore …” to discard changes in working directory)
modified: [filename.tsx]
modified: [filename.tsx]
modified: [filename.tsx]
modified: [filename.tsx]
modified: [filename.tsx]
Untracked files:
(use “git add …” to include in what will be committed)
[directory name]
no changes added to commit (use “git add” and/or “git commit -a”)
——
Yes I open the top level directory in cursor, not any one of the individual repos.