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

Screen Reader Mode: Cursor Visibility

What

When accessibility mode or screen reader detection is enabled, the cursor is no longer hidden when leaving alternate screen mode.

Details
  • Previously, the \x1B[?25l (hide cursor) escape was always sent. Now it is skipped when accessibilityMode or isScreenReaderEnabled is true.
  • Screen-reader-driven tools often rely on the cursor being visible for navigation.
Evidence

Conditional cursor-hide escape (search for "accessibilityMode || this.isScreenReaderEnabled")

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 →