Hey, I can see a screenshot from Developer Tools.
The main issue that stands out is Error: spawn /usr/bin/git ENOENT. This means Cursor can’t find git on your system. Without git, KnowledgeBaseService codebase indexing won’t work, and that directly affects the quality and behavior of Cursor Tab completions.
The ConnectError: [unauthenticated] You must be a team member errors for getTeamCommands are expected if you’re not on a Team plan. You can ignore them.
A few questions so I can help more precisely:
- Are you working via WSL or Remote SSH? I see
vscode-remotein the logs. - If yes, is git installed inside WSL? Check by running
git --versionin the WSL terminal. - What Cursor version and OS are you on?
If git isn’t installed, on Ubuntu or WSL you can do:
sudo apt update && sudo apt install git
After installing git, restart Cursor and check if Cursor Tab suggestions show up. Let me know how it goes.
