-
Notifications
You must be signed in to change notification settings - Fork 6
Agent: Link Checker
github-actions[bot] edited this page Feb 23, 2026
·
3 revisions
Scans your code for link text that would confuse a screen reader user. Screen reader users often navigate by pulling up a list of all links on the page - when every link says "click here" or "read more," that list is useless. This agent finds those patterns and rewrites them so every link makes sense out of context.
- You have pages with repeated "Learn more," "Click here," or "Read more" links
- You want to verify all links pass WCAG 2.4.4 (Link Purpose in Context)
- You are building navigation, footers, or content pages with many links
- You want to audit existing link text across an entire codebase
- A screen reader user or QA tester reported that links are confusing
Expand - 7 link text patterns detected
| Pattern | Example | Why It Fails |
|---|---|---|
| Generic exact match | <a href="/pricing">Click here</a> |
No purpose in link list |
| Generic prefix | <a href="/docs">Read more about setup</a> |
Starts with filler |
| Repeated identical text | Three links all saying "Learn more" | Indistinguishable in link list |
| URL as link text | <a href="https://example.com">https://example.com</a> |
Screen reader reads every character |
| Adjacent duplicate links | Image + text link to same URL | Announced twice, confusing |
| Missing new-window warning | <a href="/file.pdf" target="_blank">Report</a> |
No indication behavior changes |
| Non-HTML resource | <a href="/file.xlsx">Download</a> |
User does not know the file type or size |
Show example prompts
/link-checker scan this page for ambiguous link text
/link-checker review the footer component for link accessibility
/link-checker audit all links in the marketing pages directory
/link-checker fix the "read more" links in this blog listing
@link-checker review the navigation links in this component
@link-checker find all ambiguous link text in the project
@link-checker fix the "click here" links in this file
@link-checker audit links across the entire src/ directory
Expand constraints
- Never suggests
aria-labelas a first fix - always rewrites the visible text first - Does not flag links with 4+ descriptive words (e.g., "View quarterly earnings report" is fine)
- Catches bare URLs as link text - requires human-readable text instead
- Flags adjacent image + text links to the same destination as requiring combination into a single
<a> - Adds
(opens in new tab)visually and viaaria-labelfortarget="_blank"links - Adds file type and size for non-HTML resources (e.g., "Annual report (PDF, 2.4 MB)")
- Accessibility Lead
- Web Accessibility Wizard
- Document Accessibility Wizard
- Alt Text and Headings
- ARIA Specialist
- Contrast Master
- Forms Specialist
- Keyboard Navigator
- Link Checker
- Live Region Controller
- Modal Specialist
- Tables Data Specialist
- Word Accessibility
- Excel Accessibility
- PowerPoint Accessibility
- PDF Accessibility
- Office Scan Config
- PDF Scan Config
- Testing Coach
- WCAG Guide