typescript/skills/local-places/SKILL.md
Search for local places and businesses using Overpass (OpenStreetMap) API without API keys.
npx skillsauth add kody-w/openrappter local-placesInstall 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.
Find nearby places using OpenStreetMap's Overpass API (no API key needed).
curl -s "https://overpass-api.de/api/interpreter" --data-urlencode 'data=[out:json];node["amenity"="restaurant"](around:1000,37.7749,-122.4194);out body 10;' | jq '.elements[] | {name: .tags.name, cuisine: .tags.cuisine}'
curl -s "https://overpass-api.de/api/interpreter" --data-urlencode 'data=[out:json];node["amenity"="cafe"](around:500,37.7749,-122.4194);out body 5;' | jq '.elements[] | {name: .tags.name}'
curl -s "https://nominatim.openstreetmap.org/search?q=Central+Park&format=json&limit=5" | jq '.[].display_name'
development
Get current weather and forecasts (no API key required).
tools
Send and receive WhatsApp messages via wacli command-line tool.
tools
Start and manage voice calls via the openrappter voice-call plugin.
content-media
Extract frames from video files using ffmpeg for analysis or processing.