Install
$ agentstack add skill-claude-world-claude-agent-places ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Places
Search places and get details using goplaces CLI backed by the Google Places API. Requires a GOOGLE_PLACES_API_KEY environment variable.
Prerequisites
brew install steipete/tap/goplaces
Set up your API key:
export GOOGLE_PLACES_API_KEY="AIza..."
# Or add to ~/.zshrc / ~/.bashrc for persistence
Get a key: https://console.cloud.google.com → APIs & Services → Enable "Places API" → Create Credentials → API Key.
Commands
| Command | Description | |---------|-------------| | goplaces search "" --near "" | Search places by type/name near a location | | goplaces search "" --lat 25.0478 --lng 121.5319 | Search by coordinates | | goplaces details "" | Get full details for a place (hours, phone, address) | | goplaces reviews "" | List top reviews for a place | | goplaces search "" --open-now | Filter to currently open places | | goplaces search "" --radius 500 | Limit search radius in meters |
Usage Examples
Find coffee shops nearby:
goplaces search "coffee shop" --near "Taipei 101" --open-now
Get full details for a place:
goplaces details "ChIJN1t_tDeuEmsRUsoyG83frY4"
Read reviews:
goplaces reviews "ChIJN1t_tDeuEmsRUsoyG83frY4"
Search with coordinates:
goplaces search "ramen" --lat 25.0478 --lng 121.5319 --radius 1000
Rules
- Always check if CLI is installed first:
which goplaces - If not installed, show the install command and stop
- Always check that
GOOGLE_PLACES_API_KEYis set:[[ -z "$GOOGLE_PLACES_API_KEY" ]] && echo "API key not set" - Never print the API key value in output
- When listing results, show: name, rating, address, open status — limit to top 5 results by default
- For details, summarize: address, phone, hours, website, rating
- For reviews, show top 3 reviews (author, rating, snippet) — save full reviews to workspace/ if requested
- If location is ambiguous, ask the user to clarify before searching
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: claude-world
- Source: claude-world/claude-agent
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.