Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

ncloud-mapsncloud 地图

Agent Skill

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

总安装

21,934

周安装

896

GitHub Stars

公开资料未说明

下载量

7,025
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ncloud-maps

简介

查询 Naver Cloud Maps API 以进行路线导航。智能路由:默认为 Directions5,对于 5 个以上航点自动切换到 Directions15。

SKILL.md

name
ncloud-maps
description
Query Naver Cloud Maps APIs for route navigation. Smart routing: Directions5 by default, auto-switches to Directions15 for 5+ waypoints.

Prompt

When a user requests a route calculation with addresses or coordinates, use this skill to calculate driving time, distance, and cost.

Usage:

  • /skill ncloud-maps <start> <goal> [waypoints]
  • Start and goal must be in longitude,latitude format OR addresses (convert using goplaces/naver-local-search first)
  • Returns: distance, duration, toll fare, taxi fare, fuel cost

Examples:

  • /skill ncloud-maps "126.9633,37.5524" "127.0165,37.4889" (coordinates)
  • /skill ncloud-maps 아현역 서초역 (addresses - requires geocoding skill first)

Ncloud Maps

Query Naver Cloud Maps APIs for intelligent routing (Directions5 + Directions15).

Key Feature: Smart Routing

v1.0.8+ — By default, the skill uses Directions5 for queries with fewer than 5 waypoints, and automatically switches to Directions15 when you have 5 or more waypoints. No manual selection needed.

WaypointsAPI UsedMax Waypoints
0–4Directions55
5+Directions1515

Setup

  1. Get API credentials from Naver Cloud Console:

- Create/register an Application in Naver Cloud Console - Obtain Client ID (API Key ID) and Client Secret (API Key) - Enable "Maps Directions15" API

  1. Set environment variables (or use .env file):
export NCLOUD_API_KEY_ID="your-api-key-id"
export NCLOUD_API_KEY="your-api-key-secret"

Or create a .env file:

NCLOUD_API_KEY_ID=your-api-key-id
NCLOUD_API_KEY=your-api-key-secret
  1. Install dependencies:
cd ~/.openclaw/workspace/skills/ncloud-maps
npm install

Usage

Using with Address-to-Coordinate Skills

ncloud-maps requires coordinates in longitude,latitude format. If you have address-based location data, use one of these compatible skills to convert addresses to coordinates:

Available Options (choose based on your environment):

SkillProviderCoordinatesSetup Required
goplacesGoogle Places APIYes (lon,lat)GOOGLE_PLACES_API_KEY
naver-local-searchNaver Local SearchYes (lon,lat)NAVER_CLIENT_ID, NAVER_CLIENT_SECRET
Custom APIYour choiceYes (lon,lat)Your setup

Example workflow with goplaces:

# Get coordinates from address
COORDS=$(goplaces resolve "강남역, 서울" --json | jq -r '.places[0] | "\(.location.longitude),\(.location.latitude)"')

# Use coordinates with ncloud-maps
npx ts-node scripts/index.ts --start "$COORDS" --goal "127.0049,37.4947"

Example workflow with naver-local-search:

# Get coordinates from address
COORDS=$(naver-local-search search "강남역" --format json | jq -r '.[0] | "\(.x),\(.y)"')

# Use coordinates with ncloud-maps
npx ts-node scripts/index.ts --start "$COORDS" --goal "127.0049,37.4947"

Or integrate any other geocoding service that returns longitude,latitude coordinates.

Smart Routing (Default Behavior)

By default, no --api flag needed. The skill automatically:

  • Uses Directions5 for 0–4 waypoints (faster)
  • Switches to Directions15 for 5+ waypoints (necessary)

Provide coordinates in longitude,latitude format:

# 0–4 waypoints → Directions5 (automatic)
npx ts-node scripts/index.ts \
  --start "127.0683,37.4979" \
  --goal "126.9034,37.5087" \
  --waypoints "127.0100,37.5000|127.0200,37.5100"

# 5+ waypoints → Directions15 (automatic)
npx ts-node scripts/index.ts \
  --start "127.0683,37.4979" \
  --goal "126.9034,37.5087" \
  --waypoints "127.0100,37.5000|127.0200,37.5100|127.0300,37.5200|127.0400,37.5300|127.0500,37.5400"

Basic route query by coordinates (direct)

npx ts-node scripts/index.ts \
  --start "127.0683,37.4979" \
  --goal "126.9034,37.5087"

Force specific API (optional)

If you need to override the smart routing:

# Force Directions5 (max 5 waypoints)
npx ts-node scripts/index.ts \
  --start "127.0683,37.4979" \
  --goal "126.9034,37.5087" \
  --api directions5 \
  --waypoints "127.0100,37.5000|127.0200,37.5100"

# Force Directions15 (max 15 waypoints)
npx ts-node scripts/index.ts \
  --start "127.0683,37.4979" \
  --goal "126.9034,37.5087" \
  --api directions15 \
  --waypoints "127.0100,37.5000|127.0200,37.5100|127.0300,37.5200|127.0400,37.5300|127.0500,37.5400"

With waypoints (coordinates only)

npx ts-node scripts/index.ts \
  --start "127.0683,37.4979" \
  --goal "126.9034,37.5087" \
  --waypoints "127.0100,37.5000"

Multiple waypoints:

npx ts-node scripts/index.ts \
  --start "127.0683,37.4979" \
  --goal "126.9034,37.5087" \
  --waypoints "127.0100,37.5000|127.0200,37.5100"

Route options

Choose from: trafast (fast), tracomfort (comfort), traoptimal (default), traavoidtoll (toll-free), traavoidcaronly (avoid car-only roads)

npx ts-node scripts/index.ts \
  --start "127.0683,37.4979" \
  --goal "126.9034,37.5087" \
  --option "traavoidtoll"

Vehicle and fuel settings

npx ts-node scripts/index.ts \
  --start "127.0683,37.4979" \
  --goal "126.9034,37.5087" \
  --cartype 2 \
  --fueltype "diesel" \
  --mileage 10.5

Vehicle types:

  • 1 (default): Small sedan
  • 2: Medium van/cargo
  • 3: Large vehicle
  • 4: 3-axle cargo truck
  • 5: 4+ axle special cargo
  • 6: Compact car

Fuel types: gasoline (default), highgradegasoline, diesel, lpg

Output

{
  "success": true,
  "start": "127.0683,37.4979",
  "goal": "126.9034,37.5087",
  "distance": 12850,
  "duration": 1145000,
  "toll_fare": 0,
  "taxi_fare": 18600,
  "fuel_price": 1550,
  "departure_time": "2026-02-21T14:10:00"
}

Response Fields

  • success - Whether the query succeeded
  • start - Starting point coordinates
  • goal - Destination coordinates
  • distance - Total distance in meters
  • duration - Total duration in milliseconds (÷1000 = seconds)
  • toll_fare - Toll/highway fare in KRW
  • taxi_fare - Estimated taxi fare in KRW
  • fuel_price - Estimated fuel cost in KRW
  • departure_time - Query timestamp
  • error - Error message (if success=false)

How It Works

  1. Address Resolution (Optional - any geocoding skill)

- Use any available skill that provides coordinates (goplaces, naver-local-search, etc.) - Extract longitude,latitude format from the result - Pass coordinates to ncloud-maps

  1. Coordinate Validation

- Input: Coordinates in longitude,latitude format (direct input or from geocoding skill) - Validates format and range - Returns error if format is invalid

  1. Route Calculation (Directions15 or Directions5)

- Coordinates sent to appropriate Directions API - Returns distance, duration, tolls, taxi fare, fuel cost - Only for vehicle (car) routes — not for pedestrian or public transit

  1. Waypoints Support

- Each waypoint must be in longitude,latitude format - All coordinates sent to Directions API

Limitations

⚠️ This skill only calculates vehicle (car) routes. It does not support:

  • Public transportation (subway, bus, etc.)
  • Walking routes
  • Multi-modal journeys
  • Transit-specific features (fare, stops, schedules)

For those use cases, use transit-specific APIs (e.g., Kakao Map, Naver Map Transit API).

Environment Variables

Required:

  • NCLOUD_API_KEY_ID - Naver Cloud API Key ID
  • NCLOUD_API_KEY - Naver Cloud API Key Secret

API Limits

Smart Routing:

  • 0–4 waypoints: Directions5 API (max 5 waypoints)
  • 5+ waypoints: Directions15 API (max 15 waypoints)

General:

  • Real-time traffic information included
  • Request rate limits apply per your Naver Cloud plan

Error Handling

Common errors:

  • 좌표 형식 오류 - Invalid coordinate format (use longitude,latitude)
  • Authentication Failed - Invalid API credentials
  • Quota Exceeded - API rate limit hit
  • No routes found - No valid route between points

Check Naver Cloud Console for:

  • API enablement for your application
  • Quota/rate limit status
  • Valid coordinates

References

See api-spec.md for detailed API specifications.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.72%
按下载量换算5,952

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills