用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill travel-cn命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | travel-cn |
| description | 旅行信息查询 - 去哪儿/携程/飞猪数据查询(Expedia 中国版) |
| metadata | {"openclaw":{"emoji":"✈️","category":"travel","tags":["travel","qunar","ctrip","fliggy","china","booking"]}} |
去哪儿/携程/飞猪数据查询。
| 平台 | 机票 | 酒店 | 火车 | 特点 |
|---|---|---|---|---|
| 携程 | ✅ | ✅ | ✅ | 全能 |
| 去哪儿 | ✅ | ✅ | ✅ | 比价 |
| 飞猪 | ✅ | ✅ | ❌ | 阿里系 |
| 12306 | ❌ | ❌ | ✅ | 官方 |
# 需要合作伙伴资质
curl "https://api.ctrip.com/flight/search?from=SHA&to=PEK&date=2026-02-20"
# 使用 selenium
pip install selenium
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://flight.qunar.com/")
curl "https://api.ctrip.com/hotel/search?city=上海&checkin=2026-02-20"
# 使用 12306 API 封装
pip install py12306
from py12306 import Py12306
client = Py12306()
trains = client.query("上海", "北京", "2026-02-20")
# 查询机票
./scripts/flight-search.sh --from 上海 --to 北京 --date 2026-02-20
# 查询酒店
./scripts/hotel-search.sh --city 上海 --checkin 2026-02-20
# 查询火车票
./scripts/train-search.sh --from 上海 --to 北京 --date 2026-02-20
版本: 1.0.0