# Places

> >

- **Type:** Skill
- **Install:** `agentstack add skill-claude-world-claude-agent-places`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [claude-world](https://agentstack.voostack.com/s/claude-world)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [claude-world](https://github.com/claude-world)
- **Source:** https://github.com/claude-world/claude-agent/tree/main/.claude/skills/places

## Install

```sh
agentstack add skill-claude-world-claude-agent-places
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## 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

```bash
brew install steipete/tap/goplaces
```

**Set up your API key:**
```bash
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:**
```bash
goplaces search "coffee shop" --near "Taipei 101" --open-now
```

**Get full details for a place:**
```bash
goplaces details "ChIJN1t_tDeuEmsRUsoyG83frY4"
```

**Read reviews:**
```bash
goplaces reviews "ChIJN1t_tDeuEmsRUsoyG83frY4"
```

**Search with coordinates:**
```bash
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.

- **Author:** [claude-world](https://github.com/claude-world)
- **Source:** [claude-world/claude-agent](https://github.com/claude-world/claude-agent)
- **License:** MIT

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

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-claude-world-claude-agent-places
- Seller: https://agentstack.voostack.com/s/claude-world
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
