Tourmind-Booking-Skills

作者 tourmind-com已验证

AI agent skill for end-to-end hotel search and booking—compare live rates across leading OTAs and hotel suppliers, verify availability, book stays, and manage reservations, cancellations, and payments via the TourMind API.

244
Stars
56
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/tourmind-com/Tourmind-Booking-Skills

快速入门

使用 Tourmind-Booking-Skills 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

TourMind Booking Skills
Let Your Agent Book Hotels Worldwide

TourMind Booking Skills — Get Your Token

Bring Your Customers Into Intelligent Travel


Product Page | Live Demo | Company

ClawHub installs Release License



Turn any AI agent into an end-to-end hotel booking assistant—search global inventory, compare live rates across leading OTAs and hotel suppliers, verify availability, and complete booking, payment, cancellation, and order management in one conversation with TourMind.

Demo

1. Search live hotels

2. Compare real room options

3. Verify the final rate and pay

Core capabilities

  • Resolve cities, hotels, landmarks, stations, addresses, ski areas, and other POIs without inventing coordinates.
  • Search up to 20 hotel candidates, query matching live room products, and select the five best verified options.
  • Compare live nightly and stay-total rates across leading OTAs and hotel suppliers, including cancellation and inventory status.
  • Return hotel and room images, facilities, beds, meals, fees, and evidence-based match reasons.
  • Recheck the selected room's price and availability before booking.
  • Create bookings, query and cancel orders, and start Stripe, WeChat Pay, or Alipay payments.
  • Provide expiring, repeatable, read-only result links without exposing the Skill Token.

Supported AI clients

ClientSupport
WorkBuddyInstall or import this repository as a user Skill
OpenAI CodexInstall from the Skills interface or a supported local skills directory
Claude CodeInstall as a personal Skill under ~/.claude/skills
Agent Skills-compatible clientsCompatible when the client can load a root SKILL.md and make outbound HTTPS POST requests
MCP-capable AI clientsUse the companion TourMind Booking MCP package

Install in 1 minute

  1. Sign in to your TourMind account, then create a Skill Token at tourmind.com/user/skill-token. If you do not have an account, register for a business account at Business account registration. Developers and individual users should use the TourMind Skill version intended for their user type instead.

  2. In your AI client's Skills interface, install or import this GitHub repository:

    https://github.com/tourmind-com/Tourmind-Booking-Skills.git
    

    If your client installs Skills from the filesystem, clone the repository into its personal skills directory:

    CLIENT_SKILLS_DIR="<your-client-skills-directory>"
    mkdir -p "$CLIENT_SKILLS_DIR"
    git clone https://github.com/tourmind-com/Tourmind-Booking-Skills.git "$CLIENT_SKILLS_DIR/tourmind-booking"
    

    Common personal Skill locations:

    ClientDirectory
    WorkBuddy~/.workbuddy/skills
    OpenAI CodexUse the Skills interface or the local directory supported by your Codex version
    Claude Code~/.claude/skills
  3. In the installed tourmind-booking folder, create skill_token.txt and paste only the raw Token into it. On macOS or Linux, restrict access:

    chmod 600 skill_token.txt
    

Reload Skills or restart the AI client, then ask for a hotel. No local MCP server is required; this Skill calls the TourMind API directly over HTTPS.

Never commit skill_token.txt. It is excluded by .gitignore.

Example prompts

These examples combine the agent's own research and itinerary-planning abilities with TourMind's live hotel search, rate verification, booking, payment, and order-management workflow.

I’m planning a four-night trip for two to Osaka (Japan) from April 9 to April 13, 2027, flying in and out of Kansai International Airport. We want one or two days of sea fishing around Osaka Bay or Awaji Island and will not rent a car. First use your own web research and itinerary-planning abilities to compare practical fishing areas, seasonal considerations, licensed charter options, and public-transport times, then propose a relaxed day-by-day itinerary. For the best base, use TourMind to search live hotel inventory. Keep the average room price under JPY 18,000 per night; prefer a twin room near a station, practical early-morning transport to the fishing meeting point, free cancellation, and breakfast when it fits the departure time. Show the five best verified options with room photos, total stay price and currency, taxes and fees when returned, cancellation terms, breakfast, the transfer plan to the fishing point, key trade-offs, and a repeatable result link. Do not book yet.
Plan a six-night ski trip to the Dolomites (Italy) for two adults from February 6 to February 12, 2027. We will arrive at Venice Marco Polo Airport, will not drive, and are intermediate skiers. First compare Cortina d’Ampezzo, Val Gardena, and Alta Badia for airport transfers, ski terrain, dining, and value, then recommend the best base and a realistic day-by-day plan. Use TourMind to find available hotels averaging no more than EUR 250 per night, preferably within a 10-minute walk or shuttle ride of a lift, with ski storage, breakfast, free cancellation, and a sauna if possible. Return the five best verified live options with room and bed type, photos, nightly and stay-total prices, cancellation deadlines, meals, inventory status, distance to the lift, and any constraint each option misses. After I choose one, recheck its live price and availability, summarize the exact final amount and policy, and wait for my explicit confirmation before booking or starting payment.
Use the second hotel from the comparison. Show the hotel details and every currently bookable room product that fits two adults, including room photos, bed type, meals, cancellation policy, on-request status, nightly price, and total price. Recommend the best-value rate and explain why. Then recheck that exact rate. If anything changed, show the old and new values clearly; otherwise give me the final booking summary and ask for confirmation. Do not create the booking or payment until I explicitly say “confirm booking.”
Look up my booking using agent reference ID <AGENT_REF_ID>. Explain the current booking and payment status in plain language. If it is cancellable, show the cancellation deadline, penalty, and expected refundable amount before doing anything. Cancel only after I explicitly confirm, then query the booking again and show the final status. Never expose my Skill Token in the response or result link.

Workflow

Location or POI
  → search_location
  → search_hotels (up to 20 candidates)
  → query_room_rates (live products for eligible candidates)
  → rank and present the five best verified hotels
  → get_hotel_detail + room images and quotes
  → check_room_availability for the selected rate
  → create_booking after explicit confirmation
  → pay_order / query_booking / cancel_booking as requested

Cached search_hotels.min_price is only a candidate signal. User-visible prices come from query_room_rates, and the final booking uses the latest values returned by check_room_availability.

Token and security

  • All ToB Skill API calls require the Skill Token stored locally in skill_token.txt.
  • Keep the token out of prompts, logs, screenshots, URLs, commits, and issue reports.
  • Restrict the token file to the current user with chmod 600.
  • On HTTP 401 or an unauthorized response, remove the invalid local token. To replace it, sign in to your TourMind account and create a Skill Token at tourmind.com/user/skill-token. If you do not have an account, register for a business account at Business account registration. Developers and individual users should use the Skill version intended for their user type.
  • Result web_url sessions are read-only and can be opened repeatedly until they expire; they cannot verify rates, book, pay, cancel, or access account and finance pages.
  • Booking, cancellation, and payment remain explicit user-confirmed actions inside the authenticated AI conversation.

Choose the right TourMind integration

AudienceIntegrationAuthentication modelRepository
Consumer / ToCDirect HTTP SkillPublic search and availability; user_key only for order operationsHotel Booking AI
Business / ToBDirect HTTP SkillSkill Token required for every API callTourMind Booking Skill
Consumer / ToCMCP package + companion SkillPublic MCP connection; user_key only for order operationsHotel Booking AI MCP
Business / ToBMCP package + companion SkillBearer-authenticated MCP connectionTourMind Booking MCP

API and support

API base URL: https://api.tourmind.com

EndpointPurpose
POST /skill/tob/check_skill_updateCheck for a Skill update
POST /skill/tob/search_locationResolve a region, POI, or hotel
POST /skill/tob/search_hotelsSearch hotel candidates
POST /skill/tob/get_hotel_detailGet hotel details and images
POST /skill/tob/query_room_ratesGet live rooms and rates
POST /skill/tob/check_room_availabilityRecheck the selected rate and inventory
POST /skill/tob/create_bookingCreate a confirmed booking
POST /skill/tob/query_bookingQuery an order
POST /skill/tob/cancel_bookingCancel an order after confirmation
POST /skill/tob/pay_orderStart payment after confirmation

License

MIT © 2026 TourMind

常见问题

What is Tourmind-Booking-Skills?

Tourmind-Booking-Skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by tourmind-com. AI agent skill for end-to-end hotel search and booking—compare live rates across leading OTAs and hotel suppliers, verify availability, book stays, and manage reservations, cancellations, and payments via the TourMind API. It has 244 GitHub stars.

Is Tourmind-Booking-Skills safe to use?

Yes. Tourmind-Booking-Skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install Tourmind-Booking-Skills?

Clone the repository with "git clone https://github.com/tourmind-com/Tourmind-Booking-Skills" and add it to your Claude Code skills directory (see the Installation section above). Tourmind-Booking-Skills ships a SKILL.md manifest, so compatible agents can discover and load it automatically.

What programming language is Tourmind-Booking-Skills written in?

Tourmind-Booking-Skills is primarily written in Python. It is open-source under tourmind-com on GitHub, so you can review or fork the full source.

Are there alternatives to Tourmind-Booking-Skills?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Tourmind-Booking-Skills against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情