---
name: seo-audit-meta
description: Machine-verified meta tag extraction. Extracts title, description, H1, H2, word count, canonical, OG tags from every page. Finds SEO issues automatically.
disable-model-invocation: true
allowed-tools: Bash
argument-hint: "[domain] [sitemap-url] [output-dir]"
---

# SEO Audit: Meta Tag & Content Extraction

Run the Python meta extractor on every page in the sitemap.

```bash
python3 ${CLAUDE_SKILL_DIR}/scripts/meta.py $ARGUMENTS
```

This produces:
- `{domain}_meta.csv` — Title, description, H1, H2s, word count, canonical, OG tags for every URL
- `{domain}_meta_issues.csv` — Automatically flagged issues (missing titles, descriptions too short/long, thin content, duplicate H1s, description repeating title)

After completion, analyze and report:
1. Pages with missing or duplicate titles
2. Meta descriptions that are too short (<70 chars), too long (>160 chars), or repeat the title
3. Pages with missing or multiple H1 tags
4. Thin content pages (word count < 300)
5. Canonical tag issues
6. OG tag issues
