Skip to content

Configuration

github-actions[bot] edited this page Mar 26, 2026 · 5 revisions

Configuration

Character Budget (Claude Code only)

If you have many agents or skills installed, you may hit Claude Code's description character limit (defaults to 15,000 characters). Agents will silently stop loading. Increase the budget:

macOS (Terminal):

export SLASH_COMMAND_TOOL_CHAR_BUDGET=30000

Add to ~/.bashrc, ~/.zshrc, or your shell profile.

Windows (PowerShell):

$env:SLASH_COMMAND_TOOL_CHAR_BUDGET = "30000"

Add to your PowerShell profile ($PROFILE).

Permission Levels (VS Code 1.112+)

VS Code 1.112 introduces permission levels that control how much autonomy agents have during a session. These are particularly relevant for accessibility audits.

Available Permission Levels

Level Description Use Case
Default Approvals Uses your configured approval settings. Tools requiring approval show a confirmation dialog. Normal interactive work. Recommended for fix-applying workflows.
Bypass Approvals Auto-approves all tool calls without dialogs. Auto-retries on errors. Batch scanning where you trust the agent. Use with read-only scans.
Autopilot (Preview) Auto-approves tools, auto-responds to questions, continues autonomously until complete. Hands-free accessibility audits. Read-only scans only.

Enable Autopilot

{
  "chat.autopilot.enabled": true
}

Autopilot is enabled by default in Insiders builds.

When to Use Each Level for Accessibility Work

Default Approvals (Recommended for fixes):

  • When running web-accessibility-wizard in fix mode
  • When applying document accessibility fixes
  • Any workflow that edits files
  • When you want to review each agent action

Bypass Approvals:

  • Running batch scans across many files
  • Document inventory and delta scanning
  • When you trust the agent and want faster results
  • Still shows tool results, just auto-approves

Autopilot (Read-only scans only):

  • Full site accessibility audits
  • Large document library scans
  • Overnight or scheduled audit runs
  • Never use for fix-applying workflows - too risky for unattended file changes

Security Considerations

Both Bypass Approvals and Autopilot bypass manual approval prompts, including for potentially destructive actions:

  • File edits
  • Terminal commands
  • External API calls

Recommendations:

  1. Never use Autopilot in untrusted repositories
  2. For fix workflows, always use Default Approvals
  3. For scanning, Bypass Approvals is sufficient
  4. Review the first time warning carefully

Changing Permission Level

Select the permission level from the permissions dropdown in the Chat view input area. You can change it at any time during a session.

To stop an autonomous agent, click the stop button in the Chat view.

Monorepo Configuration (VS Code 1.112+)

For monorepo setups where you open a package subfolder rather than the repo root:

{
  "chat.useCustomizationsInParentRepositories": true
}

This discovers agent customizations from parent folders up to the .git root. See Advanced Scanning Patterns for details.

Agent Debug Settings (VS Code 1.112+)

Enable these for debugging accessibility agent issues:

{
  "github.copilot.chat.agentDebugLog.enabled": true,
  "github.copilot.chat.agentDebugLog.fileLogging.enabled": true
}

With both enabled:

  • Use /troubleshoot to analyze agent behavior directly in chat
  • Export debug sessions as JSONL for offline analysis
  • Import sessions from teammates for troubleshooting

See Agent Debug Panel Guide for full details.

Image Analysis Settings (VS Code 1.112+)

Enable for visual accessibility analysis:

{
  "chat.imageSupport.enabled": true,
  "imageCarousel.explorerContextMenu.enabled": true
}

This allows:

  • alt-text-headings to analyze actual images and compare against alt text
  • contrast-master to analyze screenshots for visual contrast issues
  • Batch image review via the carousel view

Chat Customizations Editor (VS Code 1.113+)

Use the new centralized editor to manage project and profile-level AI customizations from one place:

  • Run Chat: Open Chat Customizations
  • Use the agent-type picker to switch between local agents, Copilot CLI, and Claude agent customizations
  • Create or edit instructions, prompt files, custom agents, and skills with built-in validation
  • Manage MCP servers and agent plugins from the same UI

This is now the fastest way to verify whether Accessibility Agents customizations are being discovered across agent types.

MCP Across Agent Types (VS Code 1.113+)

VS Code 1.113 bridges registered MCP servers into Copilot CLI and Claude agents.

Practical impact for this repo:

  • Workspace .vscode/mcp.json servers can now carry across local, Copilot CLI, and Claude agent workflows
  • User-profile MCP servers configured in VS Code can be reused in CLI and Claude sessions
  • Troubleshooting missing tools should now check both MCP server state and the active agent type

If you rely on local MCP servers, keep these points in mind:

  • Use workspace mcp.json when the server should travel with the repo
  • Use profile MCP configuration when the server is personal to your machine or account
  • Sandboxing is currently macOS/Linux only, not Windows

Nested Subagents (VS Code 1.113+)

VS Code 1.113 adds optional nested subagent support:

{
  "chat.subagents.allowInvocationsFromSubagents": true
}

This is an official VS Code capability. It is not a requirement for this repo.

For Accessibility Agents, the tradeoff is:

  • Reward: nested subagents can help with intentionally designed divide-and-conquer or coordinator-worker workflows.
  • Risk: they can also increase wrong-agent selection, duplicate findings, latency, token usage, and debugging complexity.

Repo recommendation:

  • Prefer explicit coordinator-worker delegation with a single top-level orchestrator.
  • Use allowlisted subagents where possible.
  • Leave nested subagents disabled by default unless a workflow is intentionally designed for recursion.

In practice, bounded subagents are a net positive for this repo. Open-ended recursive delegation is not.

Integrated Browser Updates (VS Code 1.113+)

The integrated browser picked up several workflow improvements that matter for accessibility testing:

  • Self-signed certificate trust for local HTTPS development
  • Better browser tab management via quick-open and close-all commands
  • Built-in browser tools that can share an active page with an agent when enabled

Relevant settings:

{
  "workbench.browser.enableChatTools": true,
  "workbench.browser.openLocalhostLinks": true
}

Use browser tools carefully. Shared pages expose your current browser session to the agent until you revoke access.

Troubleshooting

Agents not appearing (Claude Code)

Type /agents to see what is loaded. If agents do not appear:

  1. Check file location: Agents must be .md files in .claude/agents/ (project) or ~/.claude/agents/ (global)
  2. Check file format: Each file must start with YAML front matter (--- delimiters) containing name, description, and tools
  3. Check character budget: Increase SLASH_COMMAND_TOOL_CHAR_BUDGET (see above)

Extension not working (Claude Desktop)

  1. Check installation: Settings > Extensions in Claude Desktop
  2. Try reinstalling: Download latest .mcpb from Releases page
  3. Check version: Requires Claude Desktop 0.10.0 or later

Agents seem to miss things

  1. Invoke the specific specialist directly: /aria-specialist review components/modal.tsx
  2. Ask for a full audit: /accessibility-lead audit the entire checkout flow
  3. Open an issue if a pattern is consistently missed

Copilot CLI issues

See the dedicated Copilot CLI Troubleshooting Guide.

Tool Alias Reference

Different platforms use different tool names. Agent files may declare platform-specific tools that get mapped to standard aliases.

Copilot CLI Tool Aliases

CLI uses these standard aliases. Agent declarations using compatible aliases will work:

CLI Alias Compatible Declarations Purpose
read Read, view, NotebookRead, readFile Read file contents
edit Edit, MultiEdit, Write, NotebookEdit, str_replace, str_replace_editor, editFiles Edit files
search Grep, Glob, textSearch, fileSearch Search files
execute Bash, shell, powershell, runInTerminal Run shell commands
agent Task, custom-agent, runSubagent Delegate to sub-agent
web WebSearch, WebFetch, fetch Fetch web content
todo TodoWrite Task management (VS Code only)

Claude Code Tool Names

Claude Code uses these native tool names:

Tool Purpose
Read Read files
Edit Edit files
Write Create files
Bash Run shell commands
Grep Search file contents
Glob Find files by pattern
Task Delegate to sub-agent
WebFetch Fetch web content

VS Code Extension Tool Names

VS Code Copilot extension uses:

Tool Purpose
readFile Read files
editFiles Edit files
createFile Create files
runInTerminal Run commands
textSearch Search contents
fileSearch Find files
runSubagent Delegate to agent
getDiagnostics Get editor diagnostics
askQuestions Prompt user for input
listDirectory List directory contents
getTerminalOutput Read terminal output

Cross-Platform Agent Files

Agent files in this project use VS Code-style tool declarations because that's the most common deployment target. When running in Copilot CLI:

  1. Compatible tools are mapped automatically (e.g., readFileread)
  2. Unknown tools are silently ignored
  3. Core read/edit/search functionality works across all platforms

For maximum compatibility when creating new agents, use these universal tool names:

tools: ['read', 'edit', 'search', 'execute', 'agent']

Getting Started

Agents

Orchestrators

  • Accessibility Lead
  • Web Accessibility Wizard
  • Document Accessibility Wizard

Web Specialists

  • Alt Text and Headings
  • ARIA Specialist
  • Contrast Master
  • Forms Specialist
  • Keyboard Navigator
  • Link Checker
  • Live Region Controller
  • Modal Specialist
  • Tables Data Specialist

Document Specialists

  • Word Accessibility
  • Excel Accessibility
  • PowerPoint Accessibility
  • PDF Accessibility
  • Office Scan Config
  • PDF Scan Config

Learning

  • Testing Coach
  • WCAG Guide

Scanning

Tools

Advanced

Clone this wiki locally