Google Search Console indexing assistant...
This skill helps manage Google Search Console indexing status by maintaining two markdown tracking files:
indexed.md - All indexed pages in two tables:
to-index.md - Pages awaiting indexing:
Google Search Console export data has approximately 2 weeks lag. Pages that show as indexed in URL Inspection may not appear in the export yet. These are tracked separately as "Indexed With Lag".
When checking to-index pages via URL Inspection:
to-index.md organizes pages by priority:
# Indexed Pages
## Indexed Public (GSC Export)
*Last updated: YYYY-MM-DD*
*Source: gsc-export.csv*
| # | URL | Last Crawled |
|---|-----|--------------|
| 1 | https://example.com/page-1/ | 2025-12-01 |
| 2 | https://example.com/page-2/ | 2025-12-02 |
## Indexed With Lag (URL Inspection Confirmed)
*Pages confirmed indexed via URL Inspection but not yet in GSC export*
| # | URL | Detected | Confirmed |
|---|-----|----------|-----------|
| 1 | https://example.com/new-page/ | 12 Dec 2025 | 12 Dec 2025 |
# Pages To Index
*Generated: YYYY-MM-DD*
*Total: X pages*
## Priority 1: [Category Name]
| # | URL | Submitted |
|---|-----|-----------|
| 1 | https://example.com/important-page/ | 12 Dec |
| 2 | https://example.com/another-page/ | - |
## Priority 2: [Category Name]
| # | URL | Submitted |
|---|-----|-----------|
| 1 | https://example.com/recent-post/ | - |
Create working files in project directory:
project/
โโโ gsc-export.csv # GSC indexed pages export
โโโ sitemap.xml # Site sitemap (or use dist/sitemap.xml)
โโโ indexed.md # Tracking file (generated)
โโโ to-index.md # Tracking file (generated)
"Generate indexing tracking files from GSC export and sitemap"
"Process false positives and update indexed list"
"Mark [URL] as submitted on [date]"
"Update indexed list from new GSC export"
"Show indexing progress statistics"
INDEXING STATUS SUMMARY
=======================
Indexed Public (GSC): 789 pages
Indexed With Lag: 12 pages
Total Indexed: 801 pages
Sitemap Total: 2,054 pages
To Index: 1,253 pages
Progress: 39.0%
By Priority:
- Priority 1: 55 remaining (4 false positives moved)
- Priority 2: 7 remaining
- Priority 3: 290 remaining
User: "I just checked some URLs in GSC URL Inspection and marked them as false positive - indexed. Process those and update the tracking files."
Claude will: