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.193 Home All releases olderv2.1.191 v2.1.195newer
Claude Code v2.1.193

GitHub Enterprise Host Detection

What

GitHub Enterprise Server instances (self-hosted GitHub) are now properly detected throughout the codebase, replacing hardcoded github.com comparisons with host-aware utility functions.

Details
  • New Em() function recognizes a hostname as GitHub.com (with or without www. prefix).
  • New ewr() and fgs() functions return the correct REST API and GraphQL endpoint URLs for both GitHub.com and GitHub Enterprise.
  • GH_HOST environment variable comparisons now use normalized host matching (ocn()) instead of exact string equality.
  • Marketplace git source fetches now use the constant github.com instead of a hardcoded literal string.
Evidence

Host detection utilities (search for "https://api.github.com" in ewr(), or "github.com" constant LA)

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.193 →