Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

map-address-query-skills地图地址查询技巧

Agent Skill

map-address-query-skills 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,502

周安装

227

GitHub Stars

公开资料未说明

下载量

1,798
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:map-address-query-skills(地图地址查询技巧)
来源仓库:https://github.com/scottkiss/map-address-query-skills
安装命令:
openclaw skills install map-address-query-skills
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install map-address-query-skills

简介

地图地址解析与距离计算工具,支持坐标转换与POI位置查询。

  • 适用于物流路径规划、门店选址与客户分布可视化场景。map-address-query-skills 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 可处理经纬度反查、地址模糊匹配和两点间距离估算功能。
  • 需配置正确的地理编码服务商与配额限制,避免请求超限失败。
  • 建议缓存高频查询结果以降低接口调用成本,提升响应速度。

SKILL.md

name
map-address-query
description
Map service address lookup and distance-query workflow. MUST use this skill when the user asks for coordinates (坐标), latitude/longitude, POI locations (e.g., specific buildings, shops, or addresses like "北京市朝阳区望京街10号的坐标"), or when calculating route distance and time between places. Supports converting physical locations or names into GPS coordinates.current support Tencent map.

Map Address Query

First, run ./scripts/qq_map_cli.sh (or .\scripts\qq_map_cli.bat on Windows) to download the CLI tool. Then, use ./scripts/bin/qq-map-cli (or .\scripts\bin\qq-map-cli.exe on Windows) to query Tencent Location Service from the terminal.

Quick Start

  • If the global config file does not exist, create one first:
# On Mac/Linux
./scripts/bin/qq-map-cli setup --config ~/.qq_map_cli_config.json

# On Windows (CMD/PowerShell)
.\scripts\bin\qq-map-cli.exe setup --config %USERPROFILE%\.qq_map_cli_config.json
  • If the user already has a Tencent Location Service key, write it directly during setup:
./scripts/bin/qq-map-cli setup --config ~/.qq_map_cli_config.json --key "your-key"
# Windows: .\scripts\bin\qq-map-cli.exe setup --config %USERPROFILE%\.qq_map_cli_config.json --key "your-key"
  • The CLI reads the key from one of these places: --key, QQ_MAP_KEY, --config file path.
  • Always append the global config flag: --config ~/.qq_map_cli_config.json (or --config %USERPROFILE%\.qq_map_cli_config.json on Windows) to all commands.
  • Run the bundled CLI from the skill directory: ./scripts/bin/qq-map-cli <subcommand> ... (or .\scripts\bin\qq-map-cli.exe on Windows).
  • Prefer --json when another script or workflow needs structured output.

How to get Tencent Location Service key

  • visit https://lbs.qq.com/dev/console/application/mine
  • click "创建应用" button to create a new application
  • click "添加key" button to add a new key
  • copy the "Key" value to the --key flag

Commands

Geocode One Address

Use geocoder when the user wants latitude/longitude or structured address fields for one place.

./scripts/bin/qq-map-cli geocoder \
  --config ~/.qq_map_cli_config.json \
  --address "北京市海淀区彩和坊路海淀西大街74号"
# Windows: .\scripts\bin\qq-map-cli.exe geocoder --config %USERPROFILE%\.qq_map_cli_config.json --address "..."

Measure Distance Between Two Named Addresses

Use address-distance when the user asks for the distance or travel time between two address names.

./scripts/bin/qq-map-cli address-distance \
  --config ~/.qq_map_cli_config.json \
  --from-address "北京市海淀区中关村大街27号" \
  --to-address "北京市朝阳区望京街10号" \
  --mode driving
# Windows: .\scripts\bin\qq-map-cli.exe address-distance --config %USERPROFILE%\.qq_map_cli_config.json ...

Run Coordinate or Matrix Queries

Use distance-matrix when the user already has coordinates, needs one-to-many or many-to-many queries, or wants raw from and to payload control.

./scripts/bin/qq-map-cli distance-matrix \
  --config ~/.qq_map_cli_config.json \
  --origin 39.984154,116.307490 \
  --destination 39.908692,116.397477 \
  --mode walking
# Windows: .\scripts\bin\qq-map-cli.exe distance-matrix --config %USERPROFILE%\.qq_map_cli_config.json ...

Workflow

  1. Check whether a global config already exists at ~/.qq_map_cli_config.json (or %USERPROFILE%\.qq_map_cli_config.json) or QQ_MAP_KEY.
  2. If neither exists, run setup with the global --config flag to create the config file in the user's home directory.
  3. If the user can provide the Tencent key immediately, prefer setup --config ~/.qq_map_cli_config.json --key "..." so the config is complete in one step.
  4. If the key is still missing after setup, stop and ask the user for the Tencent Location Service key instead of trying live queries.
  5. After the user provides the key, immediately persist it globally by running setup --config ~/.qq_map_cli_config.json --key "..." --force.
  6. Treat ~/.qq_map_cli_config.json as a globally persistent config so the user does not need to configure it again for queries in other directories.
  7. Start with the fullest address available, including city and district, to improve geocoder accuracy.
  8. Use address-distance by default for natural-language requests like "这两个地址相距多远".
  9. Switch to distance-matrix for batch routing, coordinate-based inputs, or advanced raw payloads.
  10. Retry with --policy 1 when the user gives a shorter or fuzzier address and strict parsing looks too brittle.
  11. Change --mode to walking, bicycling, or straight when the user asks for non-driving results.
  12. Keep API keys in the user's workspace config or environment variables, not inside the skill folder.

Output Notes

  • Default output is human-readable and suited to chat replies.
  • --json returns raw API responses for downstream automation.
  • address-distance --json returns both geocoder responses and the final distance-matrix response in one object.

Troubleshooting

  • SSL Certificate Error on macOS: If you see [SSL: CERTIFICATE_VERIFY_FAILED], run the downloaded binary with SSL_CERT_FILE=/etc/ssl/cert.pem ./scripts/bin/qq-map-cli ... to manually point to macOS's certificates.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.22%
按下载量换算1,388

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills