report-generation
$
npx mdskill add Community-Access/accessibility-agents/report-generationGenerate standardized accessibility audit reports with severity scores.
- Creates DOCUMENT-ACCESSIBILITY-AUDIT.md files with mandatory audit sections.
- Computes 0-100 severity scores and A-F grades per document.
- Orders remediation tasks by immediate impact and priority level.
- Exports VPAT and ACR compliance data alongside findings.
SKILL.md
.github/skills/report-generationView on GitHub ↗
--- name: report-generation description: Audit report formatting, severity scoring, scorecard computation, and compliance export for document accessibility audits. Use when generating DOCUMENT-ACCESSIBILITY-AUDIT.md reports, computing document severity scores (0-100 with A-F grades), creating VPAT/ACR compliance exports, or formatting remediation priorities. --- # Report Generation ## Report File Default output: `DOCUMENT-ACCESSIBILITY-AUDIT.md` in the project root. ## Required Sections Every audit report MUST include these sections: 1. **Audit Information** - date, auditor, profile, scope, counts 2. **Executive Summary** - totals, pass rate, most common issue, effort estimate 3. **Cross-Document Patterns** - recurring issues, systemic failures 4. **Findings by File** - per-document issues with rule ID, severity, location, WCAG, impact, remediation 5. **Findings by Rule (Cross-Reference)** - rule-level aggregation across files 6. **What Passed** - acknowledge clean documents and categories 7. **Remediation Priority** - ordered by impact (Immediate / Soon / When Possible) 8. **Accessibility Scorecard** - per-document scores and grades 9. **Metadata Dashboard** - document properties health 10. **Confidence Summary** - breakdown by confidence level ### Optional Sections (include when applicable) - **Template Analysis** - when batch scanning detects shared templates - **Comparison Report** - when re-scanning against a baseline - **CI/CD Recommendations** - when no config files exist ## Severity Scoring Formula ```text Document Score = 100 - (sum of weighted findings) Weights: Error (high confidence): -10 points Error (medium confidence): -7 points Error (low confidence): -3 points Warning (high confidence): -3 points Warning (medium confidence):-2 points Warning (low confidence): -1 point Tips: 0 points Floor: 0 (minimum score) ``` ## Score Grades | Score | Grade | Meaning | |-------|-------|---------| | 90-100 | A | Excellent - minor or no issues | | 75-89 | B | Good - some warnings, few errors | | 50-74 | C | Needs Work - multiple errors | | 25-49 | D | Poor - significant accessibility barriers | | 0-24 | F | Failing - critical barriers, likely unusable with AT | ## Organization Modes | Mode | Description | Best For | |------|-------------|----------| | By file | Group all issues under each document | Small batches (< 10 files) | | By issue type | Group all instances of each rule across documents | Seeing patterns | | By severity | Critical first, then serious, moderate, minor | Prioritizing fixes | ## VPAT/ACR Compliance Export ### Conformance Levels | Level | Criteria | |-------|----------| | Supports | No findings for this WCAG criterion across any document | | Partially Supports | Some documents pass, some fail | | Does Not Support | All or most documents fail | | Not Applicable | Criterion does not apply to scanned document types | ### Supported VPAT Editions - **VPAT 2.5 (WCAG)** - maps to WCAG 2.2 criteria - **VPAT 2.5 (508)** - maps to Revised Section 508 standards - **VPAT 2.5 (EN 301 549)** - maps to EU accessibility directive - **VPAT 2.5 (INT)** - International edition (all three combined) ## Remediation Tracking When comparing against a baseline audit report: | Status | Meaning | |--------|---------| | Fixed | Issue was in previous report but is now resolved | | New | Issue was not in previous report but appears now | | Persistent | Issue remains from previous report | | Regressed | Issue was previously fixed but has returned | ### Progress Metrics - Issue reduction percentage: `(fixed / previous_total) * 100` - Score change: `current_score - previous_score` - Documents improved: count of documents with higher scores
More from Community-Access/accessibility-agents
- Accessibility LeadAccessibility team lead and orchestrator. Use on EVERY task that involves web UI code, HTML, JSX, CSS, React components, web pages, or any user-facing web content. This agent coordinates the accessibility specialist team and ensures no accessibility requirement is missed. Runs the final review before any UI code is considered complete. Applies to any web framework or vanilla HTML/CSS/JS.
- Accessibility Regression DetectorDetects accessibility regressions by comparing audit results across commits/branches. Tracks score trends and validates previous fixes.
- Accessibility Statement GeneratorGenerates conformance/accessibility statements following W3C or EU model templates. Maps audit results to conformance claims, known limitations, and contact information.
- Accessibility Tool BuilderExpert in building accessibility scanning tools, rule engines, document parsers, report generators, and audit automation. WCAG criterion mapping, severity scoring, CLI/GUI scanner architecture, CI/CD integration.
- Accessibility TrackerTrack accessibility improvements across VS Code and any configured repos -- get summaries, deep dives, workspace reports, WCAG cross-references, and proactive alerts on a11y changes.
- accessibility-rulesCross-format document accessibility rule reference with WCAG 2.2 mapping. Use when looking up accessibility rules for Word (DOCX-*), Excel (XLSX-*), PowerPoint (PPTX-*), or PDF (PDFUA.*, PDFBP.*, PDFQ.*) documents, or when mapping findings to WCAG success criteria for compliance reporting.
- Actions ManagerGitHub Actions command center -- view workflow runs, read logs, re-run failed jobs, manage workflows, and debug CI failures entirely from the editor. Bypasses the deeply nested, visually-dependent Actions UI that is largely inaccessible to screen readers.
- Alt Text & HeadingsAlternative text and heading structure specialist for web applications. Use when building or reviewing any page with images, icons, SVGs, videos, figures, charts, or heading hierarchies. Covers meaningful vs decorative images, complex image descriptions, heading levels, document outline, and landmark structure. Can analyze images visually, compare existing alt text against image content, and interactively suggest appropriate alternatives. Applies to any web framework or vanilla HTML/CSS/JS.
- Analytics & InsightsYour GitHub analytics command center -- team velocity, review turnaround, issue resolution metrics, contribution activity, bottleneck detection, and code churn analysis with dual markdown + HTML reports.
- ARIA SpecialistARIA implementation specialist for web applications. Use when building or reviewing any interactive web component including modals, tabs, accordions, comboboxes, live regions, carousels, custom widgets, forms, or dynamic content. Also use when reviewing ARIA usage for correctness. Applies to any web framework or vanilla HTML/CSS/JS.