askill
goplaces

goplacesSafety 65Repository

Search for nearby places, restaurants, and businesses using Google Places or OpenStreetMap.

0 stars
1.2k downloads
Updated 2/13/2026

Package Files

Loading files...
SKILL.md

GoPlaces

Find nearby places and businesses.

Search Nearby

curl -s "https://maps.googleapis.com/maps/api/place/nearbysearch/json?\
location=37.7749,-122.4194&radius=1500&type=restaurant&key=$GOOGLE_PLACES_API_KEY" | \
jq '.results[] | {name, rating, vicinity}'

Text Search

curl -s "https://maps.googleapis.com/maps/api/place/textsearch/json?\
query=coffee+shop+San+Francisco&key=$GOOGLE_PLACES_API_KEY" | \
jq '.results[:5] | .[] | {name, formatted_address, rating}'

Place Details

curl -s "https://maps.googleapis.com/maps/api/place/details/json?\
place_id=PLACE_ID&key=$GOOGLE_PLACES_API_KEY" | jq '.result | {name, formatted_phone_number, website}'

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

72/100Analyzed 2/20/2026

A practical skill for Google Places API queries with 3 clear examples (nearby search, text search, details). Uses proper environment variable for API key. Missing error handling and OpenStreetMap alternative despite description mentioning it. Structured well with metadata. Depth 4 path is borderline but skill appears reusable."

65
80
70
60
80

Metadata

Licenseunknown
Version-
Updated2/13/2026
Publisherkody-w

Tags

api