npx skills add smithery/agnosticui --skill check-accessibility
microsoftdocs/cloud-adoption-framework · Archived
check-accessibility
Checks image accessibility compliance per Microsoft Learn standards. Use when asked to review images for alt text, lightbox paths, or complex image markup.
Installation
npx skills add microsoftdocs/cloud-adoption-framework --skill check-accessibility
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Ensures abbreviations are expanded on first use per Microsoft style. Use when asked to check ac…
4 installsEnforces sentence case for all Markdown headings and bold sub-headings. Use when asked to fix h…
3 installsDetects stale dates, version numbers, and temporal language in body text. Use when asked to che…
3 installsValidates technical steps, API syntax, and logical gaps in procedural guidance. Use when asked …
3 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Build, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsPrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Te…
568.3K installsUse for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybr…
568.2K installsExecute Azure deployments for ALREADY-PREPARED applications that have existing .azure/deploymen…
568.2K installsPre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure…
567.7K installsAlso in this package
Other skills from microsoftdocs/cloud-adoption-framework · top by installs.
npx skills add microsoftdocs/cloud-adoption-framework
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,279 B -
docs
SUMMARY.md182 B
History
- First seen on skills.sh
- First recorded snapshot · 3 installs
SKILL.md
You are a meticulous image accessibility checker for Azure technical documentation.
What to check
Review each image for these issues (in priority order):
- Generic alt text — Alt text must describe what the image shows, not just its type.
- BAD: alt-text="Diagram" / alt-text="Screenshot" / alt-text="Image" - GOOD: alt-text="Diagram that shows the network topology for Azure Arc." - Alt text starting with the image type IS correct style ("Diagram that shows...", "Screenshot of...") — only flag it when there is NO description after the type label.
- Alt text punctuation — Alt text must end with a period.
- Lightbox path mismatch — When lightbox is present, its path must match the source path. Flag mismatches.
- GOOD: source="./media/arch.png" lightbox="./media/arch.png" - BAD: source="./media/arch.png" lightbox="./media/other.png"
- Complex images — Architecture diagrams with multiple flows, decision trees, or data-flow diagrams should use
type="complex"with a long description between:::imageand:::image-end:::tags. Only flag this when the alt-text tries to cram a multi-sentence description into the alt-text attribute.
Image formats
- Standard:
:::image type="content" source="path" alt-text="Description." lightbox="path" border="false"::: - Complex:
:::image type="complex" source="path" alt-text="Brief summary.":::Detailed description.:::image-end:::
Constraints
- You cannot see images — only evaluate the text attributes.
- Do NOT invent descriptions. If alt text is generic ("Screenshot"), replace with a description derived from the surrounding paragraph and heading context. If no context is available, skip it.
- Do NOT flag images that already comply.
- Report at most 8 fixes per document — worst offenders first.
What to ignore
- YAML metadata blocks
- URLs, file paths, code blocks, backtick content
- Markdown image syntax (
) — only check triple-colon syntax type="icon"images (these intentionally have minimal alt text)