Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.208 Home All releases olderv2.1.207 v2.1.209newer
Claude Code v2.1.208

GitHub App check now returns default branch and transient status

What

The internal GitHub App preflight check now returns the repository's default branch (when available from the API response) and a transient flag distinguishing permanent failures from those that might succeed on retry.

Details
  • defaultBranch: populated from repo.default_branch in the API response; used by the remote agent to avoid reusing the default branch as its work branch
  • transient: true: network errors, timeouts (408, 429), and null-response profile fetches
  • transient: false: deterministic failures like missing token scopes or 4xx non-rate-limit responses
  • Improved log message when org UUID is missing: distinguishes between "profile fetch null (possibly transient)" and "token lacks user:profile scope (deterministic)"
Evidence

GitHub App check refactor (search for "checkGithubAppInstalled: No org UUID found (token lacks user:profile scope")

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.208 →