From olko-agent-skills
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/olko-agent-skills:search-console-indexing-auditThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to turn Google Search Console Coverage exports into a concrete indexing fix plan.
adapters/claude/plugin.jsonadapters/claude/skills/search-console-indexing-audit/scripts/summarize_gsc_coverage.pyadapters/codex/README.mdadapters/cursor/plugin.jsonadapters/cursor/skills/search-console-indexing-audit/scripts/summarize_gsc_coverage.pyadapters/hermes/README.mdadapters/kiro/steering/search-console-indexing-audit.mdadapters/pi/README.mdadapters/windsurf/rules/search-console-indexing-audit.mdscripts/summarize_gsc_coverage.pyUse this skill to turn Google Search Console Coverage exports into a concrete indexing fix plan.
Chart.csv for indexed/not-indexed trend and impressionsMetadata.csv for property context such as sitemap scopeCritical issues.csv and Non-critical issues.csv for issue bucketspython3 <skill-dir>/scripts/summarize_gsc_coverage.py <export-dir>
python3 <skill-dir>/scripts/summarize_gsc_coverage.py <export-dir> --json
metadataBase, Open Graph URL base, and per-route noindexcurl -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
Page with redirect: remove redirected URLs from sitemap and canonicals; submit only final 200 URLs.Redirect error: inspect redirect chains, protocol/host loops, blocked destinations, and non-200 final responses.Alternate page with proper canonical tag: usually acceptable; verify sitemap does not include alternates.Discovered - currently not indexed: improve crawl signals first: clean sitemap, canonical consistency, internal links, content quality, stable 200 responses, and lastmod accuracy.Excluded by noindex: verify it is intentional and keep those URLs out of sitemap.Report:
Call out when the export is aggregate-only and does not contain affected URL examples. Do not infer exact URLs unless the CSVs or live sitemap provide them.
npx claudepluginhub oleg-koval/agent-skills --plugin olko-agent-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.