1---2name: seo-audit3description: Use when running a full-site SEO audit via /seo audit — orchestrates all SEO sub-agents in parallel for one unified Health Score.4---56<objective>7Orchestrates a full-site SEO audit: detects business type from homepage signals (SaaS/local/ecommerce/publisher/agency), spawns SEO sub-agents in parallel (seo-technical, seo-schema, seo-content, seo-geo, seo-entity, seo-images, seo-sitemap, plus seo-local and/or seo-cluster conditionally), aggregates results into a weighted SEO Health Score (0-100: technical 25, schema 15, content 20, GEO 20, images 10, local 10), and generates a prioritized action plan (Critical → High → Medium → Low) at `.fuse-seo/reports/<date>-audit.md`. This is the entry point for "audit the whole site" requests — for a single URL only, use seo-page instead.8</objective>910# SEO Audit Orchestrator1112## Workflow13141. **Detect business type** from homepage signals (SaaS, local, ecommerce, publisher, agency)152. **Spawn sub-agents in parallel** (single message, multiple Agent calls):16 - `seo-technical`, `seo-schema`, `seo-content`, `seo-geo`, `seo-images`, `seo-sitemap`173. **Conditional spawns**:18 - Local business → `seo-local`19 - Blog/pillar pages detected → `seo-cluster`204. **Aggregate results** → SEO Health Score 0-100215. **Generate report** in `.fuse-seo/reports/<date>-audit.md`226. **Prioritize actions**: Critical → High → Medium → Low2324## Health Score Formula2526```27Technical (25 pts): robots OK + sitemap valid + CWV green + crawlable28Schema (15 pts): JSON-LD present + validated against schema.org29Content (20 pts): E-E-A-T signals + no cannibalization + meta complete30GEO (20 pts): quick answer first 100 words + citations + structure31Images (10 pts): alt text 100% + formats (WebP/AVIF) + lazy loading32Local (10 pts): NAP consistent + GBP linked (if applicable)33```3435## Report Template3637```markdown38# SEO Audit Report — <url> — <date>3940## Health Score: <score>/1004142### Critical Issues43- ...4445### High Priority46- ...4748### Medium / Low49- ...5051## Sub-Agent Results52- Technical: <summary>53- Schema: <summary>54- Content: <summary>55- GEO: <summary>56- Images: <summary>57- Sitemap: <summary>58```5960## Related6162- Scripts: `parse-meta.ts`, `check-cwv.ts`, `validate-schema.ts`63- References: `skills/seo/09-checklists/` (pre-publication, technical audit)