Accessibility Compliance (News & Web Publishing)
A WCAG 2.2 AA playbook for auditing and fixing accessibility in websites, images, charts and video.
Dev & CodingIntermediate★ 363⑂ 61AI score 9/10Last updated: Aug 12, 2026
What it does
- Gives a WCAG 2.2 AA checklist organized by the four POUR principles so you can audit a site step by step.
- Provides alt text rules for news images (who/what/where, don't echo the caption) plus disclosure guidance for AI-generated imagery.
- Covers accessible data visualization: colorblind-safe Paul Tol palettes, a WCAG contrast-ratio function, and a
<figure>+ data-table HTML pattern. - Includes keyboard patterns: skip links, modal focus-trap handling,
:focus-visiblestyles, andprefers-reduced-motionsupport. - Shows accessible form and error markup using
aria-describedby,aria-invalid, androle="alert". - Ships an automated audit recipe: pinned axe-core injected via Playwright, with violation formatting.
- Summarizes legal baselines: Section 508, ADA Title II/III, HHS 504, the EU Accessibility Act and EN 301 549 with deadlines.
Who it's for
- Newsroom and media front-end developers, data journalists
- Teams building government, university, or public-sector sites
- Anyone needing to reduce ADA/EAA compliance risk
- Editors who want to write proper alt text for article images
Examples
- "Audit this article template against WCAG 2.2 AA" → checklist-by-checklist findings with suggested fixes.
- "Draft three alt text options for this courthouse protest photo" → concise, caption-complementary descriptions under 125 characters.
- "Make this unemployment line chart screen-reader friendly" → figure/aria structure, collapsible data table, and a colorblind-safe palette.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/jamditis/claude-skills-journalism/HEAD/dev-toolkit/skills/accessibility-compliance/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the dev-toolkit/skills/accessibility-compliance folder from the GitHub repo jamditis/claude-skills-journalism into my ~/.claude/skills/accessibility-compliance/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/jamditis/claude-skills-journalism.git && mkdir -p ~/.claude/skills && cp -r claude-skills-journalism/dev-toolkit/skills/accessibility-compliance ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal (Terminal on macOS/Linux, Git Bash or WSL on Windows).
- Create the skills folder:
mkdir -p ~/.claude/skills - Clone the repo:
git clone https://github.com/jamditis/claude-skills-journalism.git - Copy just this skill:
cp -r claude-skills-journalism/dev-toolkit/skills/accessibility-compliance ~/.claude/skills/ - Verify it landed:
ls ~/.claude/skills/accessibility-compliance/SKILL.md - Optional, for the automated audit: run
npm install --save-dev --save-exact axe-core@4.12.1in your project andpip install playwright && playwright install chromium. - Restart Claude Code and ask something like "audit this page for accessibility" — the skill activates automatically.
View source on GitHub ↗License: MIT