mcpbeat Sign in

Accessibility Pass Agent Skill

>- Use this skill whenever the user asks to check, review, or fix the accessibility of a PowerPoint deck, Word document, HTML page, or Markdown file, and before handing over any deck or document this agent just generated, so it does not ship with missing alt text, untitled slides, or unreadable colour contrast.

8k tokens
context cost
the whole folder, loaded on every use
4
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
52 d ago
last touched
this folder, not the whole repository

Install

one command, takes just this skill from the repository
npx skills add https://github.com/microsoft/cat-agent-skills --skill accessibility-pass

What comes with it

26 475 bytes besides the instruction
README.md
metadata.json
scripts/a11y_check.py

The instruction itself

4 sections, as written by the author

Review the artefact against Microsoft's Accessibility Checker rules, report what

fails, and fix it on request. Use the rule names below verbatim. They are the

same ones the author sees when they run the checker themselves in Office, so the

findings are recognisable and searchable.

Instructions

  • Get the file. Supported: .pptx, .docx, .html, .md. If the user pasted

raw HTML or Markdown instead, save it to a file first.

  • Run the bundled checker when a Python environment is available, from the

skill's own root directory (the folder containing scripts/), so the

relative path resolves:

   python scripts/a11y_check.py <file> --json

It needs python-pptx for .pptx and python-docx for .docx; HTML and

Markdown need nothing beyond the standard library. If the environment has

no Python, or the import fails: for HTML and Markdown, read the file

directly and check it against the rules below by hand. For .pptx and

.docx, that fallback doesn't really work, these are zipped Office XML,

not something to eyeball as text, so instead say plainly that the file

couldn't be checked, and ask the user to run Office's own Accessibility

Checker (File > Info > Check for Issues > Check Accessibility) and share

what it reports.

  • Add the judgement calls the script deliberately does not make:
  • Alt text that exists but is useless. "image1.png", "chart", or a

filename is a failure even though the attribute is populated. Read every

alt string and judge whether someone who cannot see the image learns the

same thing from it.

  • Wrongly decorative. Anything marked decorative that actually carries

information is a failure the script cannot see.

  • Reading order that is flagged but fine. The script compares screen-reader

order with visual top-left order; deliberate multi-column layouts trip it.

Confirm before reporting.

  • Meaning carried by colour alone, such as red/green status dots or "the

items in orange," which no file-level check can detect.

  • Captions and transcripts for embedded audio or video.
  • Contrast the script skipped. It only compares explicit RGB values.

Theme colours, gradients, and picture fills come back unchecked. Report

them as unchecked, never as passing.

  • Report findings grouped by severity, worst first, one row each:

| Severity | Rule | Where | Fix |

| --- | --- | --- | --- |

| Error | All slides have titles | Slide 4 | Add a title in the title placeholder |

Open with a one-line count (3 errors, 5 warnings, 1 tip). If nothing fails,

say so and list what could not be checked mechanically.

  • Offer to apply the fixes. Apply directly: adding a missing slide title, adding

a table header row, rewriting vague link text, adding lang to <html>,

fixing heading-level jumps. Ask first before writing alt text for an image

whose content is uncertain, marking anything decorative, changing colours, or

restructuring merged tables, since each of those changes meaning or design.

  • Re-run the checker after fixing and report what is left.

The rules

Errors: content that is unusable for someone relying on assistive tech.

  • All non-text content has alternative text (alt text)
  • Tables specify column header information
  • All slides have titles
  • All sections have meaningful names *(the bundled script doesn't check this;

ask the user or inspect the file's sections manually)*

  • Document access is not restricted *(the bundled script doesn't check this;

verify manually whether the file has IRM/password protection applied)*

Warnings: content that is hard to use.

  • Sufficient contrast between text and background (WCAG AA: 4.5:1 normal text,

3:1 for text 18pt+ or bold 14pt+)

  • Table has a simple structure
  • The reading order of the objects on a slide presentation is logical
  • Closed captions are included for inserted audio and video
  • Hyperlink text is meaningful

Tips: content that could be easier to use.

  • Slide titles in a deck are unique
  • Documents use heading styles
  • Document language is set

Guardrails

  • Never invent alt text for an image whose content is unknown. Ask the user what

it shows, or describe only what surrounding text supports and say the

description needs confirming.

  • Never mark an object decorative to clear a finding. Decorative means it carries

no information; use it only when that is true.

  • Never edit visible wording, layout, or branding beyond what a fix requires.
  • Never report an unchecked item as a pass.
  • Do not claim WCAG or EN 301 549 conformance. This is a pass over known rules,

not a certification. A clean result means no *detected* issues.

Tone

Direct and specific. Name the rule, the location, and the concrete fix. No

lecturing about why accessibility matters; the user already asked.

Other skills for the same job

different authors, same section of the catalogue
Matplotlib
by christophacham
×3

Low-level plotting library for full customization. Use when you need fine-grained control over every plot element, creating novel plot types, or integrating with specific scientific workflows. Export to PNG/PDF/SVG for publication. For quick statistical plots use seaborn; for interactive plots use plotly; for publication-ready multi-panel figures with journal styling, use scientific-visualization.

22k tokens scripts
Frontend Slides
by alexdcd
×2

Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.

4k tokens
Discover Brand
by anthropics
vendor ×1

> This skill orchestrates autonomous discovery of brand materials across enterprise platforms (Notion, Confluence, Google Drive, Box, SharePoint, Figma, Gong, Granola, Slack). It should be used when the user asks to "discover brand materials", "find brand documents", "search for brand guidelines", "audit brand content", "what brand materials do we have", "find our style guide", "where are our brand docs", "do we have a style guide", "discover brand voice", "brand content audit", or "find brand assets".

6k tokens
Matplotlib Scientific Plotting
by BioTender-max
×1

Low-level Python plotting for scientific figures: publication-quality line, scatter, bar, heatmap, contour, 3D; multi-panel layouts; fine control of every element. PNG/PDF/SVG export. Use seaborn for quick stats, plotly for interactive.

4k tokens
Baoyu Format Markdown
by ComeOnOliver
×1

Formats plain text or markdown files with frontmatter, titles, summaries, headings, bold, lists, and code blocks. Use when user asks to "format markdown", "beautify article", "add formatting", or improve article layout. Outputs to {filename}-formatted.md.

19k tokens scripts
PPTX Generation
by ComeOnOliver
×1

Enterprise-grade PowerPoint deck generation system using evidence-based prompting techniques, workflow enforcement, and constraint-based design. Use when creating professional presentations (board decks, reports, analyses) requiring consistent visual quality, accessibility compliance, and integration of complex data from multiple sources. Implements html2pptx workflow with spatial layout optimization, validation gates, and multi-chat architecture for 30+ slide decks.

27k tokens
Frontend Slides
by ComeOnOliver
×1

Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.

7k tokens
PPTX HTML Fidelity Audit
by nexu-io

Audit a python-pptx export against its source HTML deck, identify layout/content drift (footer overflow, cropped content, missing italic/em, lost styling, off-rhythm spacing), and re-export with strict footer-rail + cursor-flow layout discipline. Use this skill whenever the user has a .pptx that was generated from an HTML slide deck and asks to compare/audit/verify/fix the export — including phrases like "compare ppt with html", "fidelity audit", "fix the pptx", "ppt is cut off", "footer overlap", "italic missing in pptx", "re-export the deck", "pptx-html-fidelity-audit", or any case where a python-pptx → HTML round-trip needs verification or repair. Also trigger when the user shows you a deck.html and a deck.pptx side by side and is debugging visual differences.

15k tokens scripts

How to use it

Copy the folder

Take microsoft/accessibility-pass from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.