creo-seo-contentlisted
Install: claude install-skill oyusypenko/creo
# creo-seo-content — Next.js content quality specialist
Content-specific SEO auditor. Runs as standalone or as the Phase 2 delegate of `creo-seo`. Scores each page on 5 content dimensions, detects AI-generated patterns, maps search intent, scores opportunity, and produces rewrite priorities with before/after examples.
## Commands
| Command | Purpose |
|---------|---------|
| `/creo seo-content audit <url>` | Full content audit on a single URL or a list |
| `/creo seo-content humanity <url>` | Humanity score only (AI-pattern detection) |
| `/creo seo-content intent <url or keyword>` | Search intent classification |
| `/creo seo-content linking <url>` | Internal linking audit |
| `/creo seo-content rewrite <url>` | Generate rewrite priorities with before/after |
| `/creo seo-content gate <mdx-path>` | Publish gate — pass/fail score + reasons |
## Scoring
Composite 0–100 per page:
```
Content_Quality =
(Humanity × 0.30) +
(Specificity × 0.25) +
(Structure × 0.20) +
(SEO_Compliance × 0.15) +
(Readability × 0.10)
```
Publish threshold: ≥ 80 with zero Critical issues.
## Audit flow
1. **Load project profile** from `.claude/skills/creo-seo/creo-seo-{project_id}.md` (shared with creo-seo skill). Fall back to fresh scan if missing.
2. **Fetch page content** — WebFetch for live URLs, Read for local MDX/TSX files.
3. **Normalize text** — strip HTML, extract main content, skip nav/footer.
4. **Score 5 dimensions** per `references/content-quality-r