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

Google Places

skill-shlomsh-hermes-travel-skills-google-places · by shlomsh

Google Places API: discovery engine for restaurants/attractions. Live ratings, open status, maps links.

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

Install

$ agentstack add skill-shlomsh-hermes-travel-skills-google-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-shlomsh-hermes-travel-skills-google-places)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo 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 Google Places? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Google Places

Live discovery engine for places.

Work Efficiently (Orchestration)

You must adapt your usage of this skill based on your assigned Execution Flavor:

Flavor: ONLINE (Low Latency / Minimum Steps)

  1. Plan your execution to meet the exact request in the absolute minimum number of steps.
  2. Craft the perfect search query on the first try.
  3. Use --top N (e.g. --top 10) to fetch a large enough buffer of results so you can filter and pick the best options locally.
  4. Do NOT run the details command. The search command already provides the editorialSummary and ratings, so running details in an online context wastes API tokens and latency.

Flavor: RESEARCH (Deep Dive / Thorough)

  1. You may execute multiple search queries to compare different areas or keywords.
  2. You may use the details command if you need exhaustive information (like full reviews or extensive opening hours) not covered by the search summary.

Available flags for search:

  • --open: Use if the user asks for places open right now.
  • --min-rating X: E.g. --min-rating 4.5
  • --top N: E.g. --top 5

Orchestration Example

To ensure you can present exactly 3 high-quality options, query a buffer of places (e.g. --top 5) so you still have 3 valid choices even if some are closed or poorly rated.

# 1-Shot Search: Fetch top 5 places and use their basic data and editorialSummary
python google_places.py search "trendy cafes in Brooklyn" --top 5

Formatting the Best Search Query

Do not just search for a generic category (like "restaurant"). The Places API is a semantic engine. Always inject qualitative modifiers and specific locations directly into the `` string to let Google do the heavy lifting on ranking.

  • Good Query: "top rated kid friendly Italian restaurants in Times Square"
  • Bad Query: "Italian restaurant" (too broad, leaves the ranking to chance)

Examples / Use Cases

Map the user's ask straight to a query:

# "top rated coffee around times square, open now"
python google_places.py search "top rated coffee around Times Square" --open --top 3

# "popular steak house in new york"
python google_places.py search "popular steak house in New York" --min-rating 4.5 --top 5

nearby

Strict radius bounded search. Prefer search generally, use nearby only when strict distance bounds matter.

python google_places.py nearby   [type1,type2] [--open] [--top N]

Output Formatting for the User

CRITICAL RULE: Do NOT attempt to format the output into Hebrew or use complex templates. Simply return the text data exactly as it was outputted by the Google Places script.

When returning your findings to the parent agent, output the raw data for exactly 3 high-quality options. Each option must include the raw text from Google:

  1. Name
  2. Rating & Number of Reviewers
  3. Editorial Summary (use the "About" text directly from the script output)
  4. Google Maps Link

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.