For an overview of all available workflows, see the main README.
Perform accessibility reviews checking for WCAG 2.2 compliance and documenting problems found
The Daily Accessibility Review workflow scans your repository, analyzes accessibility against WCAG 2.2 guidelines, and creates issues documenting any accessibility problems found.
# Install the 'gh aw' extension
gh extension install github/gh-aw
# Add the workflow to your repository
gh aw add-wizard githubnext/agentics/daily-accessibility-reviewThis walks you through adding the workflow to your repository.
graph LR
A[Scan Repository] --> B[Analyze Accessibility]
B --> C[Check WCAG 2.2]
C --> D{Issues Found?}
D -->|Yes| E[Create Issue Report]
D -->|No| F[Report: All Accessible]
This workflow requires no configuration and works out of the box.
After editing run gh aw compile to update the workflow and commit all changes to the default branch.
You can start a run of this workflow immediately by running:
gh aw run daily-accessibility-review