{
  "schemaVersion": "1.0",
  "item": {
    "slug": "google-maps-leadgen-skill",
    "name": "Google Maps Leadgen",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Realowg/google-maps-leadgen-skill",
    "canonicalUrl": "https://clawhub.ai/Realowg/google-maps-leadgen-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/google-maps-leadgen-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-maps-leadgen-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/gmaps_leads_export.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/google-maps-leadgen-skill"
    },
    "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/google-maps-leadgen-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/google-maps-leadgen-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-maps-leadgen-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-maps-leadgen-skill/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 Maps Lead Generation (MCP)",
        "body": "Use this skill to run repeatable lead-gen batches from Google Maps via MCP."
      },
      {
        "title": "Preconditions",
        "body": "mcporter configured with server google-maps.\nServer key in env (GOOGLE_MAPS_API_KEY) must be server-compatible (no browser referrer restriction).\nFor XLSX output, openpyxl available in venv."
      },
      {
        "title": "Fast workflow",
        "body": "Build query set from geography + target verticals.\nRun maps_search_places for each query.\nKeep only in-target geography, dedupe by place_id.\nEnrich each place with maps_place_details.\nExport CSV or XLSX.\nIf user asks for file in Telegram, send with message tool action=send + media path."
      },
      {
        "title": "Query strategy",
        "body": "Use focused terms instead of broad generic terms.\n\nGood: \"odoo partner <city> <country>\", \"erp integrator <city> <country>\", \"logistics company <city> <country>\"\nAvoid huge overlapping lists in one run; do batches."
      },
      {
        "title": "Required output columns (V2)",
        "body": "name\naddress\nphone\nwebsite\nemail (empty if not discoverable)\nrating\nplace_id\ngoogle_maps_url (mobile-safe):\n\nhttps://www.google.com/maps/search/?api=1&query=<NAME>&query_place_id=<PLACE_ID>"
      },
      {
        "title": "Cost notes",
        "body": "Search calls are usually main paid SKU driver.\nPlace details add enrichment cost.\nReport rough run cost estimate and mention free-tier caveat."
      },
      {
        "title": "Reliability guardrails",
        "body": "Batch enrich in small chunks (10–50) to avoid long-running timeouts.\nAdd retries for transient failures.\nNever commit API keys or sensitive exports."
      },
      {
        "title": "Delivery rules",
        "body": "If user asks for CSV/XLSX file in chat: send via message tool (media path).\nIf user asks specifically for XLSX formatting/edits, use xlsx workflow standards.\nKeep summary concise: count, coverage (with_phone, with_website, with_email), file path/name."
      }
    ],
    "body": "Google Maps Lead Generation (MCP)\n\nUse this skill to run repeatable lead-gen batches from Google Maps via MCP.\n\nPreconditions\nmcporter configured with server google-maps.\nServer key in env (GOOGLE_MAPS_API_KEY) must be server-compatible (no browser referrer restriction).\nFor XLSX output, openpyxl available in venv.\nFast workflow\nBuild query set from geography + target verticals.\nRun maps_search_places for each query.\nKeep only in-target geography, dedupe by place_id.\nEnrich each place with maps_place_details.\nExport CSV or XLSX.\nIf user asks for file in Telegram, send with message tool action=send + media path.\nQuery strategy\n\nUse focused terms instead of broad generic terms.\n\nGood: \"odoo partner <city> <country>\", \"erp integrator <city> <country>\", \"logistics company <city> <country>\"\nAvoid huge overlapping lists in one run; do batches.\nRequired output columns (V2)\nname\naddress\nphone\nwebsite\nemail (empty if not discoverable)\nrating\nplace_id\ngoogle_maps_url (mobile-safe):\nhttps://www.google.com/maps/search/?api=1&query=<NAME>&query_place_id=<PLACE_ID>\nCost notes\nSearch calls are usually main paid SKU driver.\nPlace details add enrichment cost.\nReport rough run cost estimate and mention free-tier caveat.\nReliability guardrails\nBatch enrich in small chunks (10–50) to avoid long-running timeouts.\nAdd retries for transient failures.\nNever commit API keys or sensitive exports.\nDelivery rules\nIf user asks for CSV/XLSX file in chat: send via message tool (media path).\nIf user asks specifically for XLSX formatting/edits, use xlsx workflow standards.\nKeep summary concise: count, coverage (with_phone, with_website, with_email), file path/name."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Realowg/google-maps-leadgen-skill",
    "publisherUrl": "https://clawhub.ai/Realowg/google-maps-leadgen-skill",
    "owner": "Realowg",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/google-maps-leadgen-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/google-maps-leadgen-skill",
    "agentUrl": "https://openagent3.xyz/skills/google-maps-leadgen-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-maps-leadgen-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-maps-leadgen-skill/agent.md"
  }
}