claude-code - 💡(How to fix) Fix ultrareview crashed before producing findings + rate limit error — 2nd occurrence same account, all 3/3 free quota now consumed [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#56203Fetched 2026-05-06 06:34:26
View on GitHub
Comments
1
Participants
2
Timeline
8
Reactions
0
Author
Timeline (top)
labeled ×5cross-referenced ×2commented ×1

Second /ultrareview crash on the same account today, this time on a different repository (monorepo with proper SessionStart hook for dependency install). All 3/3 free runs now consumed with 0 findings produced.

Error Message

API Error: Server is temporarily limiting requests (not your usage limit) · Rate limited

Root Cause

Second /ultrareview crash on the same account today, this time on a different repository (monorepo with proper SessionStart hook for dependency install). All 3/3 free runs now consumed with 0 findings produced.

Code Example

{"error":"Review crashed before producing findings. See session logs for details."}

---

API Error: Server is temporarily limiting requests (not your usage limit) · Rate limited

---

{
     "hooks": {
       "SessionStart": [{
         "matcher": "startup|resume",
         "hooks": [{
           "type": "command",
           "command": "if [ \"$CLAUDE_CODE_REMOTE\" = \"true\" ]; then pnpm install --frozen-lockfile; fi"
         }]
       }]
     }
   }
RAW_BUFFERClick to expand / collapse

Summary

Second /ultrareview crash on the same account today, this time on a different repository (monorepo with proper SessionStart hook for dependency install). All 3/3 free runs now consumed with 0 findings produced.

Repro

Command/ultrareview 2 (PR mode)
Repodhscfh/twexam (private)
PRhttps://github.com/dhscfh/twexam/pull/2
Sessionhttps://claude.ai/code/session_01XyEq1rMbLt7aweqCpXG5ns
Diff size338 files / +51,868 / -11
Stackpnpm + Turborepo monorepo (Next.js 16, Capacitor 8, Supabase)
Free runs at start3/3
Free runs after0/3 (last one consumed)

What happened

CLI launched the cloud session successfully. After the usual wait the task completed with this exact payload:

{"error":"Review crashed before producing findings. See session logs for details."}

Concurrently the CLI surfaced:

API Error: Server is temporarily limiting requests (not your usage limit) · Rate limited

(Status page https://status.claude.com showed all systems operational at the time, no public incident posted.)

What I had done to avoid the known crash bug

Read the docs and prior issues (#55031, #54871, #53455, #54812, #49905) before launching. Specifically prepared:

  1. PR-mode review (not branch bundle) — clone-from-GitHub path is more reliable than bundle upload per docs

  2. SessionStart hook committed to repo at .claude/settings.json:

    {
      "hooks": {
        "SessionStart": [{
          "matcher": "startup|resume",
          "hooks": [{
            "type": "command",
            "command": "if [ \"$CLAUDE_CODE_REMOTE\" = \"true\" ]; then pnpm install --frozen-lockfile; fi"
          }]
        }]
      }
    }
  3. Repo state clean: pnpm type-check 11/11 PASS, pnpm test 85 tests PASS, pnpm build PASS locally before push

  4. Constructed a dedicated review base branch to keep PR scope tight (excluded data/docs/.autoflow noise)

→ Setup-script-missing is not the cause here. The crash is in the review pipeline itself.

Same-account, same-day pattern

Earlier today I had the exact same crash on a different repo (dhscfh/stgfolio PR #4), already documented:

  • Standalone issue: #56202
  • Cross-comment on the master tracking issue: #55031 (first reply)

That crash also consumed a free run. Plus this one. Plus an earlier one. = 3/3 free runs consumed today, 0 findings produced, ~30 minutes of cloud sandbox time wasted.

The free runs expire today (May 5, 2026) per the docs, so I have no recourse to retry — these crashes effectively converted my entire trial allotment into nothing.

Asks

  1. Refund all 3 free runs to my account — none of them produced any output. Per the docs "a run counts once the remote session starts," but there are now ~9 open issues (#55031, #54871, #53455, #54812, #54516, #53301, #52780, #49905, #56202) where users have hit this same crash class and asked the same. The pattern is too consistent to be edge-case.
  2. Investigate the rate-limit + crash co-occurrence — the simultaneous "Server is temporarily limiting requests" + "Review crashed" suggests the cloud sandbox provisioner is failing under load and surfacing a generic crash to the user, not a real review-pipeline bug. Worth distinguishing in telemetry.
  3. Make crash failures NOT consume quota — if the review never produced findings, charging it as a successful run is asymmetrical. This has been requested across most of the linked issues.

Environment

  • Claude Code v2.1.x (latest stable as of 2026-05-05)
  • macOS 25.4.0 (Darwin)
  • Pro subscriber
  • No proxy / VPN / IP allowlist on the org

Related

  • #55031 (master tracking, also commented there from this account)
  • #56202 (standalone issue I opened earlier today for the stgfolio crash)
  • #54871, #53455, #54812, #54516, #53301, #52780, #49905 (similar reports)

extent analysis

TL;DR

The most likely fix is to investigate and address the rate-limiting issue that coincides with the review crash, potentially by optimizing the cloud sandbox provisioner to handle load better.

Guidance

  • Investigate the correlation between the "Server is temporarily limiting requests" error and the review crash to determine if the crash is a result of the rate limiting.
  • Review the session logs for details on the crash, as suggested by the error message.
  • Consider implementing a retry mechanism or exponential backoff for requests that encounter rate limiting to prevent crashes.
  • Evaluate the current quota consumption policy to determine if it's fair to charge for runs that don't produce findings due to crashes.

Example

No code example is provided as the issue is more related to the infrastructure and configuration rather than a specific code snippet.

Notes

The issue seems to be related to the cloud sandbox provisioner failing under load, and the rate-limiting error might be a symptom of this issue. The fact that multiple users have reported similar issues suggests that this might be a systemic problem.

Recommendation

Apply a workaround by implementing a retry mechanism or exponential backoff for requests that encounter rate limiting, and consider refunding the free runs that were consumed due to crashes, as they did not produce any output. This would help mitigate the issue until a more permanent fix can be implemented.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix ultrareview crashed before producing findings + rate limit error — 2nd occurrence same account, all 3/3 free quota now consumed [1 comments, 2 participants]