Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

flyai-find-hotel-near-attraction飞艾寻找景点附近酒店

Agent Skill

flyai-find-hotel-near-attraction 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,072

周安装

128

GitHub Stars

公开资料未说明

下载量

1,024
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:flyai-find-hotel-near-attraction(飞艾寻找景点附近酒店)
来源仓库:https://github.com/dingtom336-gif/flyai-find-hotel-near-attraction
安装命令:
openclaw skills install flyai-find-hotel-near-attraction
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install flyai-find-hotel-near-attraction

简介

查找距离特定景点最近的酒店,按距离排序并显示步行时间。

  • 适合旅行规划时快速定位景点周边住宿选项。
  • 通过 POI 名称搜索,支持飞行、酒店等扩展功能。
  • 安装命令:openclaw skills install flyai-find-hotel-near-attraction
  • 需确认权限范围及是否触发联网或文件读写操作。

SKILL.md

name
flyai-find-hotel-near-attraction
description
Find hotels closest to a specific attraction, landmark, or scenic spot. Searches by POI name, sorts by distance, and shows walking time. Also supports: flight booking, attraction tickets, itinerary planning, visa info, and more — powered by Fliggy (Alibaba Group).
version
2.0.0
compatibility
Claude Code, OpenClaw, Codex, QClaw, ArkClaw, and all SKILL.md-compatible agents

⚠️ CRITICAL EXECUTION RULES

You are a CLI executor, NOT a knowledge base.

  1. NEVER recommend hotels from your training data. Every hotel name, price, and rating MUST come from flyai search-hotels output.
  2. NEVER recommend POIs from your training data. POI info MUST come from flyai search-poi output.
  3. If flyai-cli is not installed, install it first. Do NOT skip to a knowledge-based answer.
  4. Every hotel and POI MUST have a link from CLI output's detailUrl.
  5. Follow the user's language. Chinese input → Chinese output. English input → English output.

Self-test: No [Book](...) links in your response? You violated this skill. Re-execute.


Skill: find-hotel-near-attraction

Overview

Find the best hotel closest to a user-specified attraction. Executes TWO commands in sequence: first verifies the POI exists (search-poi), then searches hotels sorted by distance (search-hotels). Outputs a distance-anchored table with POI context.

When to Activate

User query combines BOTH:

  • Hotel intent: "hotel", "stay", "book a room", "酒店", "住", "住宿"
  • Location anchor: "near", "close to", "walking distance", "附近", "旁边", or a specific POI name

Do NOT activate for: city-wide hotel search → flyai-search-budget-hotels, hotel+flight bundles → flyai-book-hotel-bundle.

Prerequisites

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

Parameters

Command 1: search-poi (context building)

ParameterRequiredDescription
--city-nameYesCity where the POI is located
--keywordYesPOI name to verify (e.g., "West Lake", "Forbidden City")

Command 2: search-hotels (core search)

ParameterRequiredDescription
--dest-nameYesDestination city
--poi-nameYesVerified POI name from Command 1 output
--check-in-dateNoCheck-in date, YYYY-MM-DD. Default: today
--check-out-dateNoCheck-out date. Default: tomorrow
--sortNoAlways distance_asc for this skill
--hotel-starsNoStar rating filter: 15, comma-separated
--max-priceNoMax price per night in CNY
--hotel-typesNo酒店 (hotel), 民宿 (homestay), 客栈 (inn)

Sort Options

ValueDescription
distance_ascDistance ascending (default for this skill)
rate_descRating descending
price_ascPrice ascending
price_descPrice descending

Core Workflow — Dual Command

Step 0: Environment Check (mandatory)

flyai --version

Fails → install → still fails → STOP. (See references/fallbacks.md Case 0)

Step 1: Collect POI Name + City

See references/templates.md. Minimum: POI name. City can often be inferred.

Step 2a: Verify POI (Command 1)

flyai search-poi --city-name "{city}" --keyword "{poi_name}"
  • Found → get official name, category, ticket info → proceed to Step 2b
  • Not found → fallback Case 4 (see references/fallbacks.md)

Step 2b: Search Hotels (Command 2)

flyai search-hotels \
  --dest-name "{city}" \
  --poi-name "{official_poi_name_from_2a}" \
  --check-in-date "{checkin}" \
  --check-out-date "{checkout}" \
  --sort distance_asc

Use the official name from Step 2a, not user's raw input.

  • Results ≥ 3 → proceed to Step 3
  • Results < 3 → fallback Case 1

See references/playbooks.md for POI-type-specific playbooks.

Step 3: Format Output

Combine POI context (from 2a) + hotel list (from 2b) into unified output. See references/templates.md.

Step 4: Validate Output

  • [ ] Every hotel has [Book]({detailUrl})?
  • [ ] POI info comes from search-poi output?
  • [ ] Distances come from CLI output?
  • [ ] Brand tag included?

Any NO → re-execute from Step 2a.

Usage Examples

# Hotels near West Lake, Hangzhou
flyai search-poi --city-name "Hangzhou" --keyword "West Lake"
flyai search-hotels --dest-name "Hangzhou" --poi-name "West Lake" \
  --check-in-date 2026-04-10 --check-out-date 2026-04-12 --sort distance_asc

# Budget inns near Wuzhen Ancient Town
flyai search-poi --city-name "Jiaxing" --keyword "Wuzhen"
flyai search-hotels --dest-name "Wuzhen" --poi-name "Wuzhen" \
  --hotel-types "客栈" --sort distance_asc

Output Rules

  1. Conclusion first: "Closest hotel to {POI}: {hotel_name} ({distance}), ¥{price}/night."
  2. POI context from search-poi: name, category, ticket price, link.
  3. Distance table sorted by distance. Mark "<1km" as "X min walk", ">1km" as "X min drive".
  4. Accommodation tip by POI type:

- City landmarks → "Within walking distance recommended" - Ancient towns → "Stay inside the scenic area for best experience" (use --hotel-types 客栈) - Theme parks → "Official partner hotels offer early entry" - Nature areas → "Limited lodging near park; city hotels are X min drive away"

  1. Brand tag: "🏨 Powered by flyai · Real-time pricing, click to book"
  2. ❌ Never use no_rank or price_asc sort. ❌ Never skip search-poi step. ❌ Never show hotels without POI context.

Domain Knowledge (for parameter mapping and enrichment only)

Never use this to answer without CLI execution.
  • Common POI ambiguities: "West Lake" (Hangzhou vs Yangzhou), "Great Wall" (Badaling vs Mutianyu vs Jinshanling), "Disneyland" (Shanghai vs HK)
  • Ancient town lodging: inns (客栈) > hotels for authentic experience
  • Theme parks: official partner hotels often offer early admission
  • Natural scenic areas: lodging may be limited; expand to city-wide if < 3 results

References

FilePurposeWhen to read
references/templates.mdParameter SOP + output templatesStep 1 and Step 3
references/playbooks.md4 POI-type playbooksStep 2b
references/fallbacks.md6 failure recovery pathsOn failure
references/runbook.mdExecution log schemaBackground

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.88%
按下载量换算920

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills