← Back to Skills Marketplace
l18784175468-oss

aigo hotel search

by qkzy-oss · GitHub ↗ · v1.0.9
cross-platform ✓ Security Clean
553
Downloads
0
Stars
1
Active Installs
11
Versions
Install in OpenClaw
/install gigohotel
Description
智能酒店搜索,支持地点、日期、星级、预算筛选
README (SKILL.md)

\r \r

AIGo Hotel Search\r

\r

Description\r

基于 AIGoHotel MCP 的智能酒店搜索技能,开箱即用。\r \r

Credentials\r

本技能使用 AIGoHotel 官方提供的公共 API Key,无需用户配置。\r \r

Public API Key Declaration\r

  • 内置 Key (mcp_7d31559a07884aa99be1fa22cdbe828a) 是 AIGoHotel 官方提供的公共访问密钥\r
  • 此 Key 专为社区开发者设计,非机密凭证\r
  • 公共 Key 有速率限制,如需更高配额请申请专属 Key\r
  • 申请地址: https://mcp.aigohotel.com/apply\r \r

MCP Configuration\r

{\r
  "mcpServers": {\r
    "aigohotel-mcp": {\r
      "url": "https://mcp.aigohotel.com/mcp",\r
      "type": "http",\r
      "headers": {\r
        "Authorization": "Bearer mcp_7d31559a07884aa99be1fa22cdbe828a"\r
      }\r
    }\r
  }\r
}\r
```\r
## Data Transmission Policy\r
\r
### 允许传输\r
仅限酒店搜索结构化参数:\r
- 地点、日期、人数、星级、预算、标签\r
\r
### 禁止传输\r
- 用户个人信息(姓名、电话、邮箱)\r
- 本地文件、系统信息\r
- 无关的自由文本内容\r
\r
### originQuery 处理规则\r
originQuery 参数仅应包含酒店搜索意图,代理必须:\r
- 提取搜索相关信息(地点、日期、条件)\r
- 移除任何个人身份信息 (PII)\r
- 不得直接传递用户原始输入\r
\r
代理调用工具前应过滤敏感信息。\r
\r
### 安全责任声明\r
本技能为指令型技能,不包含可执行代码。数据过滤由以下层级负责:\r
1. **代理运行时**:负责执行 PII 过滤指令\r
2. **MCP 服务端**:对请求进行安全校验\r
3. **用户**:避免在查询中输入敏感个人信息\r
\r
本技能已尽合理告知义务,实际过滤执行由代理平台保障。\r
\r
## Tools\r
- `searchHotels`: 搜索酒店\r
- `getHotelDetail`: 获取房型价格\r
- `getHotelSearchTags`: 获取筛选标签\r
\r
## Usage Examples\r
- "找北京五星酒店"\r
- "查看北京天伦王朝酒店的房型和价格"\r
- "上海1000元以内有泳池的酒店"
Usage Guidance
This skill appears to do what it says (hotel search) and doesn't ask you to provide secrets or install code, but you should: 1) Confirm the MCP endpoint (https://mcp.aigohotel.com) and the embedded key are legitimate and truly 'public' before relying on them; 2) Ensure your agent/platform actually implements the required PII-stripping (test with inputs containing names/phones to see if they are removed); 3) Avoid sending real personal data in queries (names, phones, emails, IDs); 4) If you need accountability or higher quotas, consider using your own API key rather than the embedded public key; and 5) Review any privacy policy or terms for the MCP service to understand data retention and processing.
Capability Analysis
Type: OpenClaw Skill Name: gigohotel Version: 1.0.9 The skill bundle is benign. It contains no executable code, only metadata and markdown instructions for the AI agent. Crucially, the `SKILL.md` and `prompts/search-hotels.md` files include explicit and repeated instructions for the agent to sanitize user input, remove Personal Identifiable Information (PII) like names, phone numbers, and emails, and prevent the direct transmission of raw user input. This demonstrates a strong intent to prevent prompt injection and data leakage. The API key is declared as public, and the external endpoint `https://mcp.aigohotel.com/mcp` is for the stated purpose of the hotel search functionality.
Capability Assessment
Purpose & Capability
The name/description (hotel search with filters) matches the declared tools (searchHotels, getHotelDetail, getHotelSearchTags) and there are no unrelated environment variables, binaries, or install steps requested. The embedded public MCP key and MCP URL are coherent with the described MCP-based API usage.
Instruction Scope
SKILL.md is instruction-only and confines transmitted data to structured search parameters. However, it places responsibility on the agent runtime to remove PII from originQuery and to perform filtering; if the agent implementation fails to follow that, user PII could be sent. The instructions do not request reading local files or unrelated system data.
Install Mechanism
No install spec or code files are present (instruction-only), so nothing will be written to disk or fetched during installation. This is the lowest install risk profile.
Credentials
The skill requests no user credentials or env vars. It embeds a bearer token (mcp_7d31559a...) in the SKILL.md and shows it in the MCP config; the skill claims this token is a public community API key (non-secret) which explains why no secret is requested. Verify the token truly is public and rate-limited as claimed before trusting it in production.
Persistence & Privilege
always is false and the skill is user-invocable only. The skill does not request persistent platform-level privileges, nor does it attempt to modify other skills or system-wide settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gigohotel
  3. After installation, invoke the skill by name or use /gigohotel
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.10
- Updated the API Key application URL to https://mcp.aigohotel.cn/apply. - Added instructions to verify the API Key status at https://mcp.aigohotel.cn.
v1.0.9
- Bumped version to 1.0.9. - No other changes detected.
v1.0.8
Version 1.0.8 - Added a "安全责任声明" section clarifying data security responsibilities and filtering layers. - Improved explanation of responsibility for filtering personal information and security checks. - No functional or API changes; security and documentation enhanced for greater clarity.
v1.0.7
Version 1.0.7 - Clarified data transmission policy with additional guidance for "originQuery" handling. - Added an "Execution Instructions" section to describe runtime data filtering by agents and server-side safety checks. - No code changes; documentation only.
v1.0.6
- Updated version number in SKILL.md from 1.0.0 to 1.0.6. - No other content changes made.
v1.0.5
- Clarified that the included API Key is a public, non-confidential access key for developers, not private. - Expanded documentation on the treatment and filtering requirements for the originQuery parameter to better ensure sensitive information is not transmitted. - Improved explanation of data privacy policies and agent responsibilities when handling user input. - No functional or API changes included.
v1.0.4
No functional or code changes; updated documentation for clarity and data policy. - Revised API Key description and clarified credential requirements. - Added a new section outlining data transmission policy, specifying allowed and prohibited data. - Provided detailed instructions for usage and example queries.
v1.0.3
Version 1.0.3 - No code or documentation changes detected in this release. - Functionality and features remain unchanged from the previous version.
v1.0.2
- Clarified that the built-in API Key is a public, non-confidential key authorized by AIGoHotel for community use. - Improved documentation about API Key source, purpose, and instructions for applying for a private key. - No changes to app logic or functionality.
v1.0.1
- Updated skill name to "AIGo Hotel Search" and revised the description for clarity. - Improved documentation with credential information and instructions about the built-in public API Key. - Added guidance for users who require a dedicated API Key or higher usage limits. - Updated tags for better relevance (added "booking").
v1.0.0
AIGoHotel 酒店搜索助手 1.0.0 初始版本上线: - 新增按地点、日期、星级、预算、标签等多条件智能搜索酒店功能 - 支持查询房型与价格详情 - 集成 AIGoHotel MCP 后台服务
Metadata
Slug gigohotel
Version 1.0.9
License
All-time Installs 1
Active Installs 1
Total Versions 11
Frequently Asked Questions

What is aigo hotel search?

智能酒店搜索,支持地点、日期、星级、预算筛选. It is an AI Agent Skill for Claude Code / OpenClaw, with 553 downloads so far.

How do I install aigo hotel search?

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

Is aigo hotel search free?

Yes, aigo hotel search is completely free (open-source). You can download, install and use it at no cost.

Which platforms does aigo hotel search support?

aigo hotel search is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created aigo hotel search?

It is built and maintained by qkzy-oss (@l18784175468-oss); the current version is v1.0.9.

💬 Comments