3つのモードでアクセシビリティ監査を実行。Runtime(axe-coreによるDOM検証)、Static(eslint-plugin-jsx-a11yによるCI/ビルド時チェック)、Full(両方の組み合わせ)。WCAG準拠の包括的チェック。
A Claude Code skill for running comprehensive accessibility audits on web projects.
Add to your Claude Code skills configuration:
{
"skills": {
"accessibility": {
"source": "~/Projects/claude-a11y-skill/skill.md",
"triggers": ["accessibility", "a11y"]
}
}
}
Or reference it in your .claude/settings.json:
{
"skills": ["~/Projects/claude-a11y-skill/skill.md"]
}
Invoke the skill with any of these triggers:
/accessibility or /a11y| Mode | Method | Best For |
|---|---|---|
runtime | axe-core via browser | Full WCAG compliance testing with real DOM |
static | eslint-plugin-jsx-a11y | Fast CI/build-time checks for React/Next.js |
full | Both combined | Most comprehensive coverage |
eslint-plugin-jsx-a11y (auto-installed if missing)