npx claudepluginhub standardbeagle/standardbeagle-tools --plugin toolsRun a comprehensive accessibility (a11y) audit on the current browser page using agnt's diagnostic tools.
Run the full accessibility audit:
proxy {action: "exec", id: "dev", code: "__devtool.auditAccessibility()"}
Get the tab order to check keyboard navigation:
proxy {action: "exec", id: "dev", code: "__devtool.getTabOrder()"}
Take a screenshot for reference:
proxy {action: "exec", id: "dev", code: "__devtool.screenshot('a11y-audit')"}
The accessibility audit checks for:
The audit returns:
issues: Array of accessibility problems foundcount: Total number of issueserrors: Number of critical issueswarnings: Number of non-critical issuesFor each issue:
type: The type of accessibility violationseverity: "error" or "warning"selector: CSS selector to locate the elementmessage: Description of the problemFor deeper accessibility analysis:
// Get detailed accessibility info for a specific element
proxy {action: "exec", id: "dev", code: "__devtool.getA11yInfo('#element')"}
// Check color contrast between foreground and background
proxy {action: "exec", id: "dev", code: "__devtool.getContrast('rgb(0,0,0)', 'rgb(255,255,255)')"}
// Get what a screen reader would announce for an element
proxy {action: "exec", id: "dev", code: "__devtool.getScreenReaderText('#element')"}