Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

google-mapsGoogle Maps 搜索

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

1,687

周安装

71

GitHub Stars

151

下载量

591
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:google-maps(Google Maps 搜索)
来源仓库:https://github.com/aws-samples/sample-strands-agent-with-agentcore
仓库路径:skills/google-maps
安装命令:
npx skills add https://github.com/aws-samples/sample-strands-agent-with-agentcore --skill google-maps
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aws-samples/sample-strands-agent-with-agentcore --skill google-maps

简介

用于通过 Google Maps API 搜索地点信息,支持按关键词、位置和类型筛选。

  • 适合在出行规划、商户查找或地理数据收集中快速获取地点名称、地址和开放时间。
  • 调用 search_places 工具并传入查询文本,可选指定中心坐标、搜索半径或营业状态。
  • 需配置 Google Maps API 密钥,注意免费额度限制及请求频率控制。
  • google-maps 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Google Maps

Available Tools

  • search_places(query, location?, radius?, type?, open_now?, language?): Search for places using text query.

- query (string, required): Search text (e.g., "restaurants in Seoul") - location (string, optional): Center location as "lat,lng" (e.g., "37.5665,126.9780") - radius (integer, optional): Search radius in meters (max 50,000) - type (string, optional): Place type filter (e.g., "restaurant", "tourist_attraction", "hotel") - open_now (boolean, optional, default: false): Only return currently open places - language (string, optional, default: "en"): Language code

  • search_nearby_places(location, radius, keyword?, type?, rank_by?, open_now?, language?): Search near specific coordinates.

- location (string, required): Center as "lat,lng" (e.g., "37.5665,126.9780") - radius (integer, required): Search radius in meters (max 50,000) - keyword (string, optional): Search keyword - type (string, optional): Place type filter - rank_by (string, optional, default: "prominence"): "prominence" or "distance" - open_now (boolean, optional, default: false): Only open places - language (string, optional, default: "en"): Language code

  • get_place_details(place_id, language?, reviews_sort?): Get detailed place info including reviews and hours.

- place_id (string, required): Place ID from search results - language (string, optional, default: "en"): Language code - reviews_sort (string, optional, default: "most_relevant"): "most_relevant" or "newest"

  • get_directions(origin, destination, mode?, alternatives?, avoid?, language?): Get directions between two locations.

- origin (string, required): Starting point (address or "lat,lng") - destination (string, required): Destination (address or "lat,lng") - mode (string, optional, default: "driving"): "driving", "walking", "bicycling", "transit" - alternatives (boolean, optional, default: false): Return alternative routes - avoid (string, optional): "tolls", "highways", or "ferries" - language (string, optional, default: "en"): Language code

  • geocode_address(address, language?, region?): Convert a text address to geographic coordinates.

- address (string, required): Address to geocode - language (string, optional, default: "en"): Language code - region (string, optional): Country code for regional bias

  • reverse_geocode(latlng, language?): Convert coordinates to a human-readable address.

- latlng (string, required): Coordinates as "lat,lng" (e.g., "37.5665,126.9780") - language (string, optional, default: "en"): Language code

  • show_on_map(map_type, markers?, directions?, center?, zoom?): Display locations or routes on an interactive map.

- map_type (string, required): "markers" (location pins), "directions" (route), or "area" - markers (array, required for "markers"): List of marker objects with lat, lng - directions (object, required for "directions"): Route data with origin and destination - center (object, optional): Map center {lat, lng} - zoom (integer, optional): Zoom level 1-20

Usage Guidelines

  • ALWAYS call show_on_map after collecting location data — visual maps are the primary value.
  • Preserve place_id from search results for use with get_place_details.
  • Infer transportation mode from context (driving for long distances, walking for short ones).
  • Show 1-5 most relevant places per map.

Response Pattern

Follow the Text -> Map -> Text sequence. Do NOT call show_on_map in parallel with other tool calls.

  1. Text: Introduce what you'll show
  2. Map: Call show_on_map to display results
  3. Text: Explain the results

Multiple categories: Use separate maps in sequence — never parallel.

Output Rules

The map renders visually from the tool result — never echo or paraphrase the raw map_data JSON (type, center, zoom, markers, lat/lng) in your text response. Describe places in natural language only (names, ratings, brief notes). The user already sees the map; do not repeat its contents.

UI Guidance (from tools-config)

When to Use:

  • ALWAYS call show_on_map after collecting location data - visual maps are the primary value
  • Use for: search results, directions, comparisons, or any location-based query

Response Pattern (DO NOT call show_on_map in parallel):

  1. Text: Introduce what you'll show ("Here are the top restaurants:")
  2. show_on_map: Display the map
  3. Text: Explain the results ("These restaurants are rated 4.5+ stars")

Example:

  • "Let me show you restaurants in Gangnam:" → show_on_map(restaurants) → "All 5 restaurants above have excellent reviews."
  • For multiple categories: Text → Map 1 → Text → Map 2 (sequential, not parallel)

Map Organization:

  • Separate maps for different categories (restaurants vs hotels)
  • Show 1-5 most relevant places per map

Tool Selection:

  • search_places: text queries | search_nearby_places: coordinates
  • Preserve place_id for details | Infer direction mode from context

Output Rules:

  • The map is rendered visually by the UI from the tool result. NEVER echo, paraphrase, or include the raw map_data JSON (coordinates, markers, zoom, type) in your text response.
  • Describe locations in natural language only (names, ratings, brief notes). The user already sees the map — do not repeat its contents.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.86%
按下载量换算188

Claude

31.7%
按下载量换算187

Cursor

17.38%
按下载量换算103

Gemini CLI

9.63%
按下载量换算57

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills