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 code for WCAG 2.4.4 Link Purpose (In Context) violations and provides concrete, copy-paste-ready fixes. ## Core Features & Use Cases - Generic Link Detection: Finds vague link text such as "read more", "learn more", "click here", and URL-only links across HTML, JSX, and Vue templates. - Ambiguity and Image-Link Analysis: Detects repeated identical link text pointing to different destinations and icon- or image-only links missing alt text or ARIA labels. - Actionable Remediation: For each violation, reports file and line number plus multiple fix options using sr-only text, aria-label, aria-labelledby, or descriptive link text. - Use Case: Before shipping a product grid where every card has a "Learn more" link, run this Skill to get per-violation reports with compliant code alternatives like "Learn more about {product.name}". ## Quick Start Analyze the files in src/components for WCAG 2.4.4 link purpose violations and suggest fixes.