Add A11yAgent static analysis toolchain with 32 WCAG accessibility rules#7
Open
pauljadam wants to merge 1 commit intocvs-health:mainfrom
Open
Add A11yAgent static analysis toolchain with 32 WCAG accessibility rules#7pauljadam wants to merge 1 commit intocvs-health:mainfrom
pauljadam wants to merge 1 commit intocvs-health:mainfrom
Conversation
Adds a comprehensive accessibility checking system for Jetpack Compose: - A11yAgent: CLI tool with 32 rules mapped to WCAG 2.2, supporting multiple output formats (terminal, Gradle, JSON, SARIF, HTML), baseline suppression, per-composable scoring, trend tracking, and rule documentation generation - lint-checks: Android Lint integration providing the same 32 rules as real-time editor squiggly underlines in Android Studio - ide-plugin: IntelliJ Platform plugin for inline accessibility warnings - gradle-plugin: Gradle task wrapper for CI/CD integration - Pre-commit hook and GitHub Actions workflow for automated checks - Includes Label in Name rule (WCAG 2.5.3) with ERROR/WARNING severity Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
./gradlew a11yCheck) for CI/CD integrationWhat's included
A11yAgent/lint-checks/ide-plugin/gradle-plugin/.githooks/.github/workflows/Test plan
./gradlew :A11yAgent:test— all unit tests pass (32 rules, scanner, baseline, scoring)./gradlew :lint-checks:test— all lint detector tests pass./gradlew :A11yAgent:shadowJar && java -jar A11yAgent/build/libs/a11y-check-android-0.1.0.jar --generate-docs— rule docs generate correctlycd ide-plugin && ./gradlew buildPlugin— IDE plugin builds successfully./gradlew a11yCheckagainst app source to verify end-to-end🤖 Generated with Claude Code