vibecheck0.3.0
Search visibilityseogeneric-link-textinfo

Vague link text

Link text like “click here”, “read more”, or “learn more” carries no meaning on its own. Search engines use anchor text to understand the linked page, and screen-reader users often pull up a list of links out of context — a list of ten “read more” links is useless. AI-generated CTAs default to these generic phrases.

Framework fixes

Symptoms

  • Multiple links reading “click here”, “read more”, “learn more”
  • A screen reader’s link list is full of identical, meaningless labels
  • Anchor text gives search engines no signal about the destination

How VibeCheck catches it

In your widget · Problems

infoseoVague link text

To your coding agent · MCP

agent › get_detected_issues
{ detector: "seo", issue: "Vague link text", threshold: "link text matching /click here|read more|learn more|here|more|link|this/i" }

The same string in your widget and in your agent’s context — no screenshot, no copy-paste.

Root causes

  • CTA components default to generic labels
  • “Read more” links after truncated cards reuse one phrase
  • Link text was written for layout, not meaning

The fix

Write link text that describes the destination, so it makes sense read on its own. If a card’s layout needs a short CTA, add a visually-hidden label or an aria-label that names the target.

  1. Rewrite generic links to name their destination
  2. For unavoidable short CTAs, add an aria-label or visually-hidden text
  3. Verify each link makes sense out of context
html
<!-- vague -->
<a href="/pricing">Read more</a>

<!-- descriptive -->
<a href="/pricing">See pricing &amp; plans</a>

<!-- short CTA that still names the target -->
<a href="/pricing" aria-label="See pricing and plans">Read more</a>

FAQ

Is “click here” really that bad?
For usability and SEO, yes. Anchor text describes the destination to crawlers and to screen-reader users reading a link list. “See pricing” beats “click here” every time.
How do I keep a short button label but still be descriptive?
Add an aria-label that names the destination, or include visually-hidden text. The visible label can stay short while assistive tech and crawlers get the full meaning.