永东直通巴士查询

v1.0.0

查询永东直通巴士(eebus)班次、票价和余座。当用户提到「永东」「永东巴士」「eebus」「跨境巴士」「查车票」「查巴士票」「去深圳」「回香港」等跨境交通查询时触发。支持中文自然语言输入,自动解析日期、上下车点。

0· 57·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for porridgec/eebus.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "永东直通巴士查询" (porridgec/eebus) from ClawHub.
Skill page: https://clawhub.ai/porridgec/eebus
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install eebus

ClawHub CLI

Package manager switcher

npx clawhub@latest install eebus
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk974rr12c7rmbe3xftvnbvmgk985hk4y
57downloads
0stars
1versions
Updated 2d ago
v1.0.0
MIT-0

永东直通巴士查询

触发示例

  • 「查一下明天永东去深圳的票」
  • 「5月1号回香港有什么班次」
  • 「后天去莲塘口岸的巴士」
  • 「永东车票」
  • 「下周六回深圳」

解析规则

方向判断

  • 含「回」「去」关键字的地点 → 该地点为下车点,另一方向自动推导
    • 「回深圳」→ 下车点=深圳方向,上车点=香港方向
    • 「去旺角」→ 下车点=旺角方向,上车点=深圳方向
  • 无方向关键字时,默认:香港 → 深圳(旺角油麻地 → 莲塘口岸)

默认值

参数默认值
出发城市香港
到达城市深圳
上车点旺角油麻地
下车点莲塘口岸

城市自动推导

根据上车点自动匹配出发城市,无需用户指定:

上车点出发城市
旺角油麻地香港
太子香港
观塘APM香港
钻石山香港
屯门 V City香港
尖沙咀(中港城)香港
葵芳新都会广场(NR332巴士站前)香港
莲塘口岸深圳
深圳湾口岸深圳

到达城市为另一城市。如果上下车点都在同一城市,提示用户确认方向。

可用站点

旺角油麻地、莲塘口岸、深圳湾口岸、太子、观塘APM、钻石山、屯门 V City、尖沙咀(中港城)、葵芳新都会广场(NR332巴士站前)

日期解析

  • 「今天」→ 当天日期
  • 「明天/后天」→ 相对日期
  • 「X月X号/X月X日」→ 具体日期
  • 「下周X」→ 下周对应日期
  • 无日期 → 默认当天

执行

解析完参数后,运行脚本:

node scripts/eebus_query.js <日期YYYY-MM-DD> <上车点> <下车点> [出发城市] [到达城市]

示例:

node scripts/eebus_query.js 2026-05-01 旺角油麻地 莲塘口岸
node scripts/eebus_query.js 2026-05-01 莲塘口岸 旺角油麻地 深圳 香港

输出格式

将脚本结果整理为以下格式,必须列出所有班次,不可省略:

  1. 显示查询路线和日期
  2. 逐行列出每个班次的发车时间、到达时间、余座数
  3. 如无班次,提示「该日期暂无班次」

输出模板:

🚌 路线:上客点 → 下客点
📅 日期:YYYY-MM-DD
💰 票价:成人 ¥XX | 长者 ¥XX | 儿童 ¥XX

出发   到达   余座
────────────────────
08:15  09:15  45座 ✅
08:45  09:45  30座 ✅
...

注意

  • 如果用户提到不在列表中的站点,告知可用站点列表,请用户选择
  • 脚本路径相对于 skill 目录:scripts/eebus_query.js

Comments

Loading comments...