skills/google-places/SKILL.md
Search for places, restaurants, businesses via Google Places API. Use when user asks about nearby locations. Requires GOOGLE_PLACES_API_KEY.
npx skillsauth add emanueleielo/ciana-parrot google-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.
Search for places, restaurants, shops, and businesses.
curl -s -X POST "https://places.googleapis.com/v1/places:searchText" \
-H "Content-Type: application/json" \
-H "X-Goog-Api-Key: $GOOGLE_PLACES_API_KEY" \
-H "X-Goog-FieldMask: places.displayName,places.formattedAddress,places.rating,places.userRatingCount" \
-d '{"textQuery": "pizza restaurants in Rome"}'
curl -s "https://places.googleapis.com/v1/places/PLACE_ID" \
-H "X-Goog-Api-Key: $GOOGLE_PLACES_API_KEY" \
-H "X-Goog-FieldMask: displayName,formattedAddress,rating,currentOpeningHours,websiteUri,nationalPhoneNumber"
curl -s -X POST "https://places.googleapis.com/v1/places:searchNearby" \
-H "Content-Type: application/json" \
-H "X-Goog-Api-Key: $GOOGLE_PLACES_API_KEY" \
-H "X-Goog-FieldMask: places.displayName,places.formattedAddress,places.rating" \
-d '{
"includedTypes": ["restaurant"],
"maxResultCount": 10,
"locationRestriction": {
"circle": {
"center": {"latitude": 41.9028, "longitude": 12.4964},
"radius": 1000.0
}
}
}'
Control which fields are returned (and billed):
displayName,formattedAddress,locationnationalPhoneNumber,websiteUrirating,userRatingCount,reviews,currentOpeningHourstools
Send and read WhatsApp messages via the wacli CLI. Search chats, view history, send text and files to contacts or groups.
development
Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for any location. NOT for: historical weather data, severe weather alerts, or detailed meteorological analysis. No API key needed.
tools
Extract frames, thumbnails, or clips from video files using ffmpeg. Use when analyzing video content or creating previews.
tools
Diagnose and resolve errors with Ciana's host bridges, CLI tools, Claude Code mode, macOS permissions, and gateway connectivity.