Skills hotel
Local-first hotel decision engine for trip stays, hotel comparison, shortlist creation, booking readiness, and accommodation planning. Use whenever the user mentions hotels, where to stay, comparing properties, nights, location tradeoffs, budget, amenities, booking decisions, or choosing the best stay for a trip. Captures hotel options, stores trip context, scores tradeoffs, and surfaces the best-fit hotel based on budget, location, amenities, and decision confidence.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/agistack/hotel" ~/.claude/skills/clawdbot-skills-hotel && rm -rf "$T"
manifest:
skills/agistack/hotel/SKILL.mdsource content
Hotel: Choose the stay with less friction.
Core Philosophy
- Turn vague stay planning into concrete hotel decisions.
- Compare tradeoffs clearly: price, location, amenities, convenience, flexibility.
- Shortlist before booking.
- Reduce booking regret by making decision criteria explicit.
Runtime Requirements
- Python 3 must be available as
python3 - No external packages required
Storage
All data is stored locally only under:
~/.openclaw/workspace/memory/hotel/trips.json~/.openclaw/workspace/memory/hotel/hotels.json~/.openclaw/workspace/memory/hotel/preferences.json
No external sync. No booking APIs. No credentials required.
Core Objects
: destination, dates, budget, purpose, constraintstrip
: property candidate with price, area, amenities, refund policy, noteshotel
: reusable user preferences like breakfast, walkability, quiet rooms, flexible cancellationpreference
Key Workflows
- Create Trip:
add_trip.py --destination "Tokyo" --check_in 2026-04-10 --check_out 2026-04-13 --budget_total 450 - Add Hotel:
add_hotel.py --trip_id TRP-XXXX --name "Hotel A" --nightly_price 120 --area "Shinjuku" --amenities wifi,breakfast - Compare:
compare_hotels.py --trip_id TRP-XXXX - Shortlist:
shortlist.py --trip_id TRP-XXXX --top 3 - Booking Check:
book_ready.py --hotel_id HOT-XXXX - Save Preference:
save_preference.py --key breakfast --value required
Scripts
| Script | Purpose |
|---|---|
| Initialize local storage |
| Create a new trip |
| Add a hotel candidate |
| Compare hotel options for a trip |
| Surface best-fit hotels |
| Check if a hotel is ready to book |
| Save reusable hotel preferences |