audit-accessibility
작성자: flutter
플러그인의 사용자 정의 UI 구성 요소가 화면 판독기 및 기타 보조 기술을 사용하는 사용자에게 접근 가능하도록 보장합니다.
npx skills add https://github.com/flutter/flutter-intellij --skill audit-accessibilitySkill: Accessibility (A11y) Audit
You are tasked with ensuring the plugin's custom UI components are accessible to users with screen readers and other assistive technologies.
Objective
Ensure the plugin's custom UI components are accessible to users with screen readers and other assistive technologies.
Workflow Instructions
1. Baseline
- Run
./gradlew testClassesto ensure project compilation. - Run
./gradlew testto ensure the project is stable. - Run
./gradlew verifyPluginto ensure no verification issues.
2. Identify Custom UI
- List all custom
JPanel,JComponent, orDialogclasses in the codebase.
3. Check Properties
- Verify that every interactive component has:
getAccessibleContext().setAccessibleName(...)getAccessibleContext().setAccessibleDescription(...)
4. Focus Management
- Ensure custom components handle focus traversal correctly (Tab/Shift+Tab).
5. Color Contrast
- If custom colors are used, verify they meet WCAG contrast guidelines (especially for dark themes).
6. Verify
- Run
./gradlew testClassesand./gradlew testto ensure no regressions. - Run
./gradlew verifyPluginto ensure strict compliance. - Use the "Accessibility Inspector" (if available in the SDK) or a screen reader to navigate the UI.
- Suggest manual test steps: Check the code changes made and write test steps for a user to execute that will trigger the code paths that have changed. If needed, add logging statements to verify that the code paths have successfully run.
7. Report & Review
- Summarize the accessibility improvements in the form of a git commit message.
- Test Location: Explicitly state where in the IDE the user should go to test the changed functionality (e.g., "Go to Preferences > Languages & Frameworks > Flutter").
- Action: Ask the user to review the UI changes closely.
- Do not commit or push.