Skillsbench search-accommodations

Lookup accommodations by city from the bundled dataset. Use this skill when you need to recommend places to stay in a given city or filter lodging options before building an itinerary.

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-accommodations" ~/.claude/skills/benchflow-ai-skillsbench-search-accommodations && rm -rf "$T"
manifest: tasks/travel-planning/environment/skills/search-accommodations/SKILL.md
source content

Search Accommodations

Find the accommodations for a specific city. Notice all the

Installation

pip install pandas

Quick Start

from search_accommodations import Accommodations

acc = Accommodations()
result = acc.run("Seattle")
print(result)