Install
$ agentstack add skill-shlomsh-hermes-travel-skills-google-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
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)
- Plan your execution to meet the exact request in the absolute minimum number of steps.
- Craft the perfect
searchquery on the first try. - 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. - Do NOT run the
detailscommand. Thesearchcommand already provides theeditorialSummaryand ratings, so runningdetailsin an online context wastes API tokens and latency.
Flavor: RESEARCH (Deep Dive / Thorough)
- You may execute multiple
searchqueries to compare different areas or keywords. - You may use the
detailscommand if you need exhaustive information (like full reviews or extensive opening hours) not covered by thesearchsummary.
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:
- Name
- Rating & Number of Reviewers
- Editorial Summary (use the "About" text directly from the script output)
- 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.
- Author: shlomsh
- Source: shlomsh/hermes-travel-skills
- 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.