← 返回 Skills 市场
66
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install eebus
功能描述
查询永东直通巴士(eebus)班次、票价和余座。当用户提到「永东」「永东巴士」「eebus」「跨境巴士」「查车票」「查巴士票」「去深圳」「回香港」等跨境交通查询时触发。支持中文自然语言输入,自动解析日期、上下车点。
使用说明 (SKILL.md)
永东直通巴士查询
触发示例
- 「查一下明天永东去深圳的票」
- 「5月1号回香港有什么班次」
- 「后天去莲塘口岸的巴士」
- 「永东车票」
- 「下周六回深圳」
解析规则
方向判断
- 含「回」「去」关键字的地点 → 该地点为下车点,另一方向自动推导
- 「回深圳」→ 下车点=深圳方向,上车点=香港方向
- 「去旺角」→ 下车点=旺角方向,上车点=深圳方向
- 无方向关键字时,默认:香港 → 深圳(旺角油麻地 → 莲塘口岸)
默认值
| 参数 | 默认值 |
|---|---|
| 出发城市 | 香港 |
| 到达城市 | 深圳 |
| 上车点 | 旺角油麻地 |
| 下车点 | 莲塘口岸 |
城市自动推导
根据上车点自动匹配出发城市,无需用户指定:
| 上车点 | 出发城市 |
|---|---|
| 旺角油麻地 | 香港 |
| 太子 | 香港 |
| 观塘APM | 香港 |
| 钻石山 | 香港 |
| 屯门 V City | 香港 |
| 尖沙咀(中港城) | 香港 |
| 葵芳新都会广场(NR332巴士站前) | 香港 |
| 莲塘口岸 | 深圳 |
| 深圳湾口岸 | 深圳 |
到达城市为另一城市。如果上下车点都在同一城市,提示用户确认方向。
可用站点
旺角油麻地、莲塘口岸、深圳湾口岸、太子、观塘APM、钻石山、屯门 V City、尖沙咀(中港城)、葵芳新都会广场(NR332巴士站前)
日期解析
- 「今天」→ 当天日期
- 「明天/后天」→ 相对日期
- 「X月X号/X月X日」→ 具体日期
- 「下周X」→ 下周对应日期
- 无日期 → 默认当天
执行
解析完参数后,运行脚本:
node scripts/eebus_query.js \x3C日期YYYY-MM-DD> \x3C上车点> \x3C下车点> [出发城市] [到达城市]
示例:
node scripts/eebus_query.js 2026-05-01 旺角油麻地 莲塘口岸
node scripts/eebus_query.js 2026-05-01 莲塘口岸 旺角油麻地 深圳 香港
输出格式
将脚本结果整理为以下格式,必须列出所有班次,不可省略:
- 显示查询路线和日期
- 逐行列出每个班次的发车时间、到达时间、余座数
- 如无班次,提示「该日期暂无班次」
输出模板:
🚌 路线:上客点 → 下客点
📅 日期:YYYY-MM-DD
💰 票价:成人 ¥XX | 长者 ¥XX | 儿童 ¥XX
出发 到达 余座
────────────────────
08:15 09:15 45座 ✅
08:45 09:45 30座 ✅
...
注意
- 如果用户提到不在列表中的站点,告知可用站点列表,请用户选择
- 脚本路径相对于 skill 目录:
scripts/eebus_query.js
安全使用建议
This skill appears internally consistent for querying 永东/eebus schedules and does not ask for your credentials. Before installing, consider: 1) the script makes network requests to www.myeebus.com — your queries (dates and stops) and your machine's IP will be sent to that external server and may be logged; 2) the script embeds hard-coded signing logic/constants (likely reverse-engineered) — this is not a secret you provide, but it does mean the code relies on undocumented behavior that could break; 3) the supplied file in the package was truncated in the manifest, so I couldn't inspect the file's tail; ask the publisher for the full source or a homepage and verify the rest of the script; 4) run the script in a sandbox or review it locally before giving the agent permission to execute it autonomously. If you are uncomfortable with contacting an unknown external host, do not install or grant runtime execution.
功能分析
Type: OpenClaw Skill
Name: eebus
Version: 1.0.0
The skill is a legitimate utility for querying bus schedules from the 'eebus' service. The core logic in `scripts/eebus_query.js` uses standard Node.js HTTPS modules to interact with the `www.myeebus.com` API. It includes a custom HMAC-MD5 implementation to generate required request signatures, which is consistent with interacting with private web APIs. No evidence of data exfiltration, unauthorized execution, or malicious prompt injection was found.
能力评估
Purpose & Capability
The name/description (永东直通巴士查询) align with the provided runtime instructions and the included Node script: the script queries an eebus API (www.myeebus.com) for schedules/prices/seats. No unrelated binaries, credentials, or config paths are requested.
Instruction Scope
SKILL.md only instructs the agent to parse parameters and run the local Node script with date and stops. The script performs HTTPS requests to the eebus host and prints results. The script reads only process.env.DEBUG (optional) and does not reference other system files or extra environment variables in the visible portion.
Install Mechanism
No install spec is provided (instruction-only + included script). There is no download-from-URL or package install; the runtime action is to run the included Node script, which is proportionate for this task.
Credentials
The skill declares no required env vars or credentials, and the code does not request secrets. The script generates its own random token and computes a signature locally (using embedded constants) rather than requiring user credentials.
Persistence & Privilege
always is false, the skill does not request persistent system modifications, and there is no attempt in the visible code to change other skills or global agent settings.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install eebus - 安装完成后,直接呼叫该 Skill 的名称或使用
/eebus触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
初始版本:查询永东巴士班次、票价、余座
元数据
常见问题
永东直通巴士查询 是什么?
查询永东直通巴士(eebus)班次、票价和余座。当用户提到「永东」「永东巴士」「eebus」「跨境巴士」「查车票」「查巴士票」「去深圳」「回香港」等跨境交通查询时触发。支持中文自然语言输入,自动解析日期、上下车点。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 66 次。
如何安装 永东直通巴士查询?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install eebus」即可一键安装,无需额外配置。
永东直通巴士查询 是免费的吗?
是的,永东直通巴士查询 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
永东直通巴士查询 支持哪些平台?
永东直通巴士查询 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 永东直通巴士查询?
由 porridgec(@porridgec)开发并维护,当前版本 v1.0.0。
推荐 Skills