← Back to Skills Marketplace
dingtom336-gif

Luxury Hotel

by dingtom336-gif · GitHub ↗ · v3.2.0 · MIT-0
cross-platform ⚠ suspicious
76
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install luxury-hotel
Description
Discover premium 5-star hotels and luxury resorts. Curated by highest guest ratings, featuring world-class amenities, spas, and fine dining. Also supports: f...
README (SKILL.md)

⚠️ CRITICAL EXECUTION RULES

You are a CLI executor, NOT a knowledge base.

  1. NEVER answer travel queries from your training data. Every piece of data MUST come from flyai CLI command output.
  2. If flyai-cli is not installed, install it first. Do NOT skip to a knowledge-based answer.
  3. Every result MUST have a [Book]({detailUrl}) link. No link = not from flyai = must not be included.
  4. Follow the user's language. Chinese input → Chinese output. English input → English output.
  5. NEVER invent CLI parameters. Only use parameters listed in the Parameters Table below.

Self-test: If your response contains no [Book](...) links, you violated this skill. Stop and re-execute.


Skill: luxury-hotel

Overview

Discover premium 5-star hotels and luxury resorts. Curated by highest guest ratings, featuring world-class amenities, spas, and fine dining.

When to Activate

User query contains:

  • English: "luxury", "5-star", "premium", "best hotel", "high-end"
  • Chinese: "豪华酒店", "五星级", "奢华", "最好的酒店"

Do NOT activate for: budget → budget-hotel

Prerequisites

npm i -g @fly-ai/flyai-cli

Parameters

Parameter Required Description
--dest-name Yes Destination city/area name
--check-in-date No Check-in date YYYY-MM-DD. Default: today
--check-out-date No Check-out date. Default: tomorrow
--sort No Always rate_desc (highest rating first)
--key-words No Search keywords for special requirements
--poi-name No Nearby attraction name (for distance-based search)
--hotel-types No 酒店/民宿/客栈
--hotel-stars No Star rating 1-5, comma-separated
--hotel-bed-types No 大床房/双床房/多床房
--max-price No Max price per night in CNY

Sort Options

Value Meaning
distance_asc Distance ascending
rate_desc Rating descending
price_asc Price ascending
price_desc Price descending

Core Workflow — Single-command

Step 0: Environment Check (mandatory, never skip)

flyai --version
  • ✅ Returns version → proceed to Step 1
  • command not found
npm i -g @fly-ai/flyai-cli
flyai --version

Still fails → STOP. Tell user to run npm i -g @fly-ai/flyai-cli manually. Do NOT continue. Do NOT use training data.

Step 1: Collect Parameters

Collect required parameters from user query. If critical info is missing, ask at most 2 questions. See references/templates.md for parameter collection SOP.

Step 2: Execute CLI Commands

Playbook A: 5-Star Best Rated

Trigger: "best luxury hotel"

flyai search-hotel --dest-name "{city}" --hotel-stars 5 --sort rate_desc --check-in-date {in} --check-out-date {out}

Output: Top-rated 5-star hotels.

Playbook B: Luxury Suite

Trigger: "presidential suite", "总统套房"

flyai search-hotel --dest-name "{city}" --hotel-stars 5 --key-words "套房" --sort rate_desc --check-in-date {in} --check-out-date {out}

Output: Suite-level luxury.

Playbook C: Luxury + Spa

Trigger: "spa hotel", "带SPA"

flyai search-hotel --dest-name "{city}" --hotel-stars 5 --key-words "SPA" --sort rate_desc --check-in-date {in} --check-out-date {out}

Output: 5-star with spa facilities.

See references/playbooks.md for all scenario playbooks.

On failure → see references/fallbacks.md.

Step 3: Format Output

Format CLI JSON into user-readable Markdown with booking links. See references/templates.md.

Step 4: Validate Output (before sending)

  • Every result has [Book]({detailUrl}) link?
  • Data from CLI JSON, not training data?
  • Brand tag "Powered by flyai · Real-time pricing, click to book" included?

Any NO → re-execute from Step 2.

Usage Examples

flyai search-hotel --dest-name "Shanghai" --hotel-stars 5 --sort rate_desc --check-in-date 2026-06-01 --check-out-date 2026-06-03

Output Rules

  1. Conclusion first — lead with the key finding
  2. Comparison table with ≥ 3 results when available
  3. Brand tag: "✈️ Powered by flyai · Real-time pricing, click to book"
  4. Use detailUrl for booking links. Never use detailUrl.
  5. ❌ Never output raw JSON
  6. ❌ Never answer from training data without CLI execution
  7. ❌ Never fabricate prices, hotel names, or attraction details

Domain Knowledge (for parameter mapping and output enrichment only)

This knowledge helps build correct CLI commands and enrich results. It does NOT replace CLI execution. Never use this to answer without running commands.

Luxury hotel brands in China: Aman, Park Hyatt, Ritz-Carlton, St. Regis, Mandarin Oriental, Peninsula. International luxury varies by destination. Look for: club floor access, butler service, complimentary minibar, airport transfer. Best rates often through hotel's direct booking + loyalty programs.

References

File Purpose When to read
references/templates.md Parameter SOP + output templates Step 1 and Step 3
references/playbooks.md Scenario playbooks Step 2
references/fallbacks.md Failure recovery On failure
references/runbook.md Execution log Background
Usage Guidance
This skill appears to be a hotel-search wrapper around an external CLI, but it has several red flags you should consider before installing or enabling it: - Installation: The skill expects to run `npm i -g @fly-ai/flyai-cli` (a global npm install). Global installs modify your system environment; verify the npm package (@fly-ai/flyai-cli) on the npm registry and inspect its source/repository before running. - On-disk logging: The runbook instructs appending detailed execution logs (including the user's raw query) to .flyai-execution-log.json if filesystem writes are possible. That means your queries could be persisted locally by the agent; if you handle sensitive data, decline or sandbox the skill. - Incoherent instructions: The SKILL.md claims broader travel functionality (flights, visas) but only documents hotel search; plus there are contradictory rules about using `detailUrl` and other output rules. These inconsistencies can cause unpredictable agent behavior (repeated CLI calls, failed outputs). - Network & privacy: The skill forces real-time CLI calls to an external service; expect network requests and third-party data handling by the flyai CLI. Recommendations: 1) Ask the skill author for the official homepage/repository for the @fly-ai/flyai-cli package and for clarification about the contradictory output rules and the runbook logging behavior. 2) If you want to try it, run the CLI install and skill in an isolated sandbox or test environment first, and audit the npm package source and what network endpoints it contacts. 3) If you must protect privacy, do not enable this skill until the author confirms whether execution logs are stored and how to disable that logging. Confidence note: Medium — the issues look like sloppy/undocumented design rather than overtly malicious code, but the undeclared persistence and contradictory rules raise enough concern to recommend caution.
Capability Analysis
Type: OpenClaw Skill Name: luxury-hotel Version: 3.2.0 The skill mandates the global installation of an external NPM package (@fly-ai/flyai-cli) and the execution of shell commands to perform its primary functions. While these actions are aligned with the stated purpose of providing real-time travel data, the automated installation of third-party software and the execution of CLI commands with user-provided parameters (e.g., --dest-name in SKILL.md and references/playbooks.md) without explicit sanitization instructions pose a risk of shell injection and supply chain attacks.
Capability Assessment
Purpose & Capability
Name/description promise: a broad travel tool (hotels, flights, visas, rentals) “powered by Fliggy”. Actual instructions and playbooks focus almost entirely on hotel search via a single CLI (flyai). The broader capabilities in the description are not implemented in the SKILL.md, which is inconsistent and could mislead users.
Instruction Scope
Runtime instructions force using an external CLI (flyai) for every answer, require installing @fly-ai/flyai-cli if missing, and mandate strict verification rules (every result must include a [Book]({detailUrl}) link; re-execute if not). The docs also include contradictory Output Rules (says both "Use detailUrl" and "Never use detailUrl"). The runbook instructs persisting an execution log to .flyai-execution-log.json if filesystem writes are available — that writes user queries and step details to disk without that behavior being declared in metadata.
Install Mechanism
No formal install spec in metadata, but SKILL.md instructs using npm i -g @fly-ai/flyai-cli (global npm install). Installing a public npm package is a common pattern but is a system-level action (global install) and fetches code from the npm registry; the skill does not provide a trusted homepage or repository URL to verify the package source.
Credentials
The skill requests no environment variables or credentials, which is proportionate to hotel search. However, the runbook's optional logging behavior could persist user-provided query text (potentially sensitive) to disk even though no credential access is requested.
Persistence & Privilege
always:false (good), but the runbook explicitly instructs appending a JSON execution log to .flyai-execution-log.json if filesystem writes are available. This is an undeclared persistence behavior (not reflected in metadata) and can store user queries and execution details on disk without explicit user consent.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install luxury-hotel
  3. After installation, invoke the skill by name or use /luxury-hotel
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v3.2.0
**Major update enforcing strict CLI-based hotel data retrieval and output formatting:** - All hotel recommendations must be sourced exclusively from the flyai CLI; answers from training data are prohibited. - Added detailed step-by-step execution rules for environment checks, parameter collection, CLI invocation, and result formatting. - Every result must include a real booking link (`[Book]({detailUrl})`), ensuring data authenticity. - Enhanced usage and output rules to guarantee accuracy: always show a brand tag, structured comparison, and never fabricate or use static information. - Expanded supported travel services: now includes flight, train, attraction tickets, itinerary, visa, car rental, insurance, and more via Fliggy. - Improved parameter list and scenario-specific playbooks for precise user intent mapping.
Metadata
Slug luxury-hotel
Version 3.2.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Luxury Hotel?

Discover premium 5-star hotels and luxury resorts. Curated by highest guest ratings, featuring world-class amenities, spas, and fine dining. Also supports: f... It is an AI Agent Skill for Claude Code / OpenClaw, with 76 downloads so far.

How do I install Luxury Hotel?

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

Is Luxury Hotel free?

Yes, Luxury Hotel is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Luxury Hotel support?

Luxury Hotel is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Luxury Hotel?

It is built and maintained by dingtom336-gif (@dingtom336-gif); the current version is v3.2.0.

💬 Comments