vibecheck0.3.0
AI readinessaeono-author-metadatainfo

Missing author and date signals

Answer engines and search rankers weigh who wrote something and when when deciding which sources to trust and cite — E-E-A-T in Google’s terms. A page with no author and no date reads as anonymous and undated, which is exactly what ranking systems discount. AI-generated content pages almost never emit these signals.

Framework fixes

Symptoms

  • No visible or machine-readable author on articles
  • No published or modified date on time-sensitive content
  • Assistants can’t attribute or date the page when citing it
  • Content reads as anonymous, hurting E-E-A-T signals

How VibeCheck catches it

In your widget · Problems

infoaeoNo author or date signals

To your coding agent · MCP

agent › get_detected_issues
{ detector: "aeo", issue: "No author or date signals", threshold: "No meta[name="author"], article:author, or [itemprop="author"] found" }

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

Root causes

  • No author or date metadata in the page head or schema
  • Dates rendered only as display text with no machine-readable markup
  • A template that omits authorship entirely

The fix

Add author and date signals in two places: a meta author tag (and/or article:author), and inside your JSON-LD as author plus datePublished / dateModified. Use a machine-readable <time datetime> for visible dates.

  1. Add <meta name="author"> and article:published_time to the head
  2. Include author, datePublished, and dateModified in your Article JSON-LD
  3. Mark visible dates up with <time datetime="…">
html
<meta name="author" content="Jane Dev" />
<meta property="article:published_time" content="2026-01-15T09:00:00Z" />
<time datetime="2026-01-15">January 15, 2026</time>

FAQ

What is E-E-A-T and how does this help?
Experience, Expertise, Authoritativeness, Trust — Google’s framework for judging content quality. Clear authorship and dates are concrete signals that feed it, and answer engines use the same cues to decide what to cite.
Do I need both meta tags and JSON-LD?
Belt and braces. Meta/OG tags are widely read; JSON-LD author and datePublished are what rich-result and answer engines prefer. Providing both maximises the chance your authorship is picked up.