Date: 2026-04-28
Goal: Bridge Cinder → Costa's logged-in Chrome → GSC URL Inspection ("Request Indexing") without violating the hard rule against mass sitemap operations.
Google's official Indexing API supports ONLY JobPosting + BroadcastEvent schemas. Generic page-indexing requests are NOT supported. The only reliable programmatic path is browser automation with a real authenticated session.
Costa hard rule: never mass-resubmit sitemaps (erases crawl history). Individual URL inspection ("Request Indexing") is the only allowed mechanism.
Approach: Daemon on Mac mini runs Playwright pointed at Costa's actual Chrome profile (~/Library/Application Support/Google/Chrome/). Cookies, GSC auth, 2FA all carry over. Cinder posts URL via webhook → daemon opens GSC → inspects URL → clicks "Request Indexing" → screenshots verification.
Pros:
.venv from Mangools work.Cons:
Effort: ~3 hr build, ~30 min for first 5 URL test.
Approach: ClaudeClaw plugin dev-browser:dev-browser already supports Chrome automation. Wire a slash command /gsc-submit <urls> that loads URL Inspection, clicks the button, captures success.
Pros:
Cons:
Effort: ~1 hr to write the slash-command wrapper.
When this fits: Daytime ad-hoc submits (1-5 URLs after a fix). Not the right tool for nightly batches.
Approach: Costa installs a private extension that exposes a local HTTP endpoint. Cinder POSTs URLs → extension navigates GSC → submits. Like a homegrown Zapier.
Pros:
Cons:
Effort: 8-12 hr build.
When this fits: Long-term, if Option 1 hits friction. Skip for now.
Approach: Mac-native AppleScript drives Chrome via System Events ("click button containing 'Request Indexing'"). Hooked to a launchd cron that polls a queue file Cinder writes.
Pros:
Cons:
Effort: 4-6 hr build + ongoing maintenance.
When this fits: Skip. Option 1 is strictly better.
Approach: Cloud browser-as-a-service (Browserbase, Anchor, or Hyperbrowser) hosts a persistent Chrome session with Costa's GSC auth. Cinder calls their API.
Pros:
Cons:
Effort: 2-3 hr integration.
When this fits: If/when ITD scales to 500+ submissions/week and Mac mini availability becomes the bottleneck. Not now.
Build Option 1 (Playwright + Chrome user-data-dir) tonight. Plus Option 2 (dev-browser slash command) as a same-week add for ad-hoc daytime submits.
Rollout:
data/gsc-submit-queue.jsonl. Cinder writes URLs to the queue; cron at 03:00 CT processes the queue (~5-10 sec/URL, 100/night cap to avoid Google rate limit).data/gsc/submissions/<date>/<slug>.{png,html}.Mac mini Chrome session — is the GSC login on your daily-driver Chrome profile (default profile) or a dedicated profile (e.g., "ITD")? Default-profile risks profile-lock contention if you happen to be using Chrome during a 03:00 batch (rare, but flag). If you have / can create a dedicated ITD profile signed into GSC only, Option 1 becomes friction-free.