{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gsc",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gsc",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/gsc_auth.py",
      "scripts/gsc_query.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/gsc",
    "agentPageUrl": "https://openagent3.xyz/skills/gsc/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gsc/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gsc/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Google Search Console Skill",
        "body": "Query GSC for search analytics, indexing status, and SEO insights."
      },
      {
        "title": "Safety Boundaries",
        "body": "This skill only connects to Google Search Console API endpoints.\nIt does NOT modify your Search Console property — read-only queries only.\nIt does NOT store or transmit credentials beyond the current session.\nIt requires OAuth credentials set as environment variables."
      },
      {
        "title": "Setup",
        "body": "Credentials: Set OAuth credentials in environment variables (or a local .env loaded by your shell)\nScopes: Requires webmasters.readonly scope on your Google Cloud OAuth consent screen\nAccess: Your Google account must have access to the Search Console properties"
      },
      {
        "title": "List Available Sites",
        "body": "python scripts/gsc_query.py sites"
      },
      {
        "title": "Top Search Queries",
        "body": "python scripts/gsc_query.py top-queries \\\n  --site \"https://www.nutrient.io\" \\\n  --days 28 \\\n  --limit 20"
      },
      {
        "title": "Top Pages by Traffic",
        "body": "python scripts/gsc_query.py top-pages \\\n  --site \"https://www.nutrient.io\" \\\n  --days 28 \\\n  --limit 20"
      },
      {
        "title": "Find Low-CTR Opportunities",
        "body": "High impressions but low click-through rate = optimization opportunities:\n\npython scripts/gsc_query.py opportunities \\\n  --site \"https://www.nutrient.io\" \\\n  --days 28 \\\n  --min-impressions 100"
      },
      {
        "title": "Inspect URL Indexing Status",
        "body": "python scripts/gsc_query.py inspect-url \\\n  --site \"https://www.nutrient.io\" \\\n  --url \"/sdk/web\""
      },
      {
        "title": "List Sitemaps",
        "body": "python scripts/gsc_query.py sitemaps \\\n  --site \"https://www.nutrient.io\""
      },
      {
        "title": "Raw Search Analytics (JSON)",
        "body": "python scripts/gsc_query.py search-analytics \\\n  --site \"https://www.nutrient.io\" \\\n  --days 28 \\\n  --dimensions query page \\\n  --limit 100"
      },
      {
        "title": "Available Dimensions",
        "body": "query - Search query\npage - Landing page URL\ncountry - Country code\ndevice - DESKTOP, MOBILE, TABLET\ndate - Date"
      },
      {
        "title": "Metrics Returned",
        "body": "clicks - Number of clicks from search\nimpressions - Number of times shown in search\nctr - Click-through rate (clicks/impressions)\nposition - Average ranking position"
      },
      {
        "title": "SEO Use Cases",
        "body": "Content Optimization: Find high-impression/low-CTR pages → improve titles & descriptions\nKeyword Research: See what queries bring traffic → create more content around them\nTechnical SEO: Check indexing status, find crawl issues\nRanking Tracking: Monitor position changes over time\nSitemap Health: Verify sitemaps are submitted and error-free"
      },
      {
        "title": "Notes",
        "body": "Data has ~3 day delay (GSC limitation)\nCredentials shared with GA4 skill\nURL inspection requires the page to be in the property"
      }
    ],
    "body": "Google Search Console Skill\n\nQuery GSC for search analytics, indexing status, and SEO insights.\n\nSafety Boundaries\nThis skill only connects to Google Search Console API endpoints.\nIt does NOT modify your Search Console property — read-only queries only.\nIt does NOT store or transmit credentials beyond the current session.\nIt requires OAuth credentials set as environment variables.\nSetup\nCredentials: Set OAuth credentials in environment variables (or a local .env loaded by your shell)\nScopes: Requires webmasters.readonly scope on your Google Cloud OAuth consent screen\nAccess: Your Google account must have access to the Search Console properties\nCommands\nList Available Sites\npython scripts/gsc_query.py sites\n\nTop Search Queries\npython scripts/gsc_query.py top-queries \\\n  --site \"https://www.nutrient.io\" \\\n  --days 28 \\\n  --limit 20\n\nTop Pages by Traffic\npython scripts/gsc_query.py top-pages \\\n  --site \"https://www.nutrient.io\" \\\n  --days 28 \\\n  --limit 20\n\nFind Low-CTR Opportunities\n\nHigh impressions but low click-through rate = optimization opportunities:\n\npython scripts/gsc_query.py opportunities \\\n  --site \"https://www.nutrient.io\" \\\n  --days 28 \\\n  --min-impressions 100\n\nInspect URL Indexing Status\npython scripts/gsc_query.py inspect-url \\\n  --site \"https://www.nutrient.io\" \\\n  --url \"/sdk/web\"\n\nList Sitemaps\npython scripts/gsc_query.py sitemaps \\\n  --site \"https://www.nutrient.io\"\n\nRaw Search Analytics (JSON)\npython scripts/gsc_query.py search-analytics \\\n  --site \"https://www.nutrient.io\" \\\n  --days 28 \\\n  --dimensions query page \\\n  --limit 100\n\nAvailable Dimensions\nquery - Search query\npage - Landing page URL\ncountry - Country code\ndevice - DESKTOP, MOBILE, TABLET\ndate - Date\nMetrics Returned\nclicks - Number of clicks from search\nimpressions - Number of times shown in search\nctr - Click-through rate (clicks/impressions)\nposition - Average ranking position\nSEO Use Cases\nContent Optimization: Find high-impression/low-CTR pages → improve titles & descriptions\nKeyword Research: See what queries bring traffic → create more content around them\nTechnical SEO: Check indexing status, find crawl issues\nRanking Tracking: Monitor position changes over time\nSitemap Health: Verify sitemaps are submitted and error-free\nNotes\nData has ~3 day delay (GSC limitation)\nCredentials shared with GA4 skill\nURL inspection requires the page to be in the property"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jdrhyne/gsc",
    "publisherUrl": "https://clawhub.ai/jdrhyne/gsc",
    "owner": "jdrhyne",
    "version": "1.2.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}