Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

mapsmaps 搜索

Agent Skill

maps 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,218

周安装

562

GitHub Stars

2

下载量

4,631
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:maps(maps 搜索)
来源仓库:https://github.com/ivangdavila/maps
安装命令:
openclaw skills install maps
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install maps

简介

跨 Google 地图、Apple 地图、OpenStreetMap 和其他提供商规划地点搜索、地理编码、路线和地图链接工作流程。

SKILL.md

name
Maps
slug
maps
version
1.0.0
homepage
https://clawic.com/skills/maps
description
Plan place search, geocoding, routing, and map-link workflows across Google Maps, Apple Maps, OpenStreetMap, and other providers.
changelog
Initial release with provider selection rules, normalized map workflows, and safer route and link execution patterns.
metadata
{"clawdbot":{"emoji":"MAP","requires":{"bins":[],"config":["~/maps/"]},"os":["linux","darwin","win32"],"configPaths":["~/maps/"]}}

When to Use

User needs place search, forward geocoding, reverse geocoding, routing, travel-time estimates, static map links, or provider selection for a maps workflow. Use this skill when the agent must move between Google Maps, Apple Maps, OpenStreetMap, Mapbox, or another provider without mixing schemas, wasting quota, or opening the wrong route.

Architecture

Memory lives in ~/maps/. If ~/maps/ does not exist, run setup.md. See memory-template.md for structure.

~/maps/
|-- memory.md           # Activation rules, provider defaults, and privacy/cost boundaries
|-- provider-notes.md   # Known provider quirks, quota notes, and verified workarounds
|-- recurring-places.md # User-approved recurring origins, destinations, and map contexts
`-- run-log.md          # Optional notes on failures, ambiguous matches, and fixes

Quick Reference

Load only the file needed for the current map task.

TopicFile
Setup and activation behaviorsetup.md
Memory schema and status modelmemory-template.md
Provider choice by task and constraintprovider-matrix.md
Canonical schema and coordinate normalizationnormalization-guide.md
Search, route, and launch workflowsexecution-patterns.md
Cost controls and fallback logiccost-controls.md
Common failures and recovery stepstroubleshooting.md

Requirements

  • No credentials required for provider selection, normalization, and map-link planning.
  • Live Google Maps, Mapbox, HERE, or other paid API calls need user-approved credentials.
  • Apple Maps app launching is macOS-specific, but Apple Maps link generation works anywhere a browser can open https://maps.apple.com.
  • Confirm before sending sensitive origin, destination, or itinerary data to a live provider.

Coverage

This skill is designed for mixed map work that usually fails when an agent treats every provider as interchangeable:

  • place search and place-detail workflows
  • forward and reverse geocoding
  • route and matrix calculations
  • static map or shareable map-link generation
  • provider fallback when quota, privacy, or coverage changes the right choice

Core Rules

1. Separate structured data from launch actions

  • Decide first whether the user wants machine-readable output, an interactive map, or both.
  • Use APIs for structured records and calculations.
  • Use app or browser links only when the user wants to open, preview, or share a map.

2. Normalize every provider before comparing results

  • Keep coordinates internally as decimal lat and lng, then serialize per provider.
  • Track result type, confidence, place status, provider ID, timezone, and distance units before merging outputs.
  • Use normalization-guide.md whenever provider schemas disagree.

3. Bound ambiguous searches with context and confidence

  • Add city, region, postal code, country, or nearby coordinates before calling search or geocode endpoints.
  • If top candidates disagree on locality or type, ask a disambiguation question instead of guessing.
  • Do not treat the first geocode result as truth when the provider reports approximate or partial matches.

4. Route travel distance through a route engine

  • Haversine is only for radius filters, rough proximity checks, and clustering.
  • For ETA, driving distance, cycling, transit, or waypoint order, use a routing or matrix engine.
  • Explicitly set travel mode and units before comparing providers.

5. Choose the provider by task, cost, and privacy

  • Use provider-matrix.md to pick the cheapest provider that still meets the accuracy and policy needs of the task.
  • Default to Apple Maps for app-launch workflows, Google for broad place detail coverage, and the OpenStreetMap stack for low-cost open-data fallback.
  • Switch providers only when the delta is clear: richer data, safer privacy posture, better coverage, or lower cost.

6. Preview high-impact executions

  • Show final route mode, origin, destination, and provider before opening routes or sharing links.
  • For multiple links, repeated launches, or route changes, require explicit confirmation.
  • If a link contains private notes or sensitive addresses, confirm again before execution.

7. Degrade gracefully when providers fail

  • Fall back from premium APIs to open-data providers when the result quality remains acceptable.
  • Cache canonicalized queries and provider IDs so repeated geocodes do not burn quota.
  • If no trustworthy fallback exists, stop and explain whether the blocker is quota, precision, coverage, or privacy.

Common Traps

  • Swapping lat,lng and lng,lat -> routes jump continents or geofences miss targets.
  • Truncating coordinates below 5-6 decimals -> rooftop and curbside results drift by tens to hundreds of meters.
  • Treating the first geocode result as final -> duplicate street names and chain locations cause silent errors.
  • Using straight-line distance for delivery or commute promises -> travel times can be off by 2-5x.
  • Mixing launch URLs with API schemas -> a valid Apple Maps link does not imply a complete structured place record.
  • Ignoring place status and confidence -> closed businesses and approximate addresses leak into downstream logic.
  • Repeating the same paid lookup -> avoidable quota burn and inconsistent results when provider ordering changes.

External Endpoints

EndpointData SentPurpose
https://maps.googleapis.comaddresses, coordinates, place queries, route parametersGoogle geocoding, places, routes, and static maps
https://maps.apple.comsearch text, coordinates, and route parametersApple Maps links and app or browser launch
https://nominatim.openstreetmap.orgaddress text or reverse-geocode coordinatesOpenStreetMap geocoding fallback
https://router.project-osrm.orgcoordinates and route modeOpen-source route estimates when supported
https://api.mapbox.comqueries, coordinates, and route parametersAlternative geocoding, routing, and static maps

No other data should be sent externally unless the user approves another provider.

Security & Privacy

Data that may leave your machine:

  • address queries
  • coordinates
  • route origin and destination
  • place-search text
  • optional static-map parameters

Data that stays local:

  • notes in ~/maps/
  • provider preferences and fallback rules
  • user-approved recurring contexts
  • failure logs and verified fixes

This skill does NOT:

  • store API keys in local notes
  • guess precise destinations from vague requests
  • treat a launch URL as proof of data accuracy
  • modify its own SKILL.md

Trust

This skill can send addresses, coordinates, and route parameters to the map provider selected for the task. Only use live provider calls or link launches if you trust that provider with the relevant location data.

Scope

This skill ONLY:

  • selects providers and execution modes for map work
  • normalizes place, geocode, route, and link workflows
  • prepares safe request plans, links, or structured summaries

This skill NEVER:

  • invent place data, ETAs, or coverage claims
  • scrape undeclared providers behind anti-bot flows
  • share map links externally without approval
  • persist sensitive location history without telling the user first

Related Skills

Install with clawhub install <slug> if user confirms:

  • apple-maps - Open Apple Maps search and route flows on macOS with local command automation.
  • travel - Turn approved routes, places, and movement constraints into broader trip plans.
  • tripadvisor - Add venue comparison and official travel-data workflows to place shortlists.
  • car-rental - Connect route assumptions, pickup zones, and transport choices to rental planning.

Feedback

  • If useful: clawhub star maps
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

94.13%
按下载量换算4,359

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills