# Send Daolv Hotel Booking to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "daolv-hotel-booking",
    "name": "Daolv Hotel Booking",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/cnChenKai/daolv-hotel-booking",
    "canonicalUrl": "https://clawhub.ai/cnChenKai/daolv-hotel-booking",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/daolv-hotel-booking",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=daolv-hotel-booking",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/aigohotel-mcp-spec.md",
      "references/distribution.md",
      "references/mcp-client-config.json",
      "references/promo-copy.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "daolv-hotel-booking",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T08:28:24.544Z",
      "expiresAt": "2026-05-09T08:28:24.544Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=daolv-hotel-booking",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=daolv-hotel-booking",
        "contentDisposition": "attachment; filename=\"daolv-hotel-booking-0.1.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "daolv-hotel-booking"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/daolv-hotel-booking"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/daolv-hotel-booking",
    "downloadUrl": "https://openagent3.xyz/downloads/daolv-hotel-booking",
    "agentUrl": "https://openagent3.xyz/skills/daolv-hotel-booking/agent",
    "manifestUrl": "https://openagent3.xyz/skills/daolv-hotel-booking/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/daolv-hotel-booking/agent.md"
  }
}
```
## Documentation

### Daolv Hotel Booking

Provide reliable hotel planning and booking support with structured MCP calls and decision-ready outputs.

### Workflow

Capture booking intent before calling tools

Extract: destination, check-in date, nights, adults/children, room count, budget, purpose (business/family/leisure), required amenities, preferred/avoided brands.
If key constraints are missing, ask only the minimum follow-up questions.

Prime tags once per task

Call ai-go-hotel.getHotelSearchTags once.
Cache returned tags for the rest of the conversation.
Use those tags to build hotelTags.requiredTags, preferredTags, excludedTags, and optional budget constraints.

Search hotels with normalized parameters

Call ai-go-hotel.searchHotels with:

place
placeType
originQuery
optional checkInDate, stayNights, adultCount, size, starRatings, hotelTags, countryCode, distanceInMeter, withHotelAmenities, language


Prefer size=8-12 for first pass; narrow to top 3-5 in final output.
Respect live schema behavior:

checkInDate invalid/past/empty may fallback to tomorrow
price is an object (use price.lowestPrice + price.currency)
some fields can be null or missing


placeType can be normalized from user language:

城市/city → 城市
机场/airport → 机场
景点/attraction → 景点
火车站/railway station → 火车站
地铁站/metro → 地铁站
酒店/hotel → 酒店

Enrich finalists with room-level details

For each shortlisted option, call ai-go-hotel.getHotelDetail (prefer hotelId when available).
Pass dates with checkInDate / checkOutDate format YYYY-MM-DD.
Handle fallback and edge behavior:

invalid/empty dates may auto-correct
failures may return plain text (not structured JSON)
roomRatePlans can be very large; render only top rows by relevance/price


Extract actionable room/price data, cancellation policy, breakfast inclusion, and important constraints.

Return decision-ready output

Always provide:

Recommended option (best fit)
Two alternatives
Why each matches constraints
Trade-offs (price vs distance vs amenities)
Booking handoff steps (what user should confirm next)

### Output Template

Use concise bullet format:

行程信息: 目的地 / 日期 / 人数 / 预算 / 关键偏好
推荐酒店（首选）

酒店名
预估价格（每晚 & 总价）
位置与交通
房型亮点
取消与早餐政策
推荐理由


备选 1 / 备选 2（同结构）
决策建议: 适合人群与风险提示
下一步确认: 仅列 2-4 个必要确认项

### Quality Bar

Prefer concrete numbers over vague wording.
Do not invent unavailable policies/prices.
If data is missing or stale, say so explicitly and suggest a refresh query.
Keep choices constrained: no long dump lists.
Avoid credential exposure or config leakage.

### MCP Preset Config

Embedded MCP preset is included at:

references/mcp-client-config.json


It targets https://mcp.aigohotel.com/mcp using streamable_http and prefilled Authorization header.

### Platform Distribution

When user asks to publish/distribute this skill, follow the checklist in:

references/distribution.md
references/promo-copy.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: cnChenKai
- Version: 0.1.3
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T08:28:24.544Z
- Expires at: 2026-05-09T08:28:24.544Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/daolv-hotel-booking)
- [Send to Agent page](https://openagent3.xyz/skills/daolv-hotel-booking/agent)
- [JSON manifest](https://openagent3.xyz/skills/daolv-hotel-booking/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/daolv-hotel-booking/agent.md)
- [Download page](https://openagent3.xyz/downloads/daolv-hotel-booking)