# Send Google Search Console to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gsc",
    "name": "Google Search Console",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jdrhyne/gsc",
    "canonicalUrl": "https://clawhub.ai/jdrhyne/gsc",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gsc",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gsc",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/gsc_auth.py",
      "scripts/gsc_query.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gsc",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T23:06:56.899Z",
      "expiresAt": "2026-05-10T23:06:56.899Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gsc",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gsc",
        "contentDisposition": "attachment; filename=\"gsc-1.2.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gsc"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gsc"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gsc",
    "downloadUrl": "https://openagent3.xyz/downloads/gsc",
    "agentUrl": "https://openagent3.xyz/skills/gsc/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gsc/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gsc/agent.md"
  }
}
```
## Documentation

### Google Search Console Skill

Query GSC for search analytics, indexing status, and SEO insights.

### Safety Boundaries

This skill only connects to Google Search Console API endpoints.
It does NOT modify your Search Console property — read-only queries only.
It does NOT store or transmit credentials beyond the current session.
It requires OAuth credentials set as environment variables.

### Setup

Credentials: Set OAuth credentials in environment variables (or a local .env loaded by your shell)
Scopes: Requires webmasters.readonly scope on your Google Cloud OAuth consent screen
Access: Your Google account must have access to the Search Console properties

### List Available Sites

python scripts/gsc_query.py sites

### Top Search Queries

python scripts/gsc_query.py top-queries \\
  --site "https://www.nutrient.io" \\
  --days 28 \\
  --limit 20

### Top Pages by Traffic

python scripts/gsc_query.py top-pages \\
  --site "https://www.nutrient.io" \\
  --days 28 \\
  --limit 20

### Find Low-CTR Opportunities

High impressions but low click-through rate = optimization opportunities:

python scripts/gsc_query.py opportunities \\
  --site "https://www.nutrient.io" \\
  --days 28 \\
  --min-impressions 100

### Inspect URL Indexing Status

python scripts/gsc_query.py inspect-url \\
  --site "https://www.nutrient.io" \\
  --url "/sdk/web"

### List Sitemaps

python scripts/gsc_query.py sitemaps \\
  --site "https://www.nutrient.io"

### Raw Search Analytics (JSON)

python scripts/gsc_query.py search-analytics \\
  --site "https://www.nutrient.io" \\
  --days 28 \\
  --dimensions query page \\
  --limit 100

### Available Dimensions

query - Search query
page - Landing page URL
country - Country code
device - DESKTOP, MOBILE, TABLET
date - Date

### Metrics Returned

clicks - Number of clicks from search
impressions - Number of times shown in search
ctr - Click-through rate (clicks/impressions)
position - Average ranking position

### SEO Use Cases

Content Optimization: Find high-impression/low-CTR pages → improve titles & descriptions
Keyword Research: See what queries bring traffic → create more content around them
Technical SEO: Check indexing status, find crawl issues
Ranking Tracking: Monitor position changes over time
Sitemap Health: Verify sitemaps are submitted and error-free

### Notes

Data has ~3 day delay (GSC limitation)
Credentials shared with GA4 skill
URL inspection requires the page to be in the property
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jdrhyne
- Version: 1.2.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T23:06:56.899Z
- Expires at: 2026-05-10T23:06:56.899Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gsc)
- [Send to Agent page](https://openagent3.xyz/skills/gsc/agent)
- [JSON manifest](https://openagent3.xyz/skills/gsc/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gsc/agent.md)
- [Download page](https://openagent3.xyz/downloads/gsc)