Attribution: Original skill by AgriciDaniel, MIT licensed. Cendis hosts this entry as a discovery and install convenience; for the canonical version, updates, and supporting scripts, see the upstream skill repo.
What it does
Performs an end-to-end SEO audit on a website. Crawls up to 500 pages, detects business type from homepage signals, then dispatches 7 core specialists (and up to 3 conditional ones) in parallel to analyze every dimension of SEO health. Outputs a comprehensive report, a prioritized action plan, and a single 0-100 health score.
When to use it
- Onboarding a new client or website
- Quarterly SEO health checks
- Before a major content or technical migration
- When you ask “is my SEO actually any good?” and want a structured answer instead of vibes
Specialists it dispatches
| Specialist | Focus |
|---|---|
seo-technical | robots.txt, sitemaps, canonicals, Core Web Vitals, security headers |
seo-content | E-E-A-T, readability, thin content, AI citation readiness |
seo-schema | Structured data detection, validation, generation |
seo-sitemap | Sitemap structure, quality gates, missing pages |
seo-performance | LCP, INP, CLS measurements |
seo-visual | Screenshots, mobile rendering, above-fold analysis |
seo-geo | AI crawler access, llms.txt, citability, brand mention signals |
seo-local * | GBP signals, NAP consistency, reviews, local schema |
seo-maps * | Geo-grid rank tracking, GBP audit, review intel |
seo-google * | CrUX field data, GSC indexation, GA4 organic traffic |
* Conditional — only dispatched when business type or available credentials warrant.
Output
FULL-AUDIT-REPORT.md— comprehensive findingsACTION-PLAN.md— prioritized recommendations (Critical / High / Medium / Low)screenshots/— desktop and mobile captures (if Playwright available)- Optional PDF report for client deliverables
Crawl configuration
Max pages: 500
Respect robots.txt: Yes
Follow redirects: Yes (max 3 hops)
Timeout per page: 30 seconds
Concurrent requests: 5
Delay between requests: 1 second
Example invocation
“Audit example.com”
The skill fetches the homepage, classifies the business type, crawls the site, dispatches subagents in parallel, aggregates findings, computes the health score, and writes the report.
Why it matters
A real SEO audit touches a dozen unrelated systems — Lighthouse, robots.txt, canonical tags, Core Web Vitals field data, structured data, mobile rendering, AI citability. Doing all of that sequentially in one agent thread is slow and tends to drop balls. Parallel subagent dispatch finishes in a fraction of the wall time and produces a structured report you can hand to a client or paste into a sprint planning doc.
License
MIT — original work by AgriciDaniel. Attribution preserved in this listing.