Example output: examples/seo-hreflang-airbnb-com-20260514/HREFLANG-REPORT.md
Hreflang Audit
Adapted from AgriciDaniel/claude-seo's seo-hreflang skill (MIT). Concept and validation rules originate there; this implementation is rebuilt against our backend (DataForSEO On-Page loop + Firecrawl + WebFetch + GSC + Google APIs via seo-google).
Validate hreflang implementations on a multi-language or multi-region site. Read the actual <link rel="alternate" hreflang="…"> tags pages emit — primarily from the DataForSEO on_page_instant_pages loop (which returns each page's hreflang set) plus Firecrawl/WebFetch for raw <head> markup — cross-check the XML sitemap's hreflang, weight by which country/language pages get impressions in GSC, and produce one of three verdicts — PASS, NEEDS-FIX, or BROKEN — with a top-fixes table anchored in objective signals.
Prerequisites
- DataForSEO MCP server connected —
on_page_instant_pages returns each fetched page's hreflang set, the primary signal source here.
- GSC (
mcp__gscServer__*) recommended — for which country/language pages actually get impressions (traffic-weighting the audit) and cross-domain hreflang verification (step 6). Firecrawl optional — for raw <head> HTML where exact <link rel="alternate"> attributes matter; WebFetch is the fallback.
- Claude's
WebFetch tool available (fallback when Firecrawl is unavailable).
- User provides: a target domain (e.g.
example.com). Optional: explicit list of representative pages to inventory; explicit sitemap URL if not at /sitemap.xml.
- Predecessor (recommended):
seo-technical-audit or seo-sitemap already run on this domain — its discovered URL set + On-Page hreflang fields can be reused. Without it, the skill discovers and fetches its own sample.
Optional accelerator: if you have a hosted-crawl MCP you can substitute it for the URL-discovery + fetch loop — not required.
Process
Validate target & preflight. See skills/seo-firecrawl/references/preflight.md for the canonical 3-stage preflight (cost note, Firecrawl availability, Google APIs). Skill-specific notes:
- Normalise domain (strip protocol, trailing slash) before continuing.
- DataForSEO bills per call; this run issues ~5–10 calls (the homepage + ~5-sample
on_page_instant_pages loop, plus up to ~6 Firecrawl credits for raw <head> markup). Use the documented limit/ceiling params to cap.
- Firecrawl: optional with WebFetch fallback, ~6 Firecrawl credits if available (hard cap). When available, step 4 (per-URL hreflang inventory) runs on homepage + 5 representative pages with
formats: ["rawHtml"]. Without Firecrawl, step 4 falls back to WebFetch — coverage is degraded because WebFetch returns markdown only and silently strips <link rel="alternate"> tags from <head>. Pass --no-firecrawl to force WebFetch even when Firecrawl is available.
- Google APIs: tier 1 (GSC) unlocks step 6 (GSC verification of hreflang-targeted alternates). See
skills/seo-google/references/cross-skill-integration.md for the full enrichment contract.
Discover the URL set mcp__firecrawl-mcp__firecrawl_map / WebFetch (sitemap) + mcp__gscServer__get_search_analytics + mcp__dataforseo__dataforseo_labs_google_relevant_pages
- Build the candidate URL set for the audit: XML sitemap entries (especially any language-path branches like
/en/, /fr/, /de/), GSC indexed pages (dimensions=["page"] — surfaces which country/language URLs Google actually serves), and DataForSEO top pages.
- If
seo-technical-audit or seo-sitemap already ran, reuse their discovered URL set instead of re-discovering.
- Cap to a representative sample (homepage + ~5 pages spanning the language paths). State the sample in the deliverable.
Pull On-Page hreflang fields mcp__dataforseo__on_page_instant_pages (looped)
- Loop
on_page_instant_pages over the sampled URLs — each result includes the page's <link rel="alternate" hreflang> set, its canonical, and status. This is the primary hreflang signal source (replacing a hosted crawl's hreflang report).
- Extract every hreflang issue from these fields (typical codes:
hreflang_no_return_tag, hreflang_invalid_lang_code, hreflang_conflict, hreflang_missing_x_default, hreflang_canonical_mismatch, hreflang_no_self_reference).
- Where the On-Page fetch's hreflang set looks incomplete (some sites inject alternates client-side or in unusual head order), confirm against the raw
<head> markup in step 4.
- Persist to
01-audit-hreflang-issues.md and feed into hreflang-issues.csv.
Per-URL hreflang tag inventory mcp__firecrawl-mcp__firecrawl_scrape (preferred) / WebFetch (fallback)
- Sample selection: homepage + up to 5 representative pages from
mcp__dataforseo__dataforseo_labs_google_relevant_pages (sort by traffic descending; bias toward pages on different language paths if the URL structure exposes them — /en/, /fr/, /de/, etc.).
- Firecrawl path (1 credit per URL, ~6 total): call
firecrawl_scrape(url=..., formats=["rawHtml"]). Pin rawHtml — the default html post-processing strips <link rel="alternate"> on many sites. Parse every <link rel="alternate" hreflang="…" href="…"> from the <head>. Capture: source URL, hreflang attribute, href, and whether it's self-referencing.
- WebFetch fallback (no Firecrawl): try fetching each URL and extracting hreflang from the markdown response. WebFetch frequently returns markdown that has stripped
<head> link tags, so this path will under-report. Note in HREFLANG-REPORT.md: Per-URL inventory: degraded coverage — Firecrawl not installed; some hreflang tags may be missed.
- Apply validation rules (see references/validation-rules.md for the full list):
- Self-referencing tag: the page's own URL must appear in its own hreflang set.
- Return tags: every alternate link must reciprocate. If page A lists B as
fr, page B must list A as en (or whichever).
- x-default: at least one alternate per set must use
hreflang="x-default".
- Language-region code validation: every value must be a valid ISO 639-1 language (optionally followed by
- and an ISO 3166-1 Alpha-2 region). Common errors caught: eng (use en), jp (use ja), en-uk (use en-GB), es-LA (no such ISO region).
- Conflict detection: the same hreflang value (e.g.
de-DE) appearing on multiple distinct URLs is a conflict — Google ignores conflicting sets.
- Canonical alignment: if the page has
<link rel="canonical">, it must match the page's own URL (or its self-referencing hreflang URL). Hreflang on a non-canonical page is silently ignored by Google.
- Protocol consistency: all URLs in a set must share the same scheme (HTTPS preferred).
- Persist to
02-per-url-hreflang.md and append findings to hreflang-issues.csv.
Sitemap-level hreflang (defer to seo-sitemap where appropriate)
- If the user's domain uses sitemap-based hreflang (
<xhtml:link rel="alternate" …> inside the sitemap), this skill checks structure and consistency only. Full sitemap analysis (orphans, missing pages, broken entries) is seo-sitemap's job — recommend it explicitly if a sitemap-vs-audit diff is in scope.
- Fetch the sitemap. Try
https://{domain}/sitemap.xml; if 404, fetch /robots.txt and find Sitemap: directives. For sitemap-of-sitemaps, recursively fetch each child.
- Validate hreflang within the sitemap:
- Does the sitemap use the
xmlns:xhtml="http://www.w3.org/1999/xhtml" namespace? Required for hreflang in sitemaps.
- Does each
<url> entry that has hreflang alternates include itself in the alternate set (self-reference)?
- Does every alternate listed in one
<url> entry reciprocate as its own <url> entry with the same alternate set (return tags)?
- Are language-region codes valid (apply same rules as step 4)?
- Cross-check against per-URL inventory (step 4): if a sample URL's HTML lists 4 hreflang alternates but the sitemap entry for that URL lists 6, that mismatch is a conflict — Google may pick either, and inconsistency degrades the signal.
- Persist to
03-sitemap-hreflang.md and append findings to hreflang-issues.csv.
GSC verification of hreflang-targeted alternates (only if google-api.json is present, tier ≥ 1)
- For each unique domain that appears as an
href target in the hreflang sets (e.g. example.com, example.de, example.fr), confirm GSC verification:
python3 scripts/gsc_query.py --property "{property}" --json (a status-only check; just confirm the property responds without PROPERTY_NOT_VERIFIED).
- Why this matters: Google explicitly recommends verifying every domain that participates in a cross-domain hreflang setup. If
example.de is listed as an alternate but isn't verified in this account, the hreflang signal is weakened and you can't see how Google interprets it.
- Surface in
HREFLANG-REPORT.md as a section "## GSC verification of hreflang targets" with one row per target domain: verified / not verified / not configured.
- If property not verified for a target domain: list it as a fix at Medium severity ("Verify {domain} in Google Search Console — required for cross-domain hreflang trust").
- See
skills/seo-google/references/cross-skill-integration.md § "Trigger pattern" for the failure-mode contract.
Synthesise verdict
- Apply the verdict heuristic (see Tips) to produce PASS, NEEDS-FIX, or BROKEN.
- Sort
hreflang-issues.csv by severity descending, then count descending.
- Write
HREFLANG-REPORT.md with the top-fixes table (top 10) and the verdict.
Output format
Create a folder seo-hreflang-{target-slug}-{YYYYMMDD}/ with:
seo-hreflang-{target-slug}-{YYYYMMDD}/
├── 01-audit-hreflang-issues.md (On-Page hreflang-field findings filtered to hreflang)
├── 02-per-url-hreflang.md (per-URL <link rel="alternate"> inventory + validation findings)
├── 03-sitemap-hreflang.md (sitemap-level hreflang validation; defer details to seo-sitemap)
├── evidence/
│ ├── homepage-rawhtml.html (raw HTML from Firecrawl, for the homepage sample)
│ ├── sample-{n}-rawhtml.html (raw HTML for each sampled URL)
│ └── sitemap.xml (raw fetched sitemap)
├── hreflang-issues.csv (load-bearing: URL, issue code, severity, fix)
└── HREFLANG-REPORT.md (PRIMARY: verdict + top fixes table)
HREFLANG-REPORT.md follows this shape:
# Hreflang Audit: {domain}
> Audit date {YYYY-MM-DD} · Sample size: {n} URLs · Languages detected: {comma-separated list}
## Verdict: {PASS | NEEDS-FIX | BROKEN}
Reasoning: {1–2 sentences anchored in concrete numbers from the data}.
## Summary
| Source | Findings | Severity breakdown |
|---|---|---|
| On-Page hreflang fields | {n} | Critical: {n} · High: {n} · Medium: {n} · Low: {n} |
| Per-URL HTML inventory | {n} | … |
| Sitemap | {n} | … |
## Top fixes (impact-ranked)
| # | URL | Issue | Severity | Fix |
|---|---|---|---|---|
| 1 | {URL} | {issue code} | {severity} | {one-line fix} |
| 2 | … | … | … | … |
| ... up to 10 |
## Languages detected
| Language | URL count | Self-ref OK | Return tags OK | x-default OK |
|---|---|---|---|---|
| en-US | {n} | ✓ / ✗ {count} | ✓ / ✗ | ✓ / ✗ |
| de-DE | {n} | … | … | … |
| ... |
## Per-URL inventory ({n} URLs sampled)
| URL | Alternates | Self-ref | x-default | Notable issues |
|---|---|---|---|---|
| {URL} | {n} | ✓/✗ | ✓/✗ | {short text} |
| ... |
## Sitemap-level hreflang
- xhtml namespace declared: {✓/✗}
- URLs with hreflang alternates: {n}
- Self-reference within sitemap: {✓ all / ✗ {count} missing}
- Return tags within sitemap: {✓ all / ✗ {count} missing}
- Per-URL HTML vs sitemap consistency: {✓ all match / ✗ {count} mismatched}
- Full sitemap-vs-audit analysis: see `seo-sitemap` (orphans, broken entries, lastmod).
## GSC verification of hreflang targets
| Domain | Verified | Notes |
|---|---|---|
| {domain1} | ✓ / ✗ | {note if unverified} |
| ... |
(Or: `GSC verification: not configured (run bash extensions/google/install.sh)`.)
## Coverage notes
- Per-URL inventory tool: {Firecrawl rawHtml | WebFetch fallback (degraded — some hreflang tags may be missed)}.
- Pages sampled: homepage + {n} representative pages (selection: top traffic from `dataforseo_labs_google_relevant_pages`).
## Apply
- Walk `hreflang-issues.csv` row-by-row; each row is one specific change (URL + issue + fix).
- After applying changes, re-run `seo-technical-audit` to refresh the On-Page crawl baseline, then re-run this skill to verify.
hreflang-issues.csv columns: url,issue_code,severity,fix,source where source is one of audit | html | sitemap | gsc (audit = the On-Page hreflang-field pass, step 3).
Tips
- DataForSEO allows up to 2,000 calls/min, 30 concurrent; pace sequentially.
- Keep the sample small — homepage + ~5 language-spanning pages. The per-URL
on_page_instant_pages loop and Firecrawl raw-HTML pulls are the per-call cost here; a representative sample catches systemic hreflang errors without fetching every locale.
- Verdict heuristic:
- PASS: zero Critical findings; ≤ 2 High findings; sample URLs all have self-reference, x-default, and reciprocal return tags; all language-region codes valid; canonical aligns with self-ref hreflang.
- NEEDS-FIX: any High finding; or > 5 Medium findings; or any one of (missing x-default, missing return tags on > 25% of sampled pages, language-region code error, sitemap-vs-HTML mismatch).
- BROKEN: any Critical finding; or hreflang attempted but no self-reference on the homepage; or canonical pointing elsewhere on a page that nonetheless emits hreflang (entire set is ignored by Google); or > 50% of sampled URLs missing return tags.
- Anchor every claim in
HREFLANG-REPORT.md to a row in hreflang-issues.csv. If a stakeholder questions the verdict, walk them through the CSV.
- For sites with > 50 language variants per page, the per-URL HTML implementation bloats the
<head> — recommend the sitemap-based implementation instead. Don't generate code; the deliverable is diagnostic, not code-gen.
- The skill does not assess cultural adaptation, content parity, or locale formatting. Those are translation/QA concerns; they're orthogonal to whether hreflang itself is technically correct. If the user wants those, point them at the translation team — this skill answers "is the technical hreflang signal working?", not "is the localised content good?".
- For cross-domain hreflang (e.g.
example.com ↔ example.de), step 6's GSC check is the highest-value enrichment — verifying both domains is Google's explicit recommendation.
- Common false-positive guard: if a sampled page legitimately has no internationalization (e.g. a single-region site), zero hreflang tags is correct, not an issue. The skill detects this by checking whether any sampled page emits hreflang; if none do, the verdict is PASS with note "No hreflang implementation detected — single-language site."
- Pair with
seo-sitemap for the sitemap-vs-audit diff; pair with seo-technical-audit for full technical health. This skill is narrow: hreflang correctness only.
- See
references/validation-rules.md for the full per-issue rule table (severity, detection logic, suggested fix).
1---2name: seo-hreflang3description: Hreflang and international SEO audit for multi-language and multi-region sites. Validates language-region codes, return tags, x-default, canonical alignment, and conflict detection across the per-URL HTML (DataForSEO On-Page + Firecrawl/WebFetch) and the XML sitemap. Use when the user asks "hreflang", "international SEO", "i18n", "language targeting", "x-default", "regional sites", or "multi-language SEO".4---5> Example output: [examples/seo-hreflang-airbnb-com-20260514/HREFLANG-REPORT.md](../../examples/seo-hreflang-airbnb-com-20260514/HREFLANG-REPORT.md)67# Hreflang Audit89Adapted from `AgriciDaniel/claude-seo`'s `seo-hreflang` skill (MIT). Concept and validation rules originate there; this implementation is rebuilt against our backend (DataForSEO On-Page loop + Firecrawl + WebFetch + GSC + Google APIs via `seo-google`).1011Validate hreflang implementations on a multi-language or multi-region site. Read the actual `<link rel="alternate" hreflang="…">` tags pages emit — primarily from the DataForSEO `on_page_instant_pages` loop (which returns each page's hreflang set) plus Firecrawl/WebFetch for raw `<head>` markup — cross-check the XML sitemap's hreflang, weight by which country/language pages get impressions in GSC, and produce one of three verdicts — **PASS**, **NEEDS-FIX**, or **BROKEN** — with a top-fixes table anchored in objective signals.1213## Prerequisites1415- DataForSEO MCP server connected — `on_page_instant_pages` returns each fetched page's hreflang set, the primary signal source here.16- GSC (`mcp__gscServer__*`) recommended — for which country/language pages actually get impressions (traffic-weighting the audit) and cross-domain hreflang verification (step 6). Firecrawl optional — for raw `<head>` HTML where exact `<link rel="alternate">` attributes matter; WebFetch is the fallback.17- Claude's `WebFetch` tool available (fallback when Firecrawl is unavailable).18- User provides: a target domain (e.g. `example.com`). Optional: explicit list of representative pages to inventory; explicit sitemap URL if not at `/sitemap.xml`.19- **Predecessor (recommended):** `seo-technical-audit` or `seo-sitemap` already run on this domain — its discovered URL set + On-Page hreflang fields can be reused. Without it, the skill discovers and fetches its own sample.2021> *Optional accelerator:* if you have a hosted-crawl MCP you can substitute it for the URL-discovery + fetch loop — not required.2223## Process24251. **Validate target & preflight.** See `skills/seo-firecrawl/references/preflight.md` for the canonical 3-stage preflight (cost note, Firecrawl availability, Google APIs). Skill-specific notes:26 - Normalise domain (strip protocol, trailing slash) before continuing.27 - DataForSEO bills per call; this run issues ~5–10 calls (the homepage + ~5-sample `on_page_instant_pages` loop, plus up to ~6 Firecrawl credits for raw `<head>` markup). Use the documented `limit`/`ceiling` params to cap.28 - Firecrawl: optional with WebFetch fallback, ~6 Firecrawl credits if available (hard cap). When available, step 4 (per-URL hreflang inventory) runs on homepage + 5 representative pages with `formats: ["rawHtml"]`. Without Firecrawl, step 4 falls back to WebFetch — coverage is degraded because WebFetch returns markdown only and silently strips `<link rel="alternate">` tags from `<head>`. Pass `--no-firecrawl` to force WebFetch even when Firecrawl is available.29 - Google APIs: tier 1 (GSC) unlocks step 6 (GSC verification of hreflang-targeted alternates). See `skills/seo-google/references/cross-skill-integration.md` for the full enrichment contract.30312. **Discover the URL set** `mcp__firecrawl-mcp__firecrawl_map` / `WebFetch` (sitemap) + `mcp__gscServer__get_search_analytics` + `mcp__dataforseo__dataforseo_labs_google_relevant_pages`32 - Build the candidate URL set for the audit: XML sitemap entries (especially any language-path branches like `/en/`, `/fr/`, `/de/`), GSC indexed pages (`dimensions=["page"]` — surfaces which country/language URLs Google actually serves), and DataForSEO top pages.33 - If `seo-technical-audit` or `seo-sitemap` already ran, reuse their discovered URL set instead of re-discovering.34 - Cap to a representative sample (homepage + ~5 pages spanning the language paths). State the sample in the deliverable.35363. **Pull On-Page hreflang fields** `mcp__dataforseo__on_page_instant_pages` (looped)37 - Loop `on_page_instant_pages` over the sampled URLs — each result includes the page's `<link rel="alternate" hreflang>` set, its canonical, and status. This is the primary hreflang signal source (replacing a hosted crawl's hreflang report).38 - Extract every hreflang issue from these fields (typical codes: `hreflang_no_return_tag`, `hreflang_invalid_lang_code`, `hreflang_conflict`, `hreflang_missing_x_default`, `hreflang_canonical_mismatch`, `hreflang_no_self_reference`).39 - Where the On-Page fetch's hreflang set looks incomplete (some sites inject alternates client-side or in unusual head order), confirm against the raw `<head>` markup in step 4.40 - Persist to `01-audit-hreflang-issues.md` and feed into `hreflang-issues.csv`.41424. **Per-URL hreflang tag inventory** `mcp__firecrawl-mcp__firecrawl_scrape` (preferred) / `WebFetch` (fallback)43 - **Sample selection:** homepage + up to 5 representative pages from `mcp__dataforseo__dataforseo_labs_google_relevant_pages` (sort by traffic descending; bias toward pages on different language paths if the URL structure exposes them — `/en/`, `/fr/`, `/de/`, etc.).44 - **Firecrawl path** (1 credit per URL, ~6 total): call `firecrawl_scrape(url=..., formats=["rawHtml"])`. Pin `rawHtml` — the default `html` post-processing strips `<link rel="alternate">` on many sites. Parse every `<link rel="alternate" hreflang="…" href="…">` from the `<head>`. Capture: source URL, hreflang attribute, href, and whether it's self-referencing.45 - **WebFetch fallback** (no Firecrawl): try fetching each URL and extracting hreflang from the markdown response. WebFetch frequently returns markdown that has stripped `<head>` link tags, so this path will under-report. Note in `HREFLANG-REPORT.md`: `Per-URL inventory: degraded coverage — Firecrawl not installed; some hreflang tags may be missed.`46 - **Apply validation rules** (see references/validation-rules.md for the full list):47 - **Self-referencing tag:** the page's own URL must appear in its own hreflang set.48 - **Return tags:** every alternate link must reciprocate. If page A lists B as `fr`, page B must list A as `en` (or whichever).49 - **x-default:** at least one alternate per set must use `hreflang="x-default"`.50 - **Language-region code validation:** every value must be a valid ISO 639-1 language (optionally followed by `-` and an ISO 3166-1 Alpha-2 region). Common errors caught: `eng` (use `en`), `jp` (use `ja`), `en-uk` (use `en-GB`), `es-LA` (no such ISO region).51 - **Conflict detection:** the same hreflang value (e.g. `de-DE`) appearing on multiple distinct URLs is a conflict — Google ignores conflicting sets.52 - **Canonical alignment:** if the page has `<link rel="canonical">`, it must match the page's own URL (or its self-referencing hreflang URL). Hreflang on a non-canonical page is silently ignored by Google.53 - **Protocol consistency:** all URLs in a set must share the same scheme (HTTPS preferred).54 - Persist to `02-per-url-hreflang.md` and append findings to `hreflang-issues.csv`.55565. **Sitemap-level hreflang** (defer to `seo-sitemap` where appropriate)57 - If the user's domain uses sitemap-based hreflang (`<xhtml:link rel="alternate" …>` inside the sitemap), this skill checks structure and consistency only. Full sitemap analysis (orphans, missing pages, broken entries) is `seo-sitemap`'s job — recommend it explicitly if a sitemap-vs-audit diff is in scope.58 - **Fetch the sitemap.** Try `https://{domain}/sitemap.xml`; if 404, fetch `/robots.txt` and find `Sitemap:` directives. For sitemap-of-sitemaps, recursively fetch each child.59 - **Validate hreflang within the sitemap:**60 - Does the sitemap use the `xmlns:xhtml="http://www.w3.org/1999/xhtml"` namespace? Required for hreflang in sitemaps.61 - Does each `<url>` entry that has hreflang alternates include itself in the alternate set (self-reference)?62 - Does every alternate listed in one `<url>` entry reciprocate as its own `<url>` entry with the same alternate set (return tags)?63 - Are language-region codes valid (apply same rules as step 4)?64 - **Cross-check against per-URL inventory (step 4):** if a sample URL's HTML lists 4 hreflang alternates but the sitemap entry for that URL lists 6, that mismatch is a conflict — Google may pick either, and inconsistency degrades the signal.65 - Persist to `03-sitemap-hreflang.md` and append findings to `hreflang-issues.csv`.66676. **GSC verification of hreflang-targeted alternates** *(only if google-api.json is present, tier ≥ 1)*68 - For each unique domain that appears as an `href` target in the hreflang sets (e.g. `example.com`, `example.de`, `example.fr`), confirm GSC verification:69 `python3 scripts/gsc_query.py --property "{property}" --json` (a status-only check; just confirm the property responds without `PROPERTY_NOT_VERIFIED`).70 - **Why this matters:** Google explicitly recommends verifying every domain that participates in a cross-domain hreflang setup. If `example.de` is listed as an alternate but isn't verified in this account, the hreflang signal is weakened and you can't see how Google interprets it.71 - Surface in `HREFLANG-REPORT.md` as a section "## GSC verification of hreflang targets" with one row per target domain: `verified` / `not verified` / `not configured`.72 - If property not verified for a target domain: list it as a fix at Medium severity ("Verify {domain} in Google Search Console — required for cross-domain hreflang trust").73 - See `skills/seo-google/references/cross-skill-integration.md` § "Trigger pattern" for the failure-mode contract.74757. **Synthesise verdict**76 - Apply the verdict heuristic (see Tips) to produce **PASS**, **NEEDS-FIX**, or **BROKEN**.77 - Sort `hreflang-issues.csv` by severity descending, then count descending.78 - Write `HREFLANG-REPORT.md` with the top-fixes table (top 10) and the verdict.7980## Output format8182Create a folder `seo-hreflang-{target-slug}-{YYYYMMDD}/` with:8384```85seo-hreflang-{target-slug}-{YYYYMMDD}/86├── 01-audit-hreflang-issues.md (On-Page hreflang-field findings filtered to hreflang)87├── 02-per-url-hreflang.md (per-URL <link rel="alternate"> inventory + validation findings)88├── 03-sitemap-hreflang.md (sitemap-level hreflang validation; defer details to seo-sitemap)89├── evidence/90│ ├── homepage-rawhtml.html (raw HTML from Firecrawl, for the homepage sample)91│ ├── sample-{n}-rawhtml.html (raw HTML for each sampled URL)92│ └── sitemap.xml (raw fetched sitemap)93├── hreflang-issues.csv (load-bearing: URL, issue code, severity, fix)94└── HREFLANG-REPORT.md (PRIMARY: verdict + top fixes table)95```9697`HREFLANG-REPORT.md` follows this shape:9899```markdown100# Hreflang Audit: {domain}101102> Audit date {YYYY-MM-DD} · Sample size: {n} URLs · Languages detected: {comma-separated list}103104## Verdict: {PASS | NEEDS-FIX | BROKEN}105106Reasoning: {1–2 sentences anchored in concrete numbers from the data}.107108## Summary109110| Source | Findings | Severity breakdown |111|---|---|---|112| On-Page hreflang fields | {n} | Critical: {n} · High: {n} · Medium: {n} · Low: {n} |113| Per-URL HTML inventory | {n} | … |114| Sitemap | {n} | … |115116## Top fixes (impact-ranked)117118| # | URL | Issue | Severity | Fix |119|---|---|---|---|---|120| 1 | {URL} | {issue code} | {severity} | {one-line fix} |121| 2 | … | … | … | … |122| ... up to 10 |123124## Languages detected125126| Language | URL count | Self-ref OK | Return tags OK | x-default OK |127|---|---|---|---|---|128| en-US | {n} | ✓ / ✗ {count} | ✓ / ✗ | ✓ / ✗ |129| de-DE | {n} | … | … | … |130| ... |131132## Per-URL inventory ({n} URLs sampled)133134| URL | Alternates | Self-ref | x-default | Notable issues |135|---|---|---|---|---|136| {URL} | {n} | ✓/✗ | ✓/✗ | {short text} |137| ... |138139## Sitemap-level hreflang140- xhtml namespace declared: {✓/✗}141- URLs with hreflang alternates: {n}142- Self-reference within sitemap: {✓ all / ✗ {count} missing}143- Return tags within sitemap: {✓ all / ✗ {count} missing}144- Per-URL HTML vs sitemap consistency: {✓ all match / ✗ {count} mismatched}145- Full sitemap-vs-audit analysis: see `seo-sitemap` (orphans, broken entries, lastmod).146147## GSC verification of hreflang targets148149| Domain | Verified | Notes |150|---|---|---|151| {domain1} | ✓ / ✗ | {note if unverified} |152| ... |153154(Or: `GSC verification: not configured (run bash extensions/google/install.sh)`.)155156## Coverage notes157158- Per-URL inventory tool: {Firecrawl rawHtml | WebFetch fallback (degraded — some hreflang tags may be missed)}.159- Pages sampled: homepage + {n} representative pages (selection: top traffic from `dataforseo_labs_google_relevant_pages`).160161## Apply162163- Walk `hreflang-issues.csv` row-by-row; each row is one specific change (URL + issue + fix).164- After applying changes, re-run `seo-technical-audit` to refresh the On-Page crawl baseline, then re-run this skill to verify.165```166167`hreflang-issues.csv` columns: `url,issue_code,severity,fix,source` where `source` is one of `audit | html | sitemap | gsc` (`audit` = the On-Page hreflang-field pass, step 3).168169## Tips170171- DataForSEO allows up to 2,000 calls/min, 30 concurrent; pace sequentially.172- Keep the sample small — homepage + ~5 language-spanning pages. The per-URL `on_page_instant_pages` loop and Firecrawl raw-HTML pulls are the per-call cost here; a representative sample catches systemic hreflang errors without fetching every locale.173- **Verdict heuristic:**174 - **PASS:** zero Critical findings; ≤ 2 High findings; sample URLs all have self-reference, x-default, and reciprocal return tags; all language-region codes valid; canonical aligns with self-ref hreflang.175 - **NEEDS-FIX:** any High finding; or > 5 Medium findings; or any one of (missing x-default, missing return tags on > 25% of sampled pages, language-region code error, sitemap-vs-HTML mismatch).176 - **BROKEN:** any Critical finding; or hreflang attempted but no self-reference on the homepage; or canonical pointing elsewhere on a page that nonetheless emits hreflang (entire set is ignored by Google); or > 50% of sampled URLs missing return tags.177- Anchor every claim in `HREFLANG-REPORT.md` to a row in `hreflang-issues.csv`. If a stakeholder questions the verdict, walk them through the CSV.178- For sites with > 50 language variants per page, the per-URL HTML implementation bloats the `<head>` — recommend the sitemap-based implementation instead. Don't generate code; the deliverable is diagnostic, not code-gen.179- The skill **does not** assess cultural adaptation, content parity, or locale formatting. Those are translation/QA concerns; they're orthogonal to whether hreflang itself is technically correct. If the user wants those, point them at the translation team — this skill answers "is the technical hreflang signal working?", not "is the localised content good?".180- For cross-domain hreflang (e.g. `example.com` ↔ `example.de`), step 6's GSC check is the highest-value enrichment — verifying both domains is Google's explicit recommendation.181- **Common false-positive guard:** if a sampled page legitimately has no internationalization (e.g. a single-region site), zero hreflang tags is correct, not an issue. The skill detects this by checking whether *any* sampled page emits hreflang; if none do, the verdict is PASS with note "No hreflang implementation detected — single-language site."182- Pair with `seo-sitemap` for the sitemap-vs-audit diff; pair with `seo-technical-audit` for full technical health. This skill is narrow: hreflang correctness only.183- See `references/validation-rules.md` for the full per-issue rule table (severity, detection logic, suggested fix).