Google Search Console Browsing Skill
Coordinates indexing and site discovery management on Google Search Console using the visible browser or Edge DOM bridge.
Google Search Console Browsing Skill
I. Overview
Google Search Console (https://search.google.com/search-console/) is the tool for managing how Google indexes and discovers a website. It requires a logged-in Google account with verified ownership of the property.
II. Access Method
- Preferred method: Visible Browser. Search Console uses Web Components with shadow DOM. The Edge DOM Bridge will connect but fail to interact with elements (documented in web browsing policy skill Section II.3c). The visible browser's physical clicks bypass shadow DOM completely.
- Fallback: Point and Click on the user's Edge browser if the visible browser hits a login wall, since Edge already has the authenticated Google session.
- Authentication: The user MUST be logged in before you start. Do NOT attempt to handle Google logins. If you see a login page, stop and ask the user to log in.
III. URL Patterns
- Base URL:
https://search.google.com/search-console/ - Property-scoped URLs use the
resource_idquery parameter (URL-encoded):- Sitemaps:
https://search.google.com/search-console/sitemaps?resource_id=https%3A%2F%2Fwww.aiagentsforeveryone.org%2F - Pages:
https://search.google.com/search-console/index?resource_id=https%3A%2F%2Fwww.aiagentsforeveryone.org%2F - URL Inspection:
https://search.google.com/search-console/inspect?resource_id=https%3A%2F%2Fwww.aiagentsforeveryone.org%2F - Performance:
https://search.google.com/search-console/performance/search-analytics?resource_id=https%3A%2F%2Fwww.aiagentsforeveryone.org%2F
- Sitemaps:
IV. Common Tasks
1. Submitting / Resubmitting a Sitemap
- Navigate to the Sitemaps page (URL above).
- In the "Add a new sitemap" section, there's a text input next to the base URL.
- Click the input field and type
sitemap.xml. - Click the blue SUBMIT button.
- A green confirmation banner will appear: "Sitemap submitted successfully."
- Click Dismiss to close the banner.
2. Checking Sitemap Status
- Navigate to the Sitemaps page.
- The "Submitted sitemaps" table shows:
- Sitemap (path), Type, Submitted date, Last read date, Status, Discovered pages, Discovered videos.
- If Status shows errors (e.g., "29 errors" in red), click the sitemap row to drill into the error details.
- Common error: "URL not allowed" — means the URLs in the sitemap don't match the property's registered domain. Fix the sitemap source code and resubmit.
3. URL Inspection
- Use the search bar at the top: "Inspect any URL in [domain]".
- Paste a full URL and press Enter.
- The result shows whether the URL is indexed, has coverage issues, or needs re-indexing.
- Click REQUEST INDEXING to ask Google to recrawl a specific page.
V. Lessons Learned
- Shadow DOM is real. The Edge DOM Bridge connects fine to Search Console but silently fails to click anything. Always use the visible browser for this site.
- Sitemap domain mismatch. If the Search Console property is
https://www.aiagentsforeveryone.orgbut the sitemap generates URLs with a different domain (e.g.,aiagentsforeveryone.comwithoutwww.or with.cominstead of.org), Google reports all URLs as "URL not allowed." Fix the sitemap's base URL in the source code, redeploy, and resubmit. - Errors persist until re-read. After fixing the sitemap, Google won't clear the old errors until it re-reads the sitemap. Resubmit to trigger a new read. The "Last read" date in the table confirms when Google actually processed it.
- Property must match exactly.
www.aiagentsforeveryone.organdaiagentsforeveryone.org(withoutwww) are treated as separate properties. Make sure the sitemap URLs match the registered property exactly.