a11yagent: An LLM-based discoverability agent for VS Code

Sreelakshmi S B · May 20, 2026

Did you know that VS Code currently has over 73 accessibility-related settings?

Many of these settings have been designed to support blind and low-vision (BLVI) developers. But given the sheer number of these settings and the pace at which they are introduced and changed, they risk not being discovered and used in practice.

Screenshot of a VS Code window with the settings editor open and the search filter @tag:accessibility applied. Accessibility settings displayed on screen include Editor settings for Accessibility Page Size (set to 500), Accessibility Support(set to on), variable fonts (unchecked), screen reader announcements for inline suggestions(enabled), and workbench settings for Reduce Motion(set to auto) and Reduce Transparency (set to off).
Screenshot showing accessibility settings within the VS Code settings editor.

Introducing a11yagent

a11yagent is a VS Code extension that helps BLVI developers discover features and troubleshoot accessibility-related issues within VS Code. It provides an interactive chat participant where users can ask questions about VS Code, and find and track updates related to accessibility issues they are facing in VS Code. You can install and start using a11yagent from the Visual Studio Code marketplace here!

Screenshot of the a11yagent VS Code extension in the VS Code marketplace. The author is listed as IDEA, and the description reads 'A VS Code Extension that helps screen reader users discover accessibility features and troubleshoot accessibility-related issues in VS Code.'
a11yagent VS Code extension.

Is such a tool necessary?

1. VS Code has a rapidly evolving set of accessibility features

VS Code’s official monthly release notes indicate around 3 accessibility-related features being introduced or changed every month, with some months having as many as 11 changes (based on data from January 2021 to June 2025).

Line graph showing trends in accessibility updates from 2021 to 2025 - number of documented updates between January 2021 and June 2025. The values fluctuate between 0 and 11, with several peaks and dips. Mopst values lie between 2 and 4
Line graph showing trends in accessibility updates from 2021 to 2025.

2. Users have a lot of questions about these features

An analysis of posts on program-l - the popular discussion forum used by BLVI developers - indicates several discoverability challenges faced by BLVI developers in using these features. Users frequently ask about the use of specific features and are unsure about which features meet their specific requirements,if any. Queries are more frequent for features like the Editor, Terminal, and Sound cues.

Bar chart showing the number of queries in program-l corresponding to different VS Code features. There are 17 bar charts corresponding to 17 different feature categories: General, Settings, Editor, Terminal, Copilot Chat, Debugger, Output Pane, Status Bar, Errors, Accessible View, Accessible Diff Viewer, Copilot Suggestions, IntelliSense, Keyboard Navigation, Keybindings, Sound Cues and Speech, Notifications and Alerts. The highest number of queries are about the Editor(26), followed by Terminal(15), Sound cues and speech(14), and the general category(14).
Distribution of program-l queries about different VS Code features (January 2021 to December 2025).

GitHub Copilot - the built-in chat agent in VS Code - could provide the requored guidance for using various features within VS Code. However, in practice, Copilot frequently provides inadequate responses when asked about accessibility features in VS Code. Its answers are often UI-based, even when the IDE is used in its ‘screen-reader optimized’ mode.

Screenshot of the VS Code chat interface showing a conversation between the user and Copilot. The user asks how to view a Copilot code suggestion without accepting it. Copilot responds with a six-step process: (1) Trigger Copilot Suggestions using Alt+\ (Windows/Linux) or Option+\ (macOS); (2) Navigate Suggestions using arrow keys (3) Review Suggestions inline using screen reader announcements while navigating (4) Dismiss Suggestions using Esc if needed (5) Access the Copilot Panel using Ctrl+Enter (Windows/Linux) or Cmd+Enter (macOS) to browse multiple suggestions and (6) Enable Accessibility Features
Copilot answering a question about viewing a code suggestion.
Screenshot of the VS Code chat interface showing a conversation between the user and Copilot. The user asks how to reduce the volume of accessibility signals in VS Code. Copilot offers two suggestions: (1) System Accessibility Features - for macOS features like VoiceOver, adjust volume via System Settings > Accessibility > Audio or the system volume; (2) Web Accessibility — for audio signals in a web project, use the volume property of the JavaScript Audio object.
Copilot answering a question about reducing the volume of accessibility signals.

How does a11yagent work?

a11yagent uses the same language models that GitHub Copilot uses, but grounds its answers in accessibility-specific data extracted from various sources, including the official VS Code documentation, release notes, settings, default keybindings, signals/announcements, VS Code repos, and telemetry logs so that the generated answers are more relevant for BLVI developers.

Flowchart showing how a11yagent works. After the user sends a query,  it (1) fetches relevant accessibility sources, then (2) uses the language model API to send a request with added context and a system prompt, and finally (3) generates a response. If the user query contains an issue, it also (1) optimizes the query and (2) fetches relevant GitHub issues from the VS Code repo using the GitHub MCP server. These are then added to the generated response.
Flowchart showing how a11yagent processes user queries.


Features

Accessibility chat participant

Users can ask accessibility-related questions (how to use specific settings, what accessibility features of VS Code might be helpful for a particular workflow, how to fix an issue they are facing in using a feature, etc.) by invoking the agent with @a11yagent. They can also ask follow-up questions if the initial response doesn’t fully address their query.

Screenshot of the VS Code chat interface showing a conversation between the user and a11yagent. The user asks how to reduce the volume of accessibility signals in VS Code. a11yagent responds with step-by-step instructions: open the Command Palette, navigate to Preferences > Open Settings (JSON), and set the accessibility.signalOptions.volume JSON property to a number between 0 and 100
a11yagent answering a question about reducing accessibility signal volume.

Users can describe an issue they are facing in VS Code to a11yagent, and it’ll run a GitHub search to look up and return any matching GitHub issues related to VS Code. The generated response will contain a list of relevant issues, possible workarounds mentioned in the discussions, and timelines or plans for addressing the issue, if present.

Users can choose to track any of these issues to receive updates when they are being worked on/resolved. If the returned issues don’t match their needs, they can choose to log their description so that a11yagent can notify them if relevant issues are found in the future.

Screenshot of the VS Code chat interface showing a repsonse by the chat agent. The response contains a list of relevant GitHub issues, with only the first issue visible in the screenshot. It's titled 'Screen reader is announcing tree name'; created on August 12, 2025, and currently Open. The relevance of the issue is also detailed in the response.
a11yagent looking up GitHub issues in response to a user query.
Screenshot of a VS Code Quick Pick menu showing a list of 3 tracked GitHub issues. Each issue has a title, the corresponding link below, and a checkbox next to it to select for deletion. The search text reads select issues to remove from tracking
a11yagent tracking GitHub issues.