{"id":"8c9f6973-84ee-4dc3-89db-d446e5da1d4b","shortId":"BHsDzF","kind":"skill","title":"canvas-accessibility-auditor","tagline":"Accessibility audit and remediation for Canvas LMS courses. Scans content for WCAG violations, generates prioritized reports, guides fixes, and verifies remediation. Use when asked to \"audit accessibility\", \"check WCAG compliance\", \"fix accessibility issues\", or \"run accessibilit","description":"# Canvas Accessibility Auditor\n\nFull accessibility audit cycle for Learning Designers: scan course content, generate prioritized report, guide remediation of fixable issues, re-scan to verify fixes, produce compliance summary.\n\n## Prerequisites\n\n- **Canvas MCP server** must be running and connected.\n- Authenticated user must have **instructor, TA, or designer role** in the target course.\n- For UFIXIT integration: the course must have a UFIXIT report page (generated by your institution's accessibility tool).\n\n## Steps\n\n### 1. Identify Target Course\n\nAsk the user which course to audit. Accept a course code, Canvas ID, or course name.\n\nIf not specified, prompt:\n\n> Which course would you like to audit for accessibility?\n\n### 2. Scan Course Content\n\nRun two scans in parallel if possible:\n\n**Scan A -- Direct content scan:**\n```\nscan_course_content_accessibility(course_identifier, \"pages,assignments\")\n```\n\nThis checks all page and assignment HTML for:\n- Images missing alt text (WCAG 1.1.1, Level A)\n- Empty headings (WCAG 2.4.6, Level AA)\n- Tables missing headers (WCAG 1.3.1, Level A)\n- Non-descriptive link text like \"click here\" (WCAG 2.4.4, Level A)\n\n**Scan B -- UFIXIT report (if available):**\n```\nfetch_ufixit_report(course_identifier)\n```\n\nIf the UFIXIT page exists, parse it:\n```\nparse_ufixit_violations(report_json)\n```\n\n### 3. Generate Prioritized Report\n\nCombine results from both scans. Call `format_accessibility_summary` if using UFIXIT data.\n\nPresent issues sorted by priority:\n\n```\n## Accessibility Audit: [Course Name]\n\n### Summary\n- Content scanned: 20 pages, 15 assignments\n- Total issues: 12\n- Auto-fixable: 8 | Manual review needed: 4\n\n### Level A Violations (must fix)\n1. **Missing alt text** -- 5 images across 3 pages\n   - Page \"Week 1 Overview\": 2 images\n   - Page \"Lab Instructions\": 2 images\n   - Assignment \"Final Project\": 1 image\n\n2. **Tables missing headers** -- 2 tables\n   - Page \"Grade Scale\": 1 table\n   - Page \"Schedule\": 1 table\n\n3. **Non-descriptive links** -- 3 instances of \"click here\"\n   - Page \"Resources\": 2 links\n   - Page \"Week 3 Overview\": 1 link\n\n### Level AA Violations (should fix)\n4. **Empty headings** -- 2 empty heading elements\n   - Page \"Week 5 Notes\": 1 empty h3\n   - Page \"Midterm Review\": 1 empty h2\n\n### Manual Review Required\n- Color contrast: Cannot be checked automatically (requires visual inspection)\n- Video captions: Cannot be verified via API (check in Canvas media player)\n- PDF accessibility: Cannot be parsed via API (use Adobe Acrobat checker)\n```\n\n### 4. Guided Remediation\n\nFor each auto-fixable issue, walk the user through the fix:\n\n**For missing alt text:**\n1. Call `get_page_content(course_identifier, page_url)` to retrieve the HTML\n2. Identify the `<img>` tags without alt attributes\n3. Ask the user for alt text descriptions (or suggest based on surrounding context)\n4. Call `edit_page_content(course_identifier, page_url, new_content)` with corrected HTML\n\n**For non-descriptive links:**\n1. Retrieve the page content\n2. Show the current link: `<a href=\"...\">click here</a>`\n3. Suggest descriptive replacement: `<a href=\"...\">Download the syllabus (PDF)</a>`\n4. Apply fix after user approval\n\n**For empty headings:**\n1. Retrieve the page content\n2. Show the empty heading\n3. Ask: \"Remove this heading, or add text to it?\"\n4. Apply the chosen fix\n\n**For tables missing headers:**\n1. Retrieve the page content\n2. Show the table structure\n3. Ask: \"Which row/column should be headers?\"\n4. Convert `<td>` to `<th>` elements and apply\n\nAlways ask for user confirmation before modifying any page.\n\n### 5. Re-scan Modified Pages\n\nAfter remediation, re-run the scan on modified pages only:\n\n```\nscan_course_content_accessibility(course_identifier, \"pages\")\n```\n\nReport: \"Fixed 8/12 issues. 4 remaining require manual review.\"\n\n### 6. Generate Compliance Summary\n\nProduce a final summary suitable for stakeholder reporting:\n\n```\n## Accessibility Compliance Summary\n\n**Course:** [Course Name]\n**Audit Date:** [date]\n**Auditor:** AI-assisted audit via Canvas MCP\n\n### Results\n- Total content items scanned: 35\n- Automated issues found: 12\n- Issues remediated: 8\n- Issues requiring manual review: 4\n- WCAG Level A compliance: Partial (manual review items remain)\n\n### Remediation Actions Taken\n- Added alt text to 5 images\n- Fixed 3 non-descriptive links\n- Removed 2 empty headings\n\n### Outstanding Items\n- Color contrast review needed (pages with colored text)\n- Video caption verification (embedded videos)\n- PDF accessibility check (uploaded PDFs)\n\n### Recommendation\nCourse content meets automated WCAG 2.1 Level A criteria after remediation.\nManual review of color contrast and multimedia is recommended before publishing.\n```\n\n## MCP Tools Used\n\n| Tool | Purpose |\n|------|---------|\n| `scan_course_content_accessibility` | Scan pages and assignments for WCAG issues |\n| `fetch_ufixit_report` | Retrieve institutional UFIXIT report |\n| `parse_ufixit_violations` | Extract structured violations from report |\n| `format_accessibility_summary` | Format violations into readable report |\n| `get_page_content` | Retrieve page HTML for remediation |\n| `edit_page_content` | Apply accessibility fixes to pages |\n| `list_courses` | Find available courses |\n\n## Example\n\n**User:** \"Run accessibility audit for CS 101\"\n\n**Agent:** Scans all content, generates the prioritized report.\n\n**User:** \"Fix the missing alt text issues\"\n\n**Agent:** Retrieves each affected page, asks for alt text descriptions, applies fixes, re-scans.\n\n## Limitations\n\n- **Cannot check:** Color contrast, video captions, PDF accessibility, audio descriptions, keyboard navigation\n- **These are flagged** as \"manual review required\" in every report\n- **Remediation is per-page:** Each fix requires a full page content read and write cycle\n- **No undo:** Page edits via the API do not create Canvas revision history -- back up pages before bulk fixes\n\n## Notes\n\n- Pairs well with `canvas-course-qc` for comprehensive pre-semester review.\n- Run after major content updates or course imports.\n- UFIXIT integration depends on your institution having UDOIT/UFIXIT installed.","tags":["canvas","accessibility","auditor","mcp","vishalsachdev","agent-skills","skills-sh"],"capabilities":["skill","source-vishalsachdev","skill-canvas-accessibility-auditor","topic-agent-skills","topic-skills-sh"],"categories":["canvas-mcp"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/vishalsachdev/canvas-mcp/canvas-accessibility-auditor","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add vishalsachdev/canvas-mcp","source_repo":"https://github.com/vishalsachdev/canvas-mcp","install_from":"skills.sh"}},"qualityScore":"0.509","qualityRationale":"deterministic score 0.51 from registry signals: · indexed on github topic:agent-skills · 118 github stars · SKILL.md body (6,115 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-02T12:55:01.090Z","embedding":null,"createdAt":"2026-04-18T22:12:00.907Z","updatedAt":"2026-05-02T12:55:01.090Z","lastSeenAt":"2026-05-02T12:55:01.090Z","tsv":"'1':112,282,293,305,316,320,340,358,364,421,474,503,532 '1.1.1':182 '1.3.1':195 '101':782 '12':268,635 '15':264 '2':145,295,300,307,311,334,350,434,479,508,537,669 '2.1':698 '2.4.4':207 '2.4.6':188 '20':262 '3':233,289,322,327,338,441,486,513,542,663 '35':631 '4':276,347,402,455,494,523,549,592,643 '5':286,356,564,660 '6':597 '8':272,638 '8/12':590 'aa':190,343 'accept':123 'access':3,5,31,36,42,45,109,144,164,244,255,392,584,609,688,723,747,766,778,821 'accessibilit':40 'acrobat':400 'across':288 'action':654 'ad':656 'add':519 'adob':399 'affect':801 'agent':783,798 'ai':620 'ai-assist':619 'alt':179,284,419,439,446,657,795,805 'alway':555 'api':385,397,858 'appli':495,524,554,765,808 'approv':499 'ask':28,116,442,514,543,556,803 'assign':168,174,265,302,727 'assist':621 'attribut':440 'audio':822 'audit':6,30,46,122,142,256,615,622,779 'auditor':4,43,618 'authent':80 'auto':270,408 'auto-fix':269,407 'autom':632,696 'automat':375 'avail':215,773 'b':211 'back':865 'base':451 'bulk':869 'call':242,422,456 'cannot':372,381,393,814 'canva':2,10,41,72,127,388,624,862,876 'canvas-accessibility-auditor':1 'canvas-course-qc':875 'caption':380,683,819 'check':32,170,374,386,689,815 'checker':401 'chosen':526 'click':204,330,484 'code':126 'color':370,674,680,707,816 'combin':237 'complianc':34,69,599,610,647 'comprehens':880 'confirm':559 'connect':79 'content':14,53,148,159,163,260,425,459,465,478,507,536,583,628,694,722,756,764,786,847,888 'context':454 'contrast':371,675,708,817 'convert':550 'correct':467 'cours':12,52,92,97,115,120,125,130,137,147,162,165,219,257,426,460,582,585,612,613,693,721,771,774,877,891 'creat':861 'criteria':701 'cs':781 'current':482 'cycl':47,851 'data':249 'date':616,617 'depend':895 'descript':200,325,448,472,488,666,807,823 'design':50,87 'direct':158 'download':490 'edit':457,762,855 'element':353,552 'embed':685 'empti':185,348,351,359,365,501,511,670 'everi':834 'exampl':775 'exist':225 'extract':741 'fetch':216,731 'final':303,603 'find':772 'fix':22,35,67,281,346,416,496,527,589,662,767,792,809,842,870 'fixabl':60,271,409 'flag':828 'format':243,746,749 'found':634 'full':44,845 'generat':18,54,104,234,598,787 'get':423,754 'grade':314 'guid':21,57,403 'h2':366 'h3':360 'head':186,349,352,502,512,517,671 'header':193,310,531,548 'histori':864 'html':175,433,468,759 'id':128 'identifi':113,166,220,427,435,461,586 'imag':177,287,296,301,306,661 'import':892 'inspect':378 'instal':901 'instanc':328 'institut':107,735,898 'instruct':299 'instructor':84 'integr':95,894 'issu':37,61,251,267,410,591,633,636,639,730,797 'item':629,651,673 'json':232 'keyboard':824 'lab':298 'learn':49 'level':183,189,196,208,277,342,645,699 'like':140,203 'limit':813 'link':201,326,335,341,473,483,667 'list':770 'lms':11 'major':887 'manual':273,367,595,641,649,704,830 'mcp':73,625,715 'media':389 'meet':695 'midterm':362 'miss':178,192,283,309,418,530,794 'modifi':561,568,578 'multimedia':710 'must':75,82,98,280 'name':131,258,614 'navig':825 'need':275,677 'new':464 'non':199,324,471,665 'non-descript':198,323,470,664 'note':357,871 'outstand':672 'overview':294,339 'page':103,167,172,224,263,290,291,297,313,318,332,336,354,361,424,428,458,462,477,506,535,563,569,579,587,678,725,755,758,763,769,802,840,846,854,867 'pair':872 'parallel':153 'pars':226,228,395,738 'partial':648 'pdf':391,493,687,820 'pdfs':691 'per':839 'per-pag':838 'player':390 'possibl':155 'pre':882 'pre-semest':881 'prerequisit':71 'present':250 'priorit':19,55,235,789 'prioriti':254 'produc':68,601 'project':304 'prompt':135 'publish':714 'purpos':719 'qc':878 're':63,566,573,811 're-run':572 're-scan':62,565,810 'read':848 'readabl':752 'recommend':692,712 'remain':593,652 'remedi':8,25,58,404,571,637,653,703,761,836 'remov':515,668 'replac':489 'report':20,56,102,213,218,231,236,588,608,733,737,745,753,790,835 'requir':369,376,594,640,832,843 'resourc':333 'result':238,626 'retriev':431,475,504,533,734,757,799 'review':274,363,368,596,642,650,676,705,831,884 'revis':863 'role':88 'row/column':545 'run':39,77,149,574,777,885 'scale':315 'scan':13,51,64,146,151,156,160,161,210,241,261,567,576,581,630,720,724,784,812 'schedul':319 'semest':883 'server':74 'show':480,509,538 'skill' 'skill-canvas-accessibility-auditor' 'sort':252 'source-vishalsachdev' 'specifi':134 'stakehold':607 'step':111 'structur':541,742 'suggest':450,487 'suitabl':605 'summari':70,245,259,600,604,611,748 'surround':453 'syllabus':492 'ta':85 'tabl':191,308,312,317,321,529,540 'tag':437 'taken':655 'target':91,114 'text':180,202,285,420,447,520,658,681,796,806 'tool':110,716,718 'topic-agent-skills' 'topic-skills-sh' 'total':266,627 'two':150 'udoit/ufixit':900 'ufixit':94,101,212,217,223,229,248,732,736,739,893 'undo':853 'updat':889 'upload':690 'url':429,463 'use':26,247,398,717 'user':81,118,413,444,498,558,776,791 'verif':684 'verifi':24,66,383 'via':384,396,623,856 'video':379,682,686,818 'violat':17,230,279,344,740,743,750 'visual':377 'walk':411 'wcag':16,33,181,187,194,206,644,697,729 'week':292,337,355 'well':873 'without':438 'would':138 'write':850","prices":[{"id":"bb48cc5d-321a-43f0-8c02-3fbcdc2812f3","listingId":"8c9f6973-84ee-4dc3-89db-d446e5da1d4b","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"vishalsachdev","category":"canvas-mcp","install_from":"skills.sh"},"createdAt":"2026-04-18T22:12:00.907Z"}],"sources":[{"listingId":"8c9f6973-84ee-4dc3-89db-d446e5da1d4b","source":"github","sourceId":"vishalsachdev/canvas-mcp/canvas-accessibility-auditor","sourceUrl":"https://github.com/vishalsachdev/canvas-mcp/tree/main/skills/canvas-accessibility-auditor","isPrimary":false,"firstSeenAt":"2026-04-18T22:12:00.907Z","lastSeenAt":"2026-05-02T12:55:01.090Z"}],"details":{"listingId":"8c9f6973-84ee-4dc3-89db-d446e5da1d4b","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"vishalsachdev","slug":"canvas-accessibility-auditor","github":{"repo":"vishalsachdev/canvas-mcp","stars":118,"topics":["agent-skills","skills-sh"],"license":"mit","html_url":"https://github.com/vishalsachdev/canvas-mcp","pushed_at":"2026-04-27T16:16:22Z","description":"Canvas LMS MCP server — 80+ tools and 5 agent skills for students & educators. Works with Claude, Cursor, Codex, and 40+ agents. v1.1.0","skill_md_sha":"bdb0c33c0d554022ae28d893a2aaf03b29ba83d2","skill_md_path":"skills/canvas-accessibility-auditor/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/vishalsachdev/canvas-mcp/tree/main/skills/canvas-accessibility-auditor"},"layout":"multi","source":"github","category":"canvas-mcp","frontmatter":{"name":"canvas-accessibility-auditor","description":"Accessibility audit and remediation for Canvas LMS courses. Scans content for WCAG violations, generates prioritized reports, guides fixes, and verifies remediation. Use when asked to \"audit accessibility\", \"check WCAG compliance\", \"fix accessibility issues\", or \"run accessibility review\"."},"skills_sh_url":"https://skills.sh/vishalsachdev/canvas-mcp/canvas-accessibility-auditor"},"updatedAt":"2026-05-02T12:55:01.090Z"}}