Screen reader mode requires Claude Code v2.1.181 or later. Earlier versions reject the
--ax-screen-reader flag with error: unknown option '--ax-screen-reader'.Turn on screen reader mode
Pick the method that matches how often you use a screen reader:- For one session: run
claude --ax-screen-reader. - For sessions started from one shell: set the
CLAUDE_AX_SCREEN_READERenvironment variable to1. In Bash or Zsh, runexport CLAUDE_AX_SCREEN_READER=1; in PowerShell, run$env:CLAUDE_AX_SCREEN_READER = "1". Add the line to your shell profile to cover every shell. - For every session on the machine: add
"axScreenReader": trueto your user settings file. This covers any terminal, including the VS Code integrated terminal.
The methods are listed in precedence order: the
--ax-screen-reader flag overrides the CLAUDE_AX_SCREEN_READER environment variable, which overrides the axScreenReader setting.[Screen Reader Mode: on via flag], [Screen Reader Mode: on via env], or [Screen Reader Mode: on via settings]. The method-naming format requires Claude Code v2.1.206 or later. When Claude Code relaunches itself, for example to finish installing an update, the new process inherits the mode through the CLAUDE_AX_SCREEN_READER environment variable, so its confirmation line reads [Screen Reader Mode: on via env] regardless of which method you used.
Earlier versions print [Accessible screen reader mode: on].
Turn off screen reader mode
Reverse whichever method turned the mode on: start without the flag, unset the environment variable, or setaxScreenReader to false. Setting CLAUDE_AX_SCREEN_READER=0 keeps the mode off even when the setting is true.
What your screen reader hears
In screen reader mode, Claude Code writes flat text:- no box-drawing characters for the interface chrome
- no color-only cues
- no redraws of content that hasn’t changed; progress spinners render as static text
- tables in Claude’s replies read as
Header: valuesentences instead of a box-character grid. Requires Claude Code v2.1.198 or later; earlier versions draw tables as grids even in screen reader mode.
tui setting; the setting has no effect while the mode is active. Attached background sessions still render fullscreen; see Known limitations.
Each message in the transcript starts with a label your screen reader announces, naming what it is: your messages, Claude’s replies, tool activity, errors, and prompts. The labels are also searchable, so you can jump between sections of the transcript by searching your terminal’s scrollback:
The terminal cursor follows the input caret, so a screen reader’s read-current-line command answers “where am I” with the prompt you’re editing.
Cycling permission modes with
Shift+Tab announces the mode you land on, such as [plan mode on] or [accept edits on]. Claude Code prints the announcement once and doesn’t repeat it on later redraws. Requires Claude Code v2.1.210 or later.
Jump between turns
Claude Code emits OSC 133 shell-integration markers at turn boundaries, so your terminal’s jump-to-previous-prompt key moves between turns without reading through the whole transcript:- iTerm2: Cmd+Shift+Up
- VS Code terminal: Ctrl+Up on Windows, Cmd+Up on macOS
- Windows Terminal: no key by default; bind the
scrollToMarkaction in its settings - Kitty and Ghostty: check the terminal’s documentation for its jump-to-prompt key
you: label instead.
Answer menus and prompts
In screen reader mode, menus you’d normally navigate with the arrow keys, including permission prompts, become numbered lists. Each option is announced as a numbered line, followed by anEnter selection prompt that names the valid range. Type the number of the option you want and press Enter.
- To cancel a dismissible menu: press Escape. Its prompt ends with
or Escape to cancel. - If you type a number that isn’t on the list: Claude Code announces the valid range and lets you try again.
y or n and press Enter. yes and no also work.
Hear when Claude Code needs you
In screen reader mode, Claude Code rings the terminal bell when it needs your attention, so you don’t have to keep checking the transcript. The bell rings when:- Claude finishes a reply
- a permission prompt appears
- a tool that ran longer than 5 seconds finishes
preferredNotifChannel to "terminal_bell" for similar alerts when Claude is waiting on you. See Get a terminal bell or notification.
Accessibility settings beyond screen reader mode
These options address accessibility needs outside of screen reader mode. All of them work alongside it.- The
CLAUDE_CODE_ACCESSIBILITYenvironment variable is for screen magnifiers. SetCLAUDE_CODE_ACCESSIBILITY=1to keep the native terminal cursor visible so that magnifiers, such as macOS Zoom, can track the cursor position. - The
prefersReducedMotionsetting reduces or disables spinners, shimmer, and other animations without changing the rest of the interface. - The
themesetting selects the interface colors, including the colorblind-friendlydark-daltonizedandlight-daltonizedthemes.
Known limitations
Some behaviors aren’t adapted for screen reader mode:- Screen reader mode doesn’t turn on automatically when a screen reader is running.
- Claude Code doesn’t announce a permission mode change made in any way other than cycling with
Shift+Tab, such as entering plan mode from a command. - Attaching to a background session with
claude attachor from agent view enters the terminal’s alternate screen, which has no native scrollback. This is the same behavior as other attached sessions. To get back out, press Left Arrow on an empty prompt, or Ctrl+Z if a dialog has focus. - Claude Code announces costs in the summary it prints at exit, not per turn.
- Screen reader mode doesn’t change non-interactive mode with the
-pflag. Non-interactive mode already writes plain text and remains an alternative for scripting.
Report an issue
If something doesn’t work with your screen reader, magnifier, or terminal, open an issue on the Claude Code issue tracker and mention your assistive technology in the title. Include your operating system, terminal application, and assistive technology name and version in the report.Related resources
These pages hold the full reference entries and related setup for what this page covers:- Settings: the
axScreenReader,prefersReducedMotion,theme, andpreferredNotifChannelentries - Environment variables: the
CLAUDE_AX_SCREEN_READERandCLAUDE_CODE_ACCESSIBILITYentries - CLI reference: the
--ax-screen-readerflag - Terminal configuration: bells, notifications, and themes outside screen reader mode
- Non-interactive mode: scripted
claude -pruns, which write plain text without screen reader mode