Install
openclaw skills install whotels-booking搜索万豪集团旗下W酒店并返回实时价格与预订链接,支持酒店详情查询和套餐优惠搜索。当用户需要预订W酒店、查找W Hotels酒店价格时使用
openclaw skills install whotels-booking正确做法:脚本输出什么,就原样展示什么。只做格式排版,不修改任何数据。
搜索W酒店酒店,返回价格、星级、地址、附近地标和预订链接。自动注入品牌关键词"W酒店",用户只需提供城市。
参数:
▸ dest_name(string,✅必填):目的地城市/区域,如"上海""深圳""三亚"
▸ check_in(string,可选):入住日期 YYYY-MM-DD
▸ check_out(string,可选):退房日期 YYYY-MM-DD
▸ keyword(string,可选):额外关键词,如"虹桥""度假"
▸ max_price(int,可选):最高价格/晚
▸ sort(string,可选):排序 rate_desc/price_asc/price_desc/distance_asc
▸ limit(int,可选):返回数量,默认10
python scripts/whotels_hotel.py search '{"dest_name":"上海"}'
查询某家W酒店酒店的详细信息,包括周边交通/景点/美食、酒店设施、政策、房型等。
参数:
▸ shid(string/int,✅推荐):酒店ID,从搜索结果获取
▸ hotel_name(string,可选):酒店名称(备选定位方式)
▸ review_keyword(string,可选):评价关键词过滤
python scripts/whotels_hotel.py detail '{"shid":"50013131"}'
搜索W酒店酒店套餐优惠(含早/连住/门票等打包产品),通常比单订更优惠。
参数:
▸ keyword(string,可选):搜索关键词,如"上海""三亚度假"
▸ hotel_name(string,可选):酒店名称
▸ province_or_city(string,可选):省份或城市
▸ sort(string,可选):排序方式
▸ limit(int,可选):返回数量,默认10
python scripts/whotels_hotel.py packages '{"keyword":"上海"}'
python scripts/whotels_hotel.py search '{"dest_name":"上海"}'python scripts/whotels_hotel.py search '{"dest_name":"上海","max_price":800,"sort":"price_asc"}'python scripts/whotels_hotel.py detail '{"shid":"50013131"}'python scripts/whotels_hotel.py packages '{"keyword":"上海"}'