Cursor Bugbot completes in 53s on a 272-file PR — suspiciously fast, likely not running checks properly

Where does the bug appear (feature/product)?

BugBot

Describe the Bug

Cursor BugBot completed a review on a large PR (272 files changed, develop → main) in only 53 seconds, reporting “Successful in 53s — Bugbot Review” with no issues found.

This is highly suspicious. On smaller PRs with just 1–2 files changed, BugBot typically runs for 6–10 minutes. A PR with 272 changed files should take significantly longer to analyze, not faster. It appears BugBot may have skipped or short-circuited its analysis entirely, giving a false “all clear” on a very large changeset.

PR reference: https://github.com/heylibby/HeyLibbyAmplify/pull/2909

Steps to Reproduce

  1. Have a GitHub repository connected to Cursor BugBot.
  2. Open a large PR with many files changed (e.g., 272 files, develop → main branch).
  3. Trigger BugBot review on the PR.
  4. Observe that BugBot completes in ~53 seconds and reports no issues.
  5. Compare with a small PR (1–2 files) where BugBot takes 6–10 minutes to complete.

Expected Behavior

BugBot should take proportionally longer to analyze larger PRs. A 272-file PR should be reviewed thoroughly and take several minutes (similar to or longer than small PRs). If BugBot cannot handle very large PRs, it should indicate this explicitly rather than returning a false “no issues found” result in under a minute.

Operating System

MacOS

Version Information

BugBot (GitHub integration) — version not directly visible. Cursor IDE latest version on macOS.

Does this stop you from using Cursor

Sometimes - I can sometimes use Cursor

Hey, thanks for the detailed report. I get why 53 seconds on a 272-file PR looks suspicious, but in this case it’s expected behavior, not a skipped analysis.

BugBot runtime doesn’t depend on the number of files, it depends on how much real model inference it has to do. Before reviewing, BugBot filters out things that aren’t useful for review like lockfiles, binary and auto-generated files, node_modules/, dist/, very large files, and then it works on the remaining diff within a fixed budget. On merge PRs like develop→main, most of those 272 files usually get filtered out, so the effective diff is small and the review finishes quickly.

Because of that, sometimes a small PR with 1 or 2 files but non-trivial logic can take longer than a big merge. In that case the model does more iterations and pulls more context.

If you want to check what BugBot actually analyzed on this PR, leave a comment on it:

bugbot run verbose=true

This will start a fresh review with more detailed output and show what diff it used. If anything still looks like it was missed, send it here and we can dig deeper.

Also, on the free tier, the number of BugBot runs per PR is limited, so keep that in mind.

hey @deanrie that was not the case!

After a few retries, it ended up having good findings for us, but it didn’t work at first1