AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Places

skill-claude-world-claude-agent-places · by claude-world

>

No reviews yet
0 installs
23 views
0.0% view→install

Install

$ agentstack add skill-claude-world-claude-agent-places

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-claude-world-claude-agent-places)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Places? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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_KEY is 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.