Install
openclaw skills install @travel-skills/marriott-hotel-bookingopenclaw skills install @travel-skills/marriott-hotel-booking正确做法:脚本输出什么,就原样展示什么。只做格式排版,不修改任何数据。
搜索万豪集团旗下酒店,返回价格、星级、地址、附近地标和预订链接。
参数:
▸ destName(string,✅必填):目的地城市/区域,如"上海""深圳""三亚"
▸ checkInDate(string,可选):入住日期 YYYY-MM-DD
▸ checkOutDate(string,可选):退房日期 YYYY-MM-DD
▸ keyword(string,可选):关键词,如"JW""丽思卡尔顿"
▸ maxPrice(int,可选):最高价格/晚
▸ sort(string,可选):排序 rate_desc/price_asc/price_desc/distance_asc
▸ limit(int,可选):返回数量,默认10
python scripts/marriott_hotel.py search '{"destName":"上海","maxPrice":1000}'
查询某家万豪酒店的详细信息,包括周边交通/景点/美食、酒店设施、政策、房型等。
参数:
▸ shid(string/int,✅推荐):酒店ID,从搜索结果获取
▸ hotelName(string,可选):酒店名称(备选定位方式)
▸ reviewKeyword(string,可选):评价关键词过滤
python scripts/marriott_hotel.py detail '{"shid":"50013131"}'
搜索万豪酒店套餐优惠(含早/连住/门票等打包产品),通常比单订更优惠。
参数:
▸ keyword(string,可选):搜索关键词,如"上海""三亚度假"
▸ hotelName(string,可选):酒店名称
▸ provinceOrCity(string,可选):省份或城市
▸ sort(string,可选):排序方式
▸ limit(int,可选):返回数量,默认10
python scripts/marriott_hotel.py packages '{"keyword":"上海"}'
python scripts/marriott_hotel.py search '{"destName":"上海"}'python scripts/marriott_hotel.py search '{"destName":"上海","maxPrice":800,"sort":"price_asc"}'python scripts/marriott_hotel.py detail '{"shid":"50013131"}'python scripts/marriott_hotel.py packages '{"keyword":"上海万豪"}'