/map
高德地图路线规划与 POI 搜索。支持驾车、步行、骑行、公交路线规划,以及景点、餐厅搜索。当用户询问路线、行程规划、景点推荐、餐厅推荐时使用。
$ npx -y skills add countbot-ai/CountBot --skill map --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/map
Context preview
The summary Claude sees to decide when to auto-load this skill.
高德地图路线规划与 POI 搜索。支持驾车、步行、骑行、公交路线规划,以及景点、餐厅搜索。当用户询问路线、行程规划、景点推荐、餐厅推荐时使用。
SKILL.md
map.SKILL.mdname: map
description: 高德地图路线规划与 POI 搜索。支持驾车、步行、骑行、公交路线规划,以及景点、餐厅搜索。当用户询问路线、行程规划、景点推荐、餐厅推荐时使用。
homepage: https://github.com/countbot-ai/CountBot
地图路线规划与 POI 搜索
基于高德地图 API 的路线规划和 POI 搜索服务。
配置
编辑 `skills/map/scripts/config.json`,填写高德地图 API Key:
{
"amap_key": "YOUR_AMAP_KEY"
}AI 调用示例
用户说"我想去东莞玩3天":
# 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 东莞
用户说"东莞有什么好吃的":
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
POI 搜索
# 景点搜索(风景名胜 + 博物馆)
python3 skills/map/scripts/map.py attractions --city 城市 --page-size 20
# 餐厅搜索(排除快餐)
python3 skills/map/scripts/map.py restaurants --city 城市 --page-size 20
# 通用搜索
python3 skills/map/scripts/map.py search --keywords 关键词 --city 城市
常用城市编码
| 城市 | 编码 | 城市 | 编码 | |------|------|------|------| | 北京 | 010 | 上海 | 021 | | 广州 | 020 | 深圳 | 0755 | | 东莞 | 0769 | 杭州 | 0571 |
注意事项
- 支持地址名称或经纬度坐标作为起终点,系统自动识别
- 建议提供城市参数以提高地址解析准确性
- 公交路线必须提供城市编码
- 所有搜索命令支持 `--json` 输出
Read more
name: map description: 高德地图路线规划与 POI 搜索。支持驾车、步行、骑行、公交路线规划,以及景点、餐厅搜索。当用户询问路线、行程规划、景点推荐、餐厅推荐时使用。 homepage: https://github.com/countbot-ai/CountBot
地图路线规划与 POI 搜索
基于高德地图 API 的路线规划和 POI 搜索服务。
配置
编辑 `skills/map/scripts/config.json`,填写高德地图 API Key:
{
"amap_key": "YOUR_AMAP_KEY"
}AI 调用示例
用户说"我想去东莞玩3天":
# 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 东莞
用户说"东莞有什么好吃的":
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
POI 搜索
# 景点搜索(风景名胜 + 博物馆) python3 skills/map/scripts/map.py attractions --city 城市 --page-size 20 # 餐厅搜索(排除快餐) python3 skills/map/scripts/map.py restaurants --city 城市 --page-size 20 # 通用搜索 python3 skills/map/scripts/map.py search --keywords 关键词 --city 城市
常用城市编码
| 城市 | 编码 | 城市 | 编码 | |------|------|------|------| | 北京 | 010 | 上海 | 021 | | 广州 | 020 | 深圳 | 0755 | | 东莞 | 0769 | 杭州 | 0571 |
注意事项
- 支持地址名称或经纬度坐标作为起终点,系统自动识别
- 建议提供城市参数以提高地址解析准确性
- 公交路线必须提供城市编码
- 所有搜索命令支持 `--json` 输出
更适配中文用户的轻量开源AI Agent | 国产大模型Coding plan支持 | 兼容OpenClaw Skills生态| 已接入微信ClawBot/微博龙虾/飞书/钉钉/QQ/小智AI/Telegram/deepseek-v4。
Repo: countbot-ai/CountBot
Other skills on countbot.
- /agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a
Open skill - /agent-team-manager
多智能体团队管理。创建、查看、修改、删除 CountBot 的多智能体团队,管理团队成员(角色)和团队级自定义模型配置。当用户要新建 Pipeline/Graph/Council 团队、调整成员分工、修改依赖关系、开关技能系统、设置团队专属模型时使用。
Open skill - /baidu-search
百度 AI 搜索。支持网页搜索、百度百科、秒懂百科、AI 智能生成四种模式。自动包含当前日期上下文。当用户要求搜索信息、查询百科、获取最新资讯、搜索新闻、查找资料时使用。
Open skill - /cron-manager
定时任务管理。创建、查看、修改、删除定时任务,管理任务会话数据。当用户需要设置提醒、定时执行任务、管理调度计划时使用。
Open skill - /email
通过 QQ 或 163 邮箱发送和接收邮件。支持发送普通邮件、带附件邮件、接收邮件、检查新邮件。当用户要求发送邮件、查看邮件、检查新邮件时使用。
Open skill - /find-skills
基于腾讯 SkillHub 搜索、安装和管理技能。用户提到“找技能”“安装 skill”“扩展功能”“启用/禁用 skill”“删除 skill”“安装 SkillHub CLI”时优先使用。
Open skill

