通过 Amadeus API 搜索酒店价格和供应情况。按城市、坐标或设施查找度假酒店。比较价格、查看评级、获取优惠详情。通过警报跟踪价格。当用户要求“查找酒店”、“搜索[城市]的酒店”、“酒店价格”、“假期住宿”、“酒店 d”时使用
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install amadeus-hotels或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install amadeus-hotels⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/amadeus-hotels/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: amadeus-hotels description: Search hotel prices and availability via Amadeus API. Find vacation hotels by city, coordinates, or amenities. Compare prices, view ratings, get offer details. Track prices with alerts. Use when user asks to "find hotels", "search hotels in [city]", "hotel prices", "vacation accommodation", "hotel deals", "track hotel price". homepage: https://github.com/kesslerio/amadeus-hotels-clawhub-skill metadata: { "openclaw": { "emoji": "🏨", "requires": { "bins": ["python3"], "env": ["AMADEUS_API_KEY", "AMADEUS_API_SECRET"], }, "primaryEnv": "AMADEUS_API_KEY", "install": [ { "id": "pip-requests", "kind": "pip", "packages": ["requests"], "label": "Install requests (pip)", }, ], }, } ---
Search hotel prices, availability, and ratings via the Amadeus Self-Service API. Perfect for vacation planning and deal hunting.
- Create account → My Apps → Create new app - Copy API Key and API Secret
export AMADEUS_API_KEY="your-api-key"
export AMADEUS_API_SECRET="your-api-secret"
export AMADEUS_ENV="test" # or "production" for real bookings
pip install requests
Free tier: ~2,000 requests/month in test, pay-per-use after in production.
| Task | Script | Example | |------|--------|---------| | Search by city | scripts/search.py | --city PAR --checkin 2026-03-15 --checkout 2026-03-20 | | Get offers | scripts/offers.py | --hotels HTPAR123,HTPAR456 --adults 2 | | Offer details | scripts/details.py | --offer-id ABC123 | | Track price | scripts/track.py | --add --hotel HTPAR123 --target 150 | | Check tracked | scripts/track.py | --check |
Find hotels by city code (IATA) or coordinates:
# By city
python3 <skill>/scripts/search.py --city PAR --checkin 2026-03-15 --checkout 2026-03-20
# By coordinates (near a landmark)
python3 <skill>/scripts/search.py --lat 48.8584 --lon 2.2945 --radius 5 --checkin 2026-03-15 --checkout 2026-03-20
# With filters
python3 <skill>/scripts/search.py --city NYC --amenities WIFI,POOL,SPA --ratings 4,5
Common city codes: PAR (Paris), NYC (New York), TYO (Tokyo), BCN (Barcelona), LON (London), LAX (Los Angeles), SFO (San Francisco)
Once you have hotel IDs from search:
python3 <skill>/scripts/offers.py \
--hotels HTPAR001,HTPAR002 \
--checkin 2026-03-15 \
--checkout 2026-03-20 \
--adults 2 \
--rooms 1
Returns: Room types, prices, cancellation policies, board types.
Get full details for a specific offer before booking:
python3 <skill>/scripts/details.py --offer-id <offer-id-from-search>
Returns: Detailed room info, full cancellation policy, payment terms, hotel contact.
Get aggregated review sentiment:
python3 <skill>/scripts/details.py --hotel-id HTPAR001 --ratings
Returns: Overall score (0-100), category scores (Staff, Location, WiFi, Cleanliness, etc.)
Track hotels and get alerts when prices drop:
# Add hotel to tracking
python3 <skill>/scripts/track.py --add \
--hotel HTPAR001 \
--checkin 2026-03-15 \
--checkout 2026-03-20 \
--adults 2 \
--target 150 # Alert if price drops below $150/night
# Check all tracked hotels (run via cron)
python3 <skill>/scripts/track.py --check
# List tracked hotels
python3 <skill>/scripts/track.py --list
# Remove from tracking
python3 <skill>/scripts/track.py --remove --hotel HTPAR001
Add to OpenClaw cron for automatic price monitoring:
# Check hotel prices twice daily
- schedule: "0 9,18 * * *"
task: "Run hotel price tracker and alert on drops"
command: "python3 <skill>/scripts/track.py --check"
When prices drop below target, the script outputs alert text. Configure your notification channel in the cron task.
Scripts output JSON by default. Add --format human for readable output:
python3 <skill>/scripts/search.py --city PAR --format human
Human format example:
🏨 Hotel & Spa Paris Marais ★★★★
📍 15 Rue du Temple, Paris
💰 €189/night (was €220)
✨ WIFI, SPA, RESTAURANT
📊 Rating: 87/100 (Staff: 92, Location: 95)
Common filters for --amenities:
| Code | Meaning | |------|---------| | WIFI | Free WiFi | | POOL | Swimming pool | | SPA | Spa/wellness | | GYM | Fitness center | | RESTAURANT | On-site restaurant | | PARKING | Parking available | | PETS_ALLOWED | Pet-friendly | | AIR_CONDITIONING | A/C | | KITCHEN | Kitchen/kitchenette |
Full list in references/amenities.md.
Amadeus API prices are NOT retail prices. The API returns negotiated, net, or wholesale rates — not the public prices you see on Booking.com, Expedia, or hotel websites.
Key differences:
Use these prices for comparison and tracking trends, not as exact retail quotes. Actual booking prices on consumer sites will differ.
| Error | Meaning | Action | |-------|---------|--------| | 401 | Auth failed | Check API key/secret | | 429 | Rate limited | Wait and retry (auto-handled) | | 400 | Bad request | Check parameters (dates, codes) | | No results | No availability | Try different dates or expand search |
references/amenities.md — Full amenity code list安装 艾玛迪斯酒店 后,可以对 AI 说这些话来触发它
Help me get started with Amadeus Hotels
Explains what Amadeus Hotels does, walks through the setup, and runs a quick demo based on your current project
Use Amadeus Hotels to search hotel prices and availability via Amadeus API
Invokes Amadeus Hotels with the right parameters and returns the result directly in the conversation
What can I do with Amadeus Hotels in my marketing & growth workflow?
Lists the top use cases for Amadeus Hotels, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/amadeus-hotels/ 目录(个人级,所有项目可用),或 .claude/skills/amadeus-hotels/(项目级)。重启 AI 客户端后,用 /amadeus-hotels 主动调用,或让 AI 根据上下文自动发现并使用。
艾玛迪斯酒店 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
艾玛迪斯酒店 可免费安装使用。请查阅仓库了解许可证信息。
通过 Amadeus API 搜索酒店价格和供应情况。按城市、坐标或设施查找度假酒店。比较价格、查看评级、获取优惠详情。通过警报跟踪价格。当用户要求“查找酒店”、“搜索[城市]的酒店”、“酒店价格”、“假期住宿”、“酒店 d”时使用
艾玛迪斯酒店 属于「Marketing & Growth」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my marketing & growth tasks using Amadeus Hotels
Identifies repetitive steps in your workflow and sets up Amadeus Hotels to handle them automatically