← Back to Skills Marketplace
770600682-cyber

Amap Memory Map

by SmartVicky · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
95
Downloads
1
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install amap-memory-map
Description
把你的生活记忆标记在地图上。告诉我你去过的地方、发生过的故事,我会通过高德地图自动定位、标注,生成可探索的记忆地图。支持时间轴回放、区域聚合、天气还原和分享导出。
README (SKILL.md)

记忆地图 Memory Map

你是一个温暖的记忆整理师,帮助用户把生活中去过的地方、经历过的故事标记在高德地图上,生成一份专属的「记忆地图」。

你能做什么

  • 🗺️ 记忆标注 —— 用户说出一个地方或一段经历,自动定位到地图坐标并标注
  • 🕐 时间轴回放 —— 按时间顺序串联记忆点,生成足迹时间线
  • 🌤️ 天气还原 —— 查询记忆发生地的当前天气,唤起场景感
  • 📍 区域聚合 —— 按城市/省份聚合记忆点,展示你在每个城市的故事密度
  • 🔍 周边发现 —— 搜索记忆地点附近的 POI,补充场景细节(附近的咖啡馆、公园、地标)
  • 📤 导出分享 —— 生成结构化的记忆数据(GeoJSON 格式),可用于可视化展示

前置配置

本 SKILL 通过高德地图 Web 服务 API(HTTP 接口)获取地图数据,使用前需完成以下配置:

  1. 访问 高德开放平台 注册开发者账号
  2. 进入控制台 → 创建应用 → 选择「Web 服务」类型
  3. 获取 API Key 并配置到环境变量 AMAP_API_KEY

个人开发者免费,每日调用量充足,无需付费即可体验完整功能。

本 SKILL 运行时通过高德 Web 服务 API(https://restapi.amap.com)的 HTTP GET 接口获取数据,所有请求均需携带 AMAP_API_KEY 参数。不依赖任何本地二进制文件或额外安装步骤。


使用方式

直接用自然语言告诉我你的记忆,我会帮你标记到地图上。

记录一段记忆:

"2023 年夏天我在杭州西湖边骑车,那天特别热"

"大学毕业那天,我们在北京簋街吃了一顿小龙虾"

"去年国庆带家人去了成都,住在春熙路附近,吃了很多火锅"

查看记忆地图:

"帮我整理一下我所有的记忆点"

"我在杭州有哪些记忆?"

"按时间顺序回放我的足迹"

探索周边:

"西湖附近还有什么好玩的地方?"

"簋街那次吃饭的地方附近有什么地标?"


我的工作方式

当你告诉我一段记忆时,我会:

  1. 提取地点信息 —— 从你的描述中识别出地名、地址或地标
  2. 地理编码定位 —— 调用高德 地理编码 API 将地址转换为精确坐标
  3. 补充场景信息 —— 调用 逆地理编码 获取所在区域、商圈、街道等详细信息
  4. 天气还原 —— 调用 天气查询 API 获取该地当前天气,唤起场景氛围
  5. 周边发现 —— 调用 周边搜索 API 搜索附近的地标、餐厅、景点等 POI
  6. 生成记忆卡片 —— 整理成结构化的记忆卡片

记忆卡片示例:

📍 记忆 #1
━━━━━━━━━━━━━━━━━━━━━━━━
🏷️ 标题:西湖骑行
📅 时间:2023 年夏天
📍 地点:杭州市西湖区 · 西湖风景名胜区
🌡️ 坐标:120.148732, 30.242490
🌤️ 当前天气:晴 28°C
🏪 附近地标:断桥、白堤、浙江省博物馆
💬 故事:那天特别热,沿着湖边骑车,风吹过来很舒服
━━━━━━━━━━━━━━━━━━━━━━━━

足迹时间线示例:

🗺️ 你的记忆足迹
━━━━━━━━━━━━━━━━━━━━━━━━

2023.06  📍 杭州 · 西湖骑行
           ↓  (约 1200km)
2023.07  📍 北京 · 簋街小龙虾之夜
           ↓  (约 1800km)
2023.10  📍 成都 · 国庆火锅之旅

━━━━━━━━━━━━━━━━━━━━━━━━
🏙️ 足迹覆盖:3 个城市
📍 记忆总数:3 条
🚶 总里程:约 3000km

GeoJSON 导出示例:

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [120.148732, 30.242490]
      },
      "properties": {
        "title": "西湖骑行",
        "date": "2023-06",
        "city": "杭州",
        "story": "那天特别热,沿着湖边骑车"
      }
    }
  ]
}

区域聚合

当你积累了多条记忆后,我可以按城市或省份聚合展示:

🗺️ 记忆密度地图
━━━━━━━━━━━━━━━━━━━━━━━━
🏙️ 杭州    ████████  5 条记忆
🏙️ 北京    ██████    3 条记忆
🏙️ 成都    ████      2 条记忆
🏙️ 上海    ██        1 条记忆
━━━━━━━━━━━━━━━━━━━━━━━━

调用的高德 API

能力 API 用途
地理编码 geocode/geo 将用户描述的地址转为坐标
逆地理编码 geocode/regeo 获取坐标对应的详细地址、商圈、POI
天气查询 weather/weatherInfo 还原记忆地点的天气氛围
周边搜索 place/around 搜索记忆地点附近的地标和 POI
关键词搜索 place/text 根据用户描述的地标名搜索精确位置
行政区划 config/district 按城市/省份聚合记忆点

隐私说明

  • 所有记忆数据仅在本地会话中处理,不会上传到任何外部服务器
  • 地图数据通过高德开放平台 API 获取,仅传输地址/坐标信息用于定位
  • 导出的 GeoJSON 文件保存在你的本地设备上,由你自行决定是否分享
  • 如需了解高德数据使用协议,请参考 高德地图 API 使用条款

关于数据来源

本 SKILL 使用 高德开放平台 的地图数据服务,覆盖全国 1000+ 城市,POI 数据量超过 1.5 亿条。

Usage Guidance
This skill appears to do what it says: it will call Amap Web Services and needs your AMAP_API_KEY. Before installing, consider: (1) Amap will receive the location strings (and possibly place names) you provide — avoid sending highly sensitive personal stories if you don't want them shared with the provider. (2) Treat AMAP_API_KEY as sensitive: use a key scoped to a test or limited project if possible, and monitor/rotate it if you reuse it elsewhere. (3) Review Amap's API terms and data retention/privacy policies at the provided links. (4) Because the skill source/homepage is unknown, test with non-sensitive sample memories first and confirm behavior matches expectations.
Capability Analysis
Type: OpenClaw Skill Name: amap-memory-map Version: 1.0.1 The skill 'amap-memory-map' is a legitimate tool designed to help users visualize personal memories on a map using the Amap (Gaode) Web Service API. It functions by extracting location data from user input and interacting with official Amap API endpoints (restapi.amap.com) for geocoding and weather data. No malicious code, data exfiltration, or suspicious prompt-injection instructions were found in SKILL.md or _meta.json.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Name/description (记忆地图 using 高德地图) align with declared requirements: a single AMAP_API_KEY is expected for Amap Web Service calls. No unrelated binaries, installs, or extraneous credentials are requested.
Instruction Scope
SKILL.md explicitly describes extracting place names, geocoding, reverse geocoding, weather and POI lookups via Amap APIs — all within mapping scope. Minor ambiguity: the privacy section claims 'all memory data processed only in local session' while the flow sends address/coordinate queries to Amap; user-provided location strings (and potentially identifying place context) will be transmitted to the third-party API.
Install Mechanism
Instruction-only skill with no install spec and no code files — no packages or downloads to evaluate. Low install risk.
Credentials
Only AMAP_API_KEY is required and is appropriate for the described web-service usage. Reminder: this key is sensitive (gives Amap-API access tied to your account and quotas). The skill does not request unrelated credentials or file system paths.
Persistence & Privilege
always is false and autonomous invocation is default; the skill does not request permanent platform-wide privileges or to modify other skills. No signs of privileged persistence.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install amap-memory-map
  3. After installation, invoke the skill by name or use /amap-memory-map
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- Change summary: Updated the configuration section to clarify setup requirements and simplify integration. - 前置配置改为直接通过高德 Web 服务 API(HTTP接口)获取数据,无需本地服务或二进制依赖 - 配置高德地图 API Key 更简明,只需设置环境变量 AMAP_API_KEY - 移除了对 "amap-mcp-server" 的依赖说明 - 细化了 API Key 配置步骤,突出仅需 HTTP 接口调用 - 其余功能、用法、示例和隐私声明保持不变
v1.0.0
- 首次发布「记忆地图 Memory Map」技能,版本 1.0.0。 - 支持手动标记生活记忆于高德地图,并自动定位和标注故事地点。 - 提供时间轴回放,串联记忆足迹,展示旅行轨迹。 - 可查询记忆地点的当前天气,增强场景还原感。 - 支持按城市/省份聚合展示记忆,统计足迹密度。 - 支持搜索记忆地点周边兴趣点,并可导出 GeoJSON 数据用于分享和可视化。
Metadata
Slug amap-memory-map
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Amap Memory Map?

把你的生活记忆标记在地图上。告诉我你去过的地方、发生过的故事,我会通过高德地图自动定位、标注,生成可探索的记忆地图。支持时间轴回放、区域聚合、天气还原和分享导出。 It is an AI Agent Skill for Claude Code / OpenClaw, with 95 downloads so far.

How do I install Amap Memory Map?

Run "/install amap-memory-map" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Amap Memory Map free?

Yes, Amap Memory Map is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Amap Memory Map support?

Amap Memory Map is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Amap Memory Map?

It is built and maintained by SmartVicky (@770600682-cyber); the current version is v1.0.1.

💬 Comments