pkgs/mapq/SKILL.md
Query Apple Maps for nearby places with driving/walking/transit directions and travel time.
npx skillsauth add jwiegley/nix-config mapqInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Query Apple Maps for nearby places and get driving/walking/transit directions with estimated travel time.
✅ USE this skill when:
❌ DON'T use this skill when:
open "maps://?daddr=ADDRESS")If the user's message contains GPS coordinates (e.g., [GPS: 38.57, -121.39]), extract
the latitude and longitude directly from the message. This happens when the user sends from
a mobile device via an Apple Shortcut that prepends their iPhone GPS location.
Otherwise, get the Mac's location:
LOC=$(corelocationcli --json)
LAT=$(echo "$LOC" | jq -r .latitude)
LON=$(echo "$LOC" | jq -r .longitude)
# Find nearest Walgreens by car (default)
mapq --lat "$LAT" --lon "$LON" --query "Walgreens"
# Find nearest coffee shops within walking distance
mapq --lat "$LAT" --lon "$LON" --query "coffee" --transport walking
# Find top 5 nearest gas stations
mapq --lat "$LAT" --lon "$LON" --query "gas station" --count 5
# Transit directions
mapq --lat "$LAT" --lon "$LON" --query "airport" --transport transit
The output is JSON with a results array. Each result includes:
name — Business nameaddress — Full street addressroute_miles — Actual driving/walking distancetravel_minutes — Estimated travel timetext_summary — Human-readable summary (e.g., "2.7 mi, 9 min by car")phone — Phone number if availableurl — Website URL if availableautomobile (default) — Driving directions with traffic-aware estimateswalking — Walking directions and timetransit — Public transit directions (availability varies by city)User: "How far am I from the nearest Walgreens?"
corelocationcli --jsonmapq --lat LAT --lon LON --query "Walgreens" --count 1text_summary from first resultUser: "What about walking?"
mapq --lat LAT --lon LON --query "Walgreens" --count 1 --transport walkingmapq exits non-zero, check stderr for the errorcorelocationcli fails, ask the user for their address and geocode itdatabases
Run the macOS Parallels smoke harness with Discord end-to-end roundtrip verification, including guest send, host verification, host reply, and guest readback.
databases
Run the macOS Parallels smoke harness with Discord end-to-end roundtrip verification, including guest send, host verification, host reply, and guest readback.
databases
Redisデータ構造パターン、キャッシング戦略、分散ロック、レート制限、Pub/Sub、本番アプリケーション用コネクション管理。
databases
日本語翻訳:このファイルは mysql-patterns 用の日本語翻訳が必要です