Agent skill

map

高德地图路线规划与 POI 搜索。支持驾车、步行、骑行、公交路线规划,以及景点、餐厅搜索。当用户询问路线、行程规划、景点推荐、餐厅推荐时使用。

countbot-aigithub.com/countbot-aiGitHub ↗
claude-codeships scriptsMIT
Install
npx skills add countbot-ai/CountBot --skill map --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 5
SKILL.md size: 2 KB
Bundled scripts: yes
Path: workspace/skills/map/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 760
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 地图路线规划与 POI 搜索 基于高德地图 API 的路线规划和 POI 搜索服务。 ## 配置 编辑 `skills/map/scripts/config.json`,填写高德地图 API Key: ```json { "amap_key": "YOUR_AMAP_KEY" } ``` ## AI 调用示例 用户说"我想去东莞玩3天": ```bash # 1. 搜索景点 python3 skills/map/scripts/map.py attractions --city 东莞 --page-size 20 --json # 2. 查询景点间路线 python3 skills/map/scripts/map.py driving --origin "旗峰公园" --destination "可园博物馆" --origin-city 东莞 --dest-city 东莞 ``` 用户说"东莞有什么好吃的": ```bash python3 skills/map/scripts/map.py restaurants --city 东莞 --page-size 20 --json ``` 用户说"从天安门到鸟巢坐地铁怎么走": ```bash python3 skills/map/scripts/map.py transit --origin "天安门" --destination "鸟巢" --city1 010 --city2 010 ``` ## 命令行参考 ### 路线规划 ```bash # 驾车 python3 skills/map/scripts/map.py driving --origin "起点" --destination "终点" --origin-city 城市 --dest-city 城市 # 步行 python3 skills/map/scripts/map.py walking --origin "起点" --destination "终点" --origin-city 城市 --dest-city 城市 # 公交(需要城市编码) python3 skills/map/scripts/map.py transit --origin "起点" --destination "终点" --city1 编码 --city2 编码 # 显示详细步骤 python3 skills/map/scripts/map.py driving --origin "起点" --destination "终点" --show-steps ``` ### POI 搜索 ```bash # 景点搜索(风景名胜 + 博物馆) python3 skills/map/scripts/map.py attractions --city 城市 --page-siz

What's inside
Steps it walks through
  1. 配置
  2. AI 调用示例
  3. 命令行参考
  4. 路线规划
  5. POI 搜索
  6. 常用城市编码
  7. 注意事项
Ships with 4 files
  • scripts/config.json
  • scripts/config.json.example
  • scripts/map.py
  • scripts/map_manager.py
Commands it runs
python3 skills/map/scripts/map.py attractions --city 东莞 --page-size 20 --json
python3 skills/map/scripts/map.py driving --origin "旗峰公园" --destination "可园博物馆" --origin-city 东莞 --dest-city 东莞
python3 skills/map/scripts/map.py restaurants --city 东莞 --page-size 20 --json
python3 skills/map/scripts/map.py transit --origin "天安门" --destination "鸟巢" --city1 010 --city2 010
python3 skills/map/scripts/map.py driving --origin "起点" --destination "终点" --origin-city 城市 --dest-city 城市
python3 skills/map/scripts/map.py walking --origin "起点" --destination "终点" --origin-city 城市 --dest-city 城市
python3 skills/map/scripts/map.py transit --origin "起点" --destination "终点" --city1 编码 --city2 编码
python3 skills/map/scripts/map.py driving --origin "起点" --destination "终点" --show-steps
python3 skills/map/scripts/map.py attractions --city 城市 --page-size 20
python3 skills/map/scripts/map.py restaurants --city 城市 --page-size 20
More from CountBot
All skills →
About this skill
What does the map skill do?

高德地图路线规划与 POI 搜索。支持驾车、步行、骑行、公交路线规划,以及景点、餐厅搜索。当用户询问路线、行程规划、景点推荐、餐厅推荐时使用。

How do I install it?

Run `npx skills add countbot-ai/CountBot --skill map --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From countbot-ai/CountBot, a repository with 760 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going