2.6k
GitHub Stars
6
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill openclaw/skills --skill ncloud-maps- _meta.json631 B
- package-lock.json18.6 KB
- package.json1021 B
- README.md9.1 KB
- SKILL.md8.2 KB
- tsconfig.json435 B
Overview
This skill queries Naver Cloud Maps APIs to calculate vehicle routes with smart routing between Directions5 and Directions15. It automatically selects Directions5 for up to four waypoints and switches to Directions15 when five or more waypoints are provided. The skill returns distance, duration, tolls, taxi and fuel estimates, and basic error information.
How this skill works
The skill validates coordinates provided in longitude,latitude format and rejects malformed input. It selects Directions5 or Directions15 based on waypoint count (auto-switch) or an optional override, then requests a vehicle route from Naver Cloud Maps. The response is parsed into distance, duration, toll_fare, taxi_fare, fuel_price and a timestamp; errors are reported when validation, authentication or quota issues occur.
When to use it
- Calculate driving directions and travel time between two or more points
- Estimate tolls, taxi fares, and fuel costs for a planned vehicle trip
- Route optimization workflows that require up to 15 waypoints
- Automated tools that need programmatic, real-time driving routes
- Scenarios where pedestrian or public transit routing is not required
Best practices
- Provide coordinates in longitude,latitude format and validate them before calling the skill
- Keep waypoint counts within API limits: use up to 4 for faster Directions5 calls, 5–15 for Directions15
- Set NCLOUD_API_KEY_ID and NCLOUD_API_KEY as environment variables and confirm the Directions15 API is enabled
- Handle and surface common errors: invalid coordinates, authentication failures, and quota exceeded
- Cache frequent route queries where appropriate to reduce API usage and stay within quota
Example use cases
- Compute a delivery vehicle route with multiple stops and get total distance, duration and fuel estimate
- Preview toll and taxi fare estimates for a planned road trip between cities
- Automatically switch routing API based on waypoint count in a fleet management pipeline
- Integrate vehicle-only navigation into a logistics dashboard that needs real-time traffic-aware results
- Force Directions15 for complex itineraries that require more than five stops
FAQ
No. This skill only calculates vehicle (car) routes. Use transit-specific APIs for public transport or pedestrian routing.
How does the skill choose between Directions5 and Directions15?
By default it uses Directions5 for 0–4 waypoints and automatically switches to Directions15 for 5 or more waypoints. You can override with an --api option.