← Back to Skills Marketplace
travel-skills

丽思卡尔顿酒店查询与预订

by 旅行技能 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
44
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ritz-carlton-hotel-booking
Description
搜索万豪集团旗下丽思卡尔顿酒店并返回实时价格与预订链接,支持酒店详情查询和套餐优惠搜索。当用户需要预订丽思卡尔顿酒店、查找Ritz-Carlton酒店价格时使用
README (SKILL.md)

丽思卡尔顿酒店查询与预订

任务目标

  • 本技能用于搜索丽思卡尔顿酒店,返回真实价格和可预订链接,并支持查询酒店详情和套餐优惠
  • 触发条件:当用户提到丽思卡尔顿/Ritz-Carlton/丽思时
  • 数据源:飞猪官方商品库万豪专区,自动过滤丽思卡尔顿品牌,返回真实价格和可预订链接

🚫 绝对禁止

  1. 禁止编造任何数据 — 酒店名称、价格、评分、星级必须100%来自脚本输出
  2. 禁止添加脚本未返回的信息 — 脚本没返回评分就不能写评分,没返回健身房就不能说"有健身房"
  3. 禁止替换或筛选脚本结果 — AI不得二次过滤或替换脚本返回的酒店
  4. 禁止美化数据 — 不得将¥1580改成¥980,不得添加虚假评分
  5. 禁止用自身知识补充酒店 — 不得根据品牌常识推断设施,不得添加脚本未返回的酒店
  6. 禁止省略预订链接 — 脚本返回的detailUrl必须完整展示
  7. 禁止混合数据 — 不得将脚本数据与网上搜索数据混合展示

正确做法:脚本输出什么,就原样展示什么。只做格式排版,不修改任何数据。

🛠 工具

1. search - 丽思卡尔顿酒店搜索

搜索丽思卡尔顿酒店,返回价格、星级、地址、附近地标和预订链接。自动注入品牌关键词"丽思卡尔顿",用户只需提供城市。

参数: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/ritz_carlton_hotel.py search '{"dest_name":"上海"}'

2. detail - 丽思卡尔顿酒店详情

查询某家丽思卡尔顿酒店的详细信息,包括周边交通/景点/美食、酒店设施、政策、房型等。

参数:shid(string/int,✅推荐):酒店ID,从搜索结果获取 ▸ hotel_name(string,可选):酒店名称(备选定位方式) ▸ review_keyword(string,可选):评价关键词过滤

python scripts/ritz_carlton_hotel.py detail '{"shid":"50013131"}'

3. packages - 丽思卡尔顿套餐搜索

搜索丽思卡尔顿酒店套餐优惠(含早/连住/门票等打包产品),通常比单订更优惠。

参数:keyword(string,可选):搜索关键词,如"上海""三亚度假" ▸ hotel_name(string,可选):酒店名称 ▸ province_or_city(string,可选):省份或城市 ▸ sort(string,可选):排序方式 ▸ limit(int,可选):返回数量,默认10

python scripts/ritz_carlton_hotel.py packages '{"keyword":"上海"}'

执行流程

  1. 用户提到丽思卡尔顿 → 调用 search 搜索酒店列表
  2. 用户想了解某家酒店详情(交通/设施/房型) → 从搜索结果获取shid,调用 detail
  3. 用户找优惠或套餐 → 调用 packages 搜索打包产品
  4. 展示结果时,预订链接以 点击预订 格式展示
  5. 所有结果末尾标注"数据来源:飞猪官方商品库·万豪集团专区"

使用示例

示例1:搜索丽思卡尔顿酒店

  • 用户:"上海有什么丽思卡尔顿酒店"
  • 调用:python scripts/ritz_carlton_hotel.py search '{"dest_name":"上海"}'

示例2:预算筛选

  • 用户:"上海800块以内的丽思卡尔顿"
  • 调用:python scripts/ritz_carlton_hotel.py search '{"dest_name":"上海","max_price":800,"sort":"price_asc"}'

示例3:酒店详情

  • 用户:"上海丽思卡尔顿怎么样"
  • 调用:python scripts/ritz_carlton_hotel.py detail '{"shid":"50013131"}'

示例4:套餐优惠

  • 用户:"丽思卡尔顿有什么优惠套餐"
  • 调用:python scripts/ritz_carlton_hotel.py packages '{"keyword":"上海"}'
Usage Guidance
Install only if you are comfortable sending Ritz-Carlton hotel searches, destinations, dates, and hotel IDs to the skill’s external proxy service. Treat the booking links as informational and complete any purchase manually on the linked site.
Capability Assessment
Purpose & Capability
The stated purpose is hotel search, details, package lookup, pricing, and booking links; the script implements only those read-only query functions.
Instruction Scope
The trigger includes the short term “丽思,” which can be ambiguous, but the rest of the instructions are tightly focused on Ritz-Carlton hotel queries and require displaying script output rather than inventing data.
Install Mechanism
No package installation, dependency download, shell bootstrap, or installer behavior is present; the artifact contains one markdown file and one standard-library Python script.
Credentials
Network access to a Tencent SCF proxy is expected for live hotel data, but users should understand their destination, dates, hotel identifiers, and keywords are sent to that service.
Persistence & Privilege
No persistence, background execution, privilege escalation, local file mutation, credential store access, or account mutation is present.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ritz-carlton-hotel-booking
  3. After installation, invoke the skill by name or use /ritz-carlton-hotel-booking
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of “丽思卡尔顿酒店查询与预订” skill. - Enables real-time search of Ritz-Carlton hotels with accurate pricing and booking links. - Supports detailed hotel info queries and package deal searches. - Strictly displays only data returned from the script; no fabricated or supplemented information. - Results sourced exclusively from Feizhu’s Marriott section.
Metadata
Slug ritz-carlton-hotel-booking
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 丽思卡尔顿酒店查询与预订?

搜索万豪集团旗下丽思卡尔顿酒店并返回实时价格与预订链接,支持酒店详情查询和套餐优惠搜索。当用户需要预订丽思卡尔顿酒店、查找Ritz-Carlton酒店价格时使用. It is an AI Agent Skill for Claude Code / OpenClaw, with 44 downloads so far.

How do I install 丽思卡尔顿酒店查询与预订?

Run "/install ritz-carlton-hotel-booking" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 丽思卡尔顿酒店查询与预订 free?

Yes, 丽思卡尔顿酒店查询与预订 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 丽思卡尔顿酒店查询与预订 support?

丽思卡尔顿酒店查询与预订 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 丽思卡尔顿酒店查询与预订?

It is built and maintained by 旅行技能 (@travel-skills); the current version is v1.0.0.

💬 Comments