Skillsbench search-attractions
Retrieve attractions by city from the bundled dataset. Use this skill when surfacing points of interest or building sightseeing suggestions for a destination.
install
source · Clone the upstream repo
git clone https://github.com/benchflow-ai/skillsbench
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/benchflow-ai/skillsbench "$T" && mkdir -p ~/.claude/skills && cp -r "$T/tasks/travel-planning/environment/skills/search-attractions" ~/.claude/skills/benchflow-ai-skillsbench-search-attractions && rm -rf "$T"
manifest:
tasks/travel-planning/environment/skills/search-attractions/SKILL.mdsource content
Search Attractions
Query attractions for a given city.
Installation
pip install pandas
Quick Start
from search_attractions import Attractions attractions = Attractions() print(attractions.run("New York"))