AI Agent Hub
Back to plugins
🧰

dsh-a11y-scan

Web Tools Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install 988hj7tczd-oss/dsh-a11y-scan

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install 988hj7tczd-oss/dsh-a11y-scan inside DeepSeek Harness to install this plugin. Source repository: https://github.com/988hj7tczd-oss/dsh-a11y-scan.

About this plugin

WCAG audits on front-end codebases tend to be ad-hoc, time-consuming, and uneven across developers. dsh-a11y-scan turns the axe-core scanner into a drop-in DSH tool: give it a single HTML file, a build-output folder (Vite, Next.js dist, etc.), or a user-confirmed URL, and it returns a structured report where every violation carries its rule ID, impact severity, the matching WCAG 2.1 criterion (such as 1.4.3 Contrast), the affected element selector, a failure summary, a concrete remediation tip, and a link to the official accessibility quickref.

The scanner is strictly read-only—it never rewrites source files. You can export results as Markdown, a self-contained offline HTML file, or raw JSON, so the output fits into documentation, stakeholder emails, or automated pipelines without extra tooling. Findings that axe-core cannot resolve automatically (focus-order logic, keyboard-only interaction paths, screen-reader reading order) are surfaced as a dedicated manual-review checklist sitting alongside the machine-detected violations, ensuring nothing important is lost between the two passes.

As a programmable, single-call tool, a11y_scan returns a structured object that plugs directly into CI gates, Workflow pipelines, or agent loops. It is built for front-end teams that want deterministic accessibility checks on every merge rather than a pre-launch scramble, for design and product people who need periodic compliance snapshots, and for hybrid workflows where an automated scan surfaces the hit list first and a conversational agent interprets the borderline findings second.

Use Cases

  • Run WCAG violation checks on every merge in a CI pipeline against built front-end artifacts
  • Capture a full A/AA/AAA accessibility snapshot of a single-page app before release
  • Export a self-contained HTML report and hand it to the design team for manual borderline-case review

Best For

  • Front-end engineers who want deterministic a11y checks on every commit
  • Design and product leads who need periodic WCAG compliance reports
  • DevOps engineers who plug a standalone scanner into CI or agent workflows