{
  "schemaVersion": "1.0",
  "item": {
    "slug": "amap",
    "name": "amap",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Dboy233/amap",
    "canonicalUrl": "https://clawhub.ai/Dboy233/amap",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/amap",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=amap",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/amap"
    },
    "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/amap",
    "agentPageUrl": "https://openagent3.xyz/skills/amap/agent",
    "manifestUrl": "https://openagent3.xyz/skills/amap/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/amap/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": "高德地图 (Amap)",
        "body": "本技能使用高德地图 Web 服务 API 提供丰富的地理位置服务。\n\n重要： 使用本技能前，你必须在高德开放平台申请一个 Web 服务 API Key，并将其设置为环境变量 AMAP_KEY。\n\nexport AMAP_KEY=\"你的Web服务API Key\"\n\nClawdbot 会自动读取这个环境变量来调用 API。"
      },
      {
        "title": "何时使用 (触发条件)",
        "body": "当用户提出以下类型的请求时，应优先使用本技能：\n\n\"帮我查一下[城市]的天气\"\n\"搜索[地点]附近的[东西]\"\n\"查找[关键词]的位置\"\n\"从[A]到[B]怎么走？\"\n\"查询[地址]的经纬度\"\n\"这个坐标[经度,纬度]是哪里？\""
      },
      {
        "title": "1. 天气查询",
        "body": "用于查询指定城市的实时天气或天气预报。\n\n注意： API 需要城市的 adcode。如果不知道 adcode，可以先通过 行政区划查询 功能获取。\n\n查询实时天气\n\n# 将 [城市adcode] 替换为实际的行政区编码, 例如北京是 110000\ncurl \"https://restapi.amap.com/v3/weather/weatherInfo?key=$AMAP_KEY&city=[城市adcode]&extensions=base\"\n\n查询天气预报\n\n# 将 [城市adcode] 替换为实际的行政区编码\ncurl \"https://restapi.amap.com/v3/weather/weatherInfo?key=$AMAP_KEY&city=[城市adcode]&extensions=all\""
      },
      {
        "title": "2. 地点搜索 (POI)",
        "body": "用于根据关键字在指定城市搜索地点信息。\n\n# 将 [关键词] 和 [城市] 替换为用户提供的内容\ncurl \"https://restapi.amap.com/v3/place/text?key=$AMAP_KEY&keywords=[关键词]&city=[城市]\""
      },
      {
        "title": "3. 驾车路径规划",
        "body": "用于规划两个地点之间的驾车路线。\n\n注意： API 需要起终点的经纬度坐标。如果用户提供的是地址，需要先通过 地理编码 功能将地址转换为坐标。\n\n# 将 [起点经纬度] 和 [终点经纬度] 替换为实际坐标，格式为 \"经度,纬度\"\ncurl \"https://restapi.amap.com/v3/direction/driving?key=$AMAP_KEY&origin=[起点经纬度]&destination=[终点经纬度]\""
      },
      {
        "title": "4. 地理编码 (地址 → 坐标)",
        "body": "将结构化的地址信息转换为经纬度坐标。\n\n# 将 [地址] 替换为用户提供的地址\ncurl \"https://restapi.amap.com/v3/geocode/geo?key=$AMAP_KEY&address=[地址]\""
      },
      {
        "title": "5. 逆地理编码 (坐标 → 地址)",
        "body": "将经纬度坐标转换为结构化的地址信息。\n\n# 将 [经纬度] 替换为实际坐标，格式为 \"经度,纬度\"\ncurl \"https://restapi.amap.com/v3/geocode/regeo?key=$AMAP_KEY&location=[经纬度]\""
      },
      {
        "title": "6. 行政区划查询 (获取 adcode)",
        "body": "用于查询省、市、区、街道的行政区划信息，包括 adcode 和边界。\n\n# 将 [关键词] 替换为城市或区域名称，例如 \"北京市\"\ncurl \"https://restapi.amap.com/v3/config/district?key=$AMAP_KEY&keywords=[关键词]&subdistrict=0\""
      }
    ],
    "body": "高德地图 (Amap)\n\n本技能使用高德地图 Web 服务 API 提供丰富的地理位置服务。\n\n重要： 使用本技能前，你必须在高德开放平台申请一个 Web 服务 API Key，并将其设置为环境变量 AMAP_KEY。\n\nexport AMAP_KEY=\"你的Web服务API Key\"\n\n\nClawdbot 会自动读取这个环境变量来调用 API。\n\n何时使用 (触发条件)\n\n当用户提出以下类型的请求时，应优先使用本技能：\n\n\"帮我查一下[城市]的天气\"\n\"搜索[地点]附近的[东西]\"\n\"查找[关键词]的位置\"\n\"从[A]到[B]怎么走？\"\n\"查询[地址]的经纬度\"\n\"这个坐标[经度,纬度]是哪里？\"\n核心功能与用法\n1. 天气查询\n\n用于查询指定城市的实时天气或天气预报。\n\n注意： API 需要城市的 adcode。如果不知道 adcode，可以先通过 行政区划查询 功能获取。\n\n查询实时天气\n# 将 [城市adcode] 替换为实际的行政区编码, 例如北京是 110000\ncurl \"https://restapi.amap.com/v3/weather/weatherInfo?key=$AMAP_KEY&city=[城市adcode]&extensions=base\"\n\n查询天气预报\n# 将 [城市adcode] 替换为实际的行政区编码\ncurl \"https://restapi.amap.com/v3/weather/weatherInfo?key=$AMAP_KEY&city=[城市adcode]&extensions=all\"\n\n2. 地点搜索 (POI)\n\n用于根据关键字在指定城市搜索地点信息。\n\n# 将 [关键词] 和 [城市] 替换为用户提供的内容\ncurl \"https://restapi.amap.com/v3/place/text?key=$AMAP_KEY&keywords=[关键词]&city=[城市]\"\n\n3. 驾车路径规划\n\n用于规划两个地点之间的驾车路线。\n\n注意： API 需要起终点的经纬度坐标。如果用户提供的是地址，需要先通过 地理编码 功能将地址转换为坐标。\n\n# 将 [起点经纬度] 和 [终点经纬度] 替换为实际坐标，格式为 \"经度,纬度\"\ncurl \"https://restapi.amap.com/v3/direction/driving?key=$AMAP_KEY&origin=[起点经纬度]&destination=[终点经纬度]\"\n\n4. 地理编码 (地址 → 坐标)\n\n将结构化的地址信息转换为经纬度坐标。\n\n# 将 [地址] 替换为用户提供的地址\ncurl \"https://restapi.amap.com/v3/geocode/geo?key=$AMAP_KEY&address=[地址]\"\n\n5. 逆地理编码 (坐标 → 地址)\n\n将经纬度坐标转换为结构化的地址信息。\n\n# 将 [经纬度] 替换为实际坐标，格式为 \"经度,纬度\"\ncurl \"https://restapi.amap.com/v3/geocode/regeo?key=$AMAP_KEY&location=[经纬度]\"\n\n6. 行政区划查询 (获取 adcode)\n\n用于查询省、市、区、街道的行政区划信息，包括 adcode 和边界。\n\n# 将 [关键词] 替换为城市或区域名称，例如 \"北京市\"\ncurl \"https://restapi.amap.com/v3/config/district?key=$AMAP_KEY&keywords=[关键词]&subdistrict=0\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Dboy233/amap",
    "publisherUrl": "https://clawhub.ai/Dboy233/amap",
    "owner": "Dboy233",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/amap",
    "downloadUrl": "https://openagent3.xyz/downloads/amap",
    "agentUrl": "https://openagent3.xyz/skills/amap/agent",
    "manifestUrl": "https://openagent3.xyz/skills/amap/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/amap/agent.md"
  }
}