← ClaudeAtlas

search-console-indexing-auditlisted

Analyze Google Search Console Coverage or indexing CSV exports and correlate them with repo and live-site SEO signals. Use for Chart.csv, Metadata.csv, Critical issues.csv, Non-critical issues.csv, sitemap/robots/canonical indexing problems, "Discovered - currently not indexed", redirect indexing buckets, or requests to fix Google indexing coverage.
oleg-koval/agent-skills · ★ 2 · AI & Automation · score 74
Install: claude install-skill oleg-koval/agent-skills
# search-console-indexing-audit Use this skill to turn Google Search Console Coverage exports into a concrete indexing fix plan. ## Workflow 1. Read the export directory first: - `Chart.csv` for indexed/not-indexed trend and impressions - `Metadata.csv` for property context such as sitemap scope - `Critical issues.csv` and `Non-critical issues.csv` for issue buckets 2. Run the summarizer when the standard CSV files are present: ```bash python3 <skill-dir>/scripts/summarize_gsc_coverage.py <export-dir> python3 <skill-dir>/scripts/summarize_gsc_coverage.py <export-dir> --json ``` 3. Inspect the target repo for SEO sources of truth: - sitemap generation and whether listed URLs are canonical, indexable HTML pages - robots rules, sitemap URL, and host hints - canonical metadata, `metadataBase`, Open Graph URL base, and per-route `noindex` - redirects across apex/www, http/https, trailing slash, moved routes, and legacy paths 4. Check live URLs when network access is available: ```bash curl -sS -I https://example.com/sitemap.xml curl -sS https://example.com/sitemap.xml curl -sS https://example.com/robots.txt curl -sS https://example.com/page | rg -o '<link rel="canonical"[^>]*>|<meta name="robots"[^>]*>' curl -sS -I -L --max-redirs 5 https://example.com/page ``` 5. Map GSC buckets to fixes: - `Page with redirect`: remove redirected URLs from sitemap and canonicals; submit only final 200 URLs. - `Redirect error`: inspect redirect chains, protocol/ho