/digital-marketing-pro:seo-audit
Purpose
Perform a comprehensive SEO audit that evaluates a website across all major ranking dimensions. Produces a prioritized action plan with estimated impact and effort for each recommendation.
May 2026 Core Update context (read before triaging volatility)
Time-boxed guidance — valid until ~2026-08. This block is specific to the May 2026 Core Update window. After ~August 2026 it is stale: re-check the Google Search Status Dashboard for the current/most-recent core update and its dates before applying any of the timing advice below.
Google rolled out a broad core algorithm update starting 21 May 2026 with the usual ~2-week deployment window. If the audit is being run inside that window (or in the 4 weeks after) and the brand is showing ranking volatility:
- Do not make reactive changes during the rollout. Wait for the update to fully deploy (Google announces completion in the Search Status Dashboard) plus 7–14 days of post-deploy settling before drawing conclusions.
- Diagnose direction before scope. A site-wide drop vs a single-section drop vs a single-template drop have very different root causes. Use Search Console to compare pre-rollout (21 days before May 21) vs in-rollout vs post-rollout impressions and clicks segmented by page-group.
- Core updates re-weight existing signals, they don't introduce new ones. The audit dimensions below remain authoritative; the right response to a Core Update hit is usually to deepen E-E-A-T, improve unique value, fix thin/duplicated content, and reduce low-quality affiliate or AI-spam pages — not to chase rumoured signals.
- Flag in the executive summary whether ranking deltas pre-date the rollout (likely site-specific issues) or coincide with it (likely Core Update reweighting). This determines whether quick wins are appropriate or whether the brand needs a multi-quarter quality program.
Input Required
The user must provide (or will be prompted for):
- Website URL: The domain or specific pages to audit
- Target keywords: Primary keywords the site should rank for (optional — can be researched)
- Competitors: 2-3 competitor URLs for benchmarking (optional)
- Audit scope: Full site or specific area (technical, content, local, links)
- Known issues: Any existing problems the user is aware of
Process
- Load brand context: Read
~/.claude-marketing/brands/_active-brand.json for the active slug, then load ~/.claude-marketing/brands/{slug}/profile.json. Apply brand voice, compliance rules for target markets (skills/context-engine/compliance-rules.md), and industry context. Also check for guidelines at ~/.claude-marketing/brands/{slug}/guidelines/_manifest.json — if present, load restrictions and relevant category files. Check for custom templates at ~/.claude-marketing/brands/{slug}/templates/. Check for agency SOPs at ~/.claude-marketing/sops/. If no brand exists, ask: "Set up a brand first (/digital-marketing-pro:brand-setup)?" — or proceed with defaults.
- Technical audit: Crawlability, indexation, Core Web Vitals, mobile usability, structured data, HTTPS, XML sitemap, robots.txt, canonical tags, redirect chains
- On-page audit: Title tags, meta descriptions, heading hierarchy, keyword usage, image alt text, internal linking structure, URL structure
- Content audit: Thin content, duplicate content, content gaps, freshness, E-E-A-T signals (author pages, citations, credentials, first-hand experience)
- Local SEO (if applicable): Google Business Profile, NAP consistency, local schema, reviews, local link profile
- Link profile: Domain authority, backlink quality, toxic links, anchor text distribution, link velocity, competitor link gap. Score the own-domain profile with the analyzer (feeds
05-link-profile.md):python "${CLAUDE_PLUGIN_ROOT}/scripts/link-profile-analyzer.py" \
--file "${CLAUDE_PLUGIN_DATA}/{brand}/seo/seo-audit/{date}/links-export.json" \
--brand-domain {brand-domain}
(--file is a JSON array of link objects [{"url","anchor_text","domain","da","follow"}], or pass --links '<json>' inline; --brand-domain excludes internal links.) For competitor link-gap prospecting, hand off to /digital-marketing-pro:backlink-gap.
- Score each dimension on a 1-10 scale
- Prioritize findings by impact (high/medium/low) and effort (quick win/medium/major project)
- Generate the audit report with actionable recommendations
Output
A structured SEO audit report containing:
- Executive summary with overall health score
- Technical SEO scorecard with specific issues and fixes
- On-page optimization findings per page/template
- Content quality assessment with gap analysis
- E-E-A-T evaluation and improvement recommendations
- Local SEO assessment (if applicable)
- Link profile analysis with opportunities
- Prioritized action plan sorted by impact-to-effort ratio
Numbered output convention
All audit outputs go to ${CLAUDE_PLUGIN_DATA}/{brand}/seo/seo-audit/{YYYY-MM-DD}/:
00-input.md target URL, audit scope, brand context, Core Update window flag
01-crawl-inventory.md discovered URLs, status codes, redirect chains
02-technical-scorecard.md Core Web Vitals, crawlability, schema validity (1-10 per dimension)
03-onpage-findings.md per-template issues with affected URL list
04-content-quality.md E-E-A-T, thin/duplicate, topical coverage
05-link-profile.md own backlink health (hand off to backlink-gap for prospect work)
06-eeat-evaluation.md author signals, expertise indicators, trust elements
07-local-seo.md only if business profile.target_markets has local intent
08-quality-scorecard.md the gates below — must pass for status: ready
09-prioritised-actions.md impact × effort matrix, top 20 actions
PLAN.md single-page deliverable
Downstream skills (seo-implement, seo-plan, content-engine) consume PLAN.md and the relevant numbered file rather than re-querying.
Quality scorecard
| Gate |
What it checks |
| crawl_coverage |
≥ 90% of sitemap URLs successfully crawled (else input data is incomplete) |
| dimension_completeness |
Scores filled for all 6 mandatory dimensions (technical, on-page, content, E-E-A-T, link, local-if-applicable) |
| finding_actionability |
Every "high impact" finding has a named owner + effort estimate (else it's not actionable) |
| core_update_flag_set |
If running inside a Core Update window, 00-input.md flags it AND PLAN.md carries the "wait 7-14 days before reactive changes" callout |
status: ready requires all four gates pass.
Chain handoffs
- Upstream: brand profile + (optional) prior
tech-seo-audit, aeo-audit outputs
- Downstream:
/digital-marketing-pro:seo-implement — applies the top-N findings to CMS / dev backlog
/digital-marketing-pro:seo-plan — consumes via dispatcher pillar scoring
/digital-marketing-pro:backlink-gap — for the link-prospect side that 05-link-profile.md only covers from the own-domain angle
/digital-marketing-pro:seo-drift — next quarter, compare two audit snapshots
Tips & caveats
- Run during a Core Update? Mark it loudly in
00-input.md and don't recommend reactive changes. The audit findings stay valid; the timing of action does not.
- Don't audit at the URL level for sites > 10k pages. Sample template-typically (cluster by template, audit one representative URL per template, generalise).
- E-E-A-T scoring is judgement, not measurement. Two senior SEOs will disagree by ~1 point per dimension on the same site. Calibrate against the brand's industry: a 7/10 author signal is excellent for SaaS but minimum-viable for a YMYL health publisher.
- Local SEO dimension only applies if the brand profile has
business_model: local or target_markets includes specific geographies with physical service. Otherwise skip.
- The link-profile dimension here is own-domain health (broken links, redirect chains, anchor-text distribution on inbound links). For competitor link-gap analysis, hand off to
/digital-marketing-pro:backlink-gap — don't try to do both in this audit.
Agents Used
- seo-specialist — All audit dimensions, scoring, prioritization, and recommendations
1---2name: seo-audit3description: Run a comprehensive SEO audit across technical health, on-page, content quality, E-E-A-T, link profile, and local SEO — producing dated numbered outputs (crawl inventory through prioritised actions) plus a single-page PLAN.md with an impact-by-effort action plan and a four-gate quality scorecard. Triggers on "/digital-marketing-pro:seo-audit", "audit my site's SEO", "why did our rankings drop", "check our technical SEO health", "how strong is our E-E-A-T". Reads the brand profile; PLAN.md feeds /digital-marketing-pro:seo-implement, /digital-marketing-pro:seo-plan, and /digital-marketing-pro:seo-drift, with link prospecting handed to /digital-marketing-pro:backlink-gap.4---56# /digital-marketing-pro:seo-audit78## Purpose910Perform a comprehensive SEO audit that evaluates a website across all major ranking dimensions. Produces a prioritized action plan with estimated impact and effort for each recommendation.1112### May 2026 Core Update context (read before triaging volatility)1314> **Time-boxed guidance — valid until ~2026-08.** This block is specific to the May 2026 Core Update window. After ~August 2026 it is stale: re-check the [Google Search Status Dashboard](https://status.search.google.com/) for the current/most-recent core update and its dates before applying any of the timing advice below.1516Google rolled out a **broad core algorithm update starting 21 May 2026** with the usual ~2-week deployment window. If the audit is being run inside that window (or in the 4 weeks after) and the brand is showing ranking volatility:1718- **Do not make reactive changes during the rollout.** Wait for the update to fully deploy (Google announces completion in the Search Status Dashboard) plus 7–14 days of post-deploy settling before drawing conclusions.19- **Diagnose direction before scope.** A site-wide drop vs a single-section drop vs a single-template drop have very different root causes. Use Search Console to compare pre-rollout (21 days before May 21) vs in-rollout vs post-rollout impressions and clicks segmented by page-group.20- **Core updates re-weight existing signals, they don't introduce new ones.** The audit dimensions below remain authoritative; the right response to a Core Update hit is usually to deepen E-E-A-T, improve unique value, fix thin/duplicated content, and reduce low-quality affiliate or AI-spam pages — not to chase rumoured signals.21- **Flag in the executive summary** whether ranking deltas pre-date the rollout (likely site-specific issues) or coincide with it (likely Core Update reweighting). This determines whether quick wins are appropriate or whether the brand needs a multi-quarter quality program.2223## Input Required2425The user must provide (or will be prompted for):2627- **Website URL**: The domain or specific pages to audit28- **Target keywords**: Primary keywords the site should rank for (optional — can be researched)29- **Competitors**: 2-3 competitor URLs for benchmarking (optional)30- **Audit scope**: Full site or specific area (technical, content, local, links)31- **Known issues**: Any existing problems the user is aware of3233## Process34351. **Load brand context**: Read `~/.claude-marketing/brands/_active-brand.json` for the active slug, then load `~/.claude-marketing/brands/{slug}/profile.json`. Apply brand voice, compliance rules for target markets (`skills/context-engine/compliance-rules.md`), and industry context. **Also check for guidelines** at `~/.claude-marketing/brands/{slug}/guidelines/_manifest.json` — if present, load restrictions and relevant category files. Check for custom templates at `~/.claude-marketing/brands/{slug}/templates/`. Check for agency SOPs at `~/.claude-marketing/sops/`. If no brand exists, ask: "Set up a brand first (/digital-marketing-pro:brand-setup)?" — or proceed with defaults.362. **Technical audit**: Crawlability, indexation, Core Web Vitals, mobile usability, structured data, HTTPS, XML sitemap, robots.txt, canonical tags, redirect chains373. **On-page audit**: Title tags, meta descriptions, heading hierarchy, keyword usage, image alt text, internal linking structure, URL structure384. **Content audit**: Thin content, duplicate content, content gaps, freshness, E-E-A-T signals (author pages, citations, credentials, first-hand experience)395. **Local SEO** (if applicable): Google Business Profile, NAP consistency, local schema, reviews, local link profile406. **Link profile**: Domain authority, backlink quality, toxic links, anchor text distribution, link velocity, competitor link gap. Score the own-domain profile with the analyzer (feeds `05-link-profile.md`):41 ```bash42 python "${CLAUDE_PLUGIN_ROOT}/scripts/link-profile-analyzer.py" \43 --file "${CLAUDE_PLUGIN_DATA}/{brand}/seo/seo-audit/{date}/links-export.json" \44 --brand-domain {brand-domain}45 ```46 (`--file` is a JSON array of link objects `[{"url","anchor_text","domain","da","follow"}]`, or pass `--links '<json>'` inline; `--brand-domain` excludes internal links.) For competitor link-gap prospecting, hand off to `/digital-marketing-pro:backlink-gap`.477. Score each dimension on a 1-10 scale488. Prioritize findings by impact (high/medium/low) and effort (quick win/medium/major project)499. Generate the audit report with actionable recommendations5051## Output5253A structured SEO audit report containing:5455- Executive summary with overall health score56- Technical SEO scorecard with specific issues and fixes57- On-page optimization findings per page/template58- Content quality assessment with gap analysis59- E-E-A-T evaluation and improvement recommendations60- Local SEO assessment (if applicable)61- Link profile analysis with opportunities62- Prioritized action plan sorted by impact-to-effort ratio6364## Numbered output convention6566All audit outputs go to `${CLAUDE_PLUGIN_DATA}/{brand}/seo/seo-audit/{YYYY-MM-DD}/`:6768```6900-input.md target URL, audit scope, brand context, Core Update window flag7001-crawl-inventory.md discovered URLs, status codes, redirect chains7102-technical-scorecard.md Core Web Vitals, crawlability, schema validity (1-10 per dimension)7203-onpage-findings.md per-template issues with affected URL list7304-content-quality.md E-E-A-T, thin/duplicate, topical coverage7405-link-profile.md own backlink health (hand off to backlink-gap for prospect work)7506-eeat-evaluation.md author signals, expertise indicators, trust elements7607-local-seo.md only if business profile.target_markets has local intent7708-quality-scorecard.md the gates below — must pass for status: ready7809-prioritised-actions.md impact × effort matrix, top 20 actions79PLAN.md single-page deliverable80```8182Downstream skills (`seo-implement`, `seo-plan`, `content-engine`) consume `PLAN.md` and the relevant numbered file rather than re-querying.8384## Quality scorecard8586| Gate | What it checks |87|---|---|88| **crawl_coverage** | ≥ 90% of sitemap URLs successfully crawled (else input data is incomplete) |89| **dimension_completeness** | Scores filled for all 6 mandatory dimensions (technical, on-page, content, E-E-A-T, link, local-if-applicable) |90| **finding_actionability** | Every "high impact" finding has a named owner + effort estimate (else it's not actionable) |91| **core_update_flag_set** | If running inside a Core Update window, `00-input.md` flags it AND `PLAN.md` carries the "wait 7-14 days before reactive changes" callout |9293`status: ready` requires all four gates pass.9495## Chain handoffs9697- **Upstream:** brand profile + (optional) prior `tech-seo-audit`, `aeo-audit` outputs98- **Downstream:**99 - `/digital-marketing-pro:seo-implement` — applies the top-N findings to CMS / dev backlog100 - `/digital-marketing-pro:seo-plan` — consumes via dispatcher pillar scoring101 - `/digital-marketing-pro:backlink-gap` — for the link-prospect side that `05-link-profile.md` only covers from the own-domain angle102 - `/digital-marketing-pro:seo-drift` — next quarter, compare two audit snapshots103104## Tips & caveats105106- **Run during a Core Update?** Mark it loudly in `00-input.md` and don't recommend reactive changes. The audit findings stay valid; the timing of action does not.107- **Don't audit at the URL level for sites > 10k pages.** Sample template-typically (cluster by template, audit one representative URL per template, generalise).108- **E-E-A-T scoring is judgement, not measurement.** Two senior SEOs will disagree by ~1 point per dimension on the same site. Calibrate against the brand's industry: a 7/10 author signal is excellent for SaaS but minimum-viable for a YMYL health publisher.109- **Local SEO dimension** only applies if the brand profile has `business_model: local` or `target_markets` includes specific geographies with physical service. Otherwise skip.110- **The link-profile dimension here is own-domain health** (broken links, redirect chains, anchor-text distribution on inbound links). For competitor link-gap analysis, hand off to `/digital-marketing-pro:backlink-gap` — don't try to do both in this audit.111112## Agents Used113114- **seo-specialist** — All audit dimensions, scoring, prioritization, and recommendations