Install
openclaw skills install hotelLocal-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.
openclaw skills install hotelpython3All data is stored locally only under:
~/.openclaw/workspace/memory/hotel/trips.json~/.openclaw/workspace/memory/hotel/hotels.json~/.openclaw/workspace/memory/hotel/preferences.jsonNo external sync. No booking APIs. No credentials required.
trip: destination, dates, budget, purpose, constraintshotel: property candidate with price, area, amenities, refund policy, notespreference: reusable user preferences like breakfast, walkability, quiet rooms, flexible cancellationadd_trip.py --destination "Tokyo" --check_in 2026-04-10 --check_out 2026-04-13 --budget_total 450add_hotel.py --trip_id TRP-XXXX --name "Hotel A" --nightly_price 120 --area "Shinjuku" --amenities wifi,breakfastcompare_hotels.py --trip_id TRP-XXXXshortlist.py --trip_id TRP-XXXX --top 3book_ready.py --hotel_id HOT-XXXXsave_preference.py --key breakfast --value required| Script | Purpose |
|---|---|
init_storage.py | Initialize local storage |
add_trip.py | Create a new trip |
add_hotel.py | Add a hotel candidate |
compare_hotels.py | Compare hotel options for a trip |
shortlist.py | Surface best-fit hotels |
book_ready.py | Check if a hotel is ready to book |
save_preference.py | Save reusable hotel preferences |