Claude Code Plugins

Community-maintained marketplace

Feedback

accessibility

@YosrBennagra/3SC
0
0

Implement accessibility for the .NET 8 WPF widget host app. Use when improving keyboard navigation, screen reader support, focus states, and color contrast in XAML and styles.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name accessibility
description Implement accessibility for the .NET 8 WPF widget host app. Use when improving keyboard navigation, screen reader support, focus states, and color contrast in XAML and styles.

Accessibility

Overview

Make the shell and widgets usable with keyboard navigation and assistive technologies.

Core areas

  • Keyboard navigation and focus order
  • Screen reader semantics
  • Color contrast and focus visuals

Workflow

  1. Validate tab order and keyboard interactions.
  2. Add automation properties for screen readers.
  3. Ensure focus visuals are visible and consistent.
  4. Check color contrast in Light/Dark themes.

Guidance

  • Use AutomationProperties.Name and HelpText where needed.
  • Avoid removing focus outlines without replacement.
  • Test with high contrast mode if possible.

References

  • references/keyboard.md for keyboard nav patterns.
  • references/screen-readers.md for automation properties.
  • references/color-contrast.md for contrast rules.