一键导入
gaode-map
A skill to interact with Gaode Map (AMap) for location search and route planning.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
A skill to interact with Gaode Map (AMap) for location search and route planning.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Implements Manus-style file-based planning to organize and track progress on complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when asked to plan out, break down, or organize a multi-step project, research task, or any work requiring >5 tool calls. Supports automatic session recovery after /clear.
追踪全球 AI 圈顶级账号,实时获取 AI 行业最新动态。当用户想了解 OpenAI、DeepSeek、Anthropic、Google DeepMind 等 AI 巨头最新发布,或想第一时间知道 AI 圈发生了什么重大事件时使用此技能。适用于:AI 资讯日报、每周 AI 动态总结、特定账号最新推文追踪、行业重大新闻即时推送。
Posts content to WeChat Official Account (微信公众号) via API or Chrome CDP. Supports article posting (文章) with HTML, markdown, or plain text input, and image-text posting (贴图, formerly 图文) with multiple images. Use when user mentions "发布公众号", "post to wechat", "微信公众号", or "贴图/图文/文章".
Scans your OpenClaw environment for leaked secrets — API keys, tokens, credentials in .env files, installed skills, and shell history. Runs silently on startup, deep scans on demand. Fixes issues with your permission.
贝叶斯思维技能。帮你评估持仓股票和国际宏观事件,基于贝叶斯概率思维做投资决策。核心思维:三门问题换门哲学、沉没成本止损纪律、概率期望值决策。适用于持仓检查、宏观事件分析、央行利率、地缘政治、买入前评估、卖出决策、组合复盘。
买方思维新闻解读技能。**当用户提及财经新闻、投资事件、财报、宏观政策、市场动态时,必须使用此技能**。用机构投资者视角分析投资机会,输出 L1-L5 五层分析(事实→背景→影响→预期→行动),包含历史对比、受益/受损方、具体投资建议(股票代码、仓位%、止损位)。**即使新闻看似简单也要用**——买方思维是核心差异化能力。
| name | gaode_map |
| description | A skill to interact with Gaode Map (AMap) for location search and route planning. |
| metadata | {"openclaw":{"requires":{"env":["AMAP_API_KEY"],"bins":["python"]}}} |
This skill allows you to search for places and plan routes using Gaode Map (AMap) API.
You can use the amap_tool.py script to perform actions. The API Key is expected to be in the AMAP_API_KEY environment variable.
Search for POIs (Points of Interest).
Command:
python amap_tool.py search --keywords "<keywords>" [--city "<city>"]
Parameters:
keywords: The search query (e.g., "restaurants", "gas station").city: (Optional) The city to search in.Plan a route between two locations.
Command:
python amap_tool.py route --origin "<origin>" --destination "<destination>" [--mode "<mode>"] [--city "<city>"]
Parameters:
origin: Start location (address or coordinates "lon,lat").destination: End location (address or coordinates "lon,lat").mode: (Optional) Route mode: driving (default), walking, bicycling, transit.city: (Optional) City name (required for transit mode, or to help geocoding).User: "Find coffee shops in Shanghai." Action:
python amap_tool.py search --keywords "coffee shop" --city "Shanghai"
User: "Show me the driving route from Beijing West Station to the Forbidden City." Action:
python amap_tool.py route --origin "Beijing West Station" --destination "Forbidden City" --mode "driving" --city "Beijing"