What problem does it solve? Screen reader users often navigate pages by jumping between links or reviewing a list of all links, so generic text like "click here" or "read more" gives them no idea where a link leads. This Skill audits your components for WCAG 2.4.4 Link Purpose (In Context) violations and provides concrete code fixes. ## Core Features & Use Cases - Generic Link Text Detection: Finds vague phrases like "read more", "learn more", and "click here" that lack context, including duplicates generated inside loops. - Ambiguous and Image-Only Link Detection: Flags repeated identical link text pointing to different destinations, icon links without accessible names, and download links missing file type or size information. - Actionable Fix Recommendations: Suggests multiple compliant patterns per violation, such as sr-only text, aria-label, aria-labelledby, or linking the heading, with code examples. - Use Case: While reviewing a product grid component that renders "Learn more" links in a map loop, run this Skill to get a report of each violation with file and line numbers plus ready-to-apply fixes. ## Quick Start Analyze src/components/ArticleCard.tsx and src/components/ProductGrid.tsx for WCAG 2.4.4 link purpose violations and suggest fixes.