with one click
旅行信息查询 - 去哪儿/携程/飞猪数据查询(Expedia 中国版)
npx skills add https://github.com/m4d3bug/oh-my-openclaw --skill travel-cnCopy and paste this command into Claude Code to install the skill
旅行信息查询 - 去哪儿/携程/飞猪数据查询(Expedia 中国版)
npx skills add https://github.com/m4d3bug/oh-my-openclaw --skill travel-cnCopy and paste this command into Claude Code to install the skill
高德地图 JSAPI v2.0 (WebGL) 开发技能。涵盖地图生命周期管理、强制安全配置、3D 视图控制、覆盖物绘制及 LBS 服务集成。
高德地图综合服务,支持POI搜索、路径规划、旅游规划、周边搜索和热力图数据可视化
Token-efficient agent behavior — response sizing, context pruning, tool efficiency, and delegation
Write-Ahead Log protocol for agent state persistence. Prevents losing corrections, decisions, and context during conversation compaction. Use when: (1) receiving a user correction — log it before responding, (2) making an important decision or analysis — log it before continuing, (3) pre-compaction memory flush — flush the working buffer to WAL, (4) session start — replay unapplied WAL entries to restore lost context, (5) any time you want to ensure something survives compaction.
Scan OpenClaw skills for security vulnerabilities before installing them. Use when evaluating a new skill from ClawHub or any third-party source. Detects credential stealers, data exfiltration, malicious URLs, obfuscated code, and supply chain attacks.
Persist agent state across crashes, context deaths, and restarts. Use when you need to save current context, restore after a crash, maintain a memory file across sessions, or implement crash recovery. Essential for autonomous agents that must survive context window limits.
| 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