Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

tper-hellobus-skilltper 哈罗布斯技能

Agent Skill

tper-hellobus-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,617

周安装

499

GitHub Stars

公开资料未说明

下载量

4,072
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tper-hellobus-skill(tper 哈罗布斯技能)
来源仓库:https://github.com/lore2601/tper-hellobus-skill
安装命令:
openclaw skills install tper-hellobus-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install tper-hellobus-skill

简介

tper 哈罗布斯技能查询意大利博洛尼亚与费拉拉巴士实时到站信息。

  • 输入车站代码或线路名即可获取预计到达时间与延误状态。
  • 适合通勤者规划出行或开发者集成公共交通 API。
  • 安装命令:openclaw skills install tper-hellobus-skill,需城市交通数据源。
  • 服务范围有限,不覆盖全国线路,请核实地区有效性。

SKILL.md

name
tper-hellobus
description
Get real-time and scheduled bus arrival times for TPER buses in Bologna and Ferrara, Italy. Use this skill whenever the user mentions TPER, bus stop codes (numeric like 4476), bus line numbers (like 11 or 27), or asks about bus arrivals in Bologna or Ferrara. Trigger for queries about when buses arrive, checking bus schedules, or real-time bus tracking.

TPER Hellobus: Bologna & Ferrara Bus Times

This skill provides real-time and scheduled arrival information for TPER buses in Bologna and Ferrara by querying the official Hellobus API.

When to Use This Skill

Use this skill when the user:

  • Asks about bus arrivals at a specific stop in Bologna or Ferrara
  • Mentions TPER, bus line numbers, or stop codes
  • Wants to know when the next bus is coming
  • Requests scheduled arrival times for a specific time
  • Asks about real-time bus tracking

How It Works

The skill queries the TPER Hellobus API with three parameters:

  1. fermata (required): Numeric stop code (e.g., "4476", "8001")
  2. linea (required): Bus line number (e.g., "11", "27", "101")
  3. oraHHMM (optional): Time in HHmm format (e.g., "1830" for 6:30 PM)

Critical Logic:

  • If oraHHMM is omitted or empty, the API returns real-time GPS tracking data
  • If oraHHMM is provided, the API returns scheduled arrivals for that time

API Endpoint

GET https://hellobuswsweb.tper.it/web-services/hellobus.asmx/QueryHellobus

Parameters:

  • fermata: Stop code (string, numeric)
  • linea: Line number (string, numeric)
  • oraHHMM: Time in HHmm format (string, optional - leave empty for real-time)

Example API Calls:

Real-time tracking (GPS):

https://hellobuswsweb.tper.it/web-services/hellobus.asmx/QueryHellobus?fermata=4476&linea=11&oraHHMM=

Scheduled times:

https://hellobuswsweb.tper.it/web-services/hellobus.asmx/QueryHellobus?fermata=4476&linea=11&oraHHMM=1830

Response Format

The API returns a response like:

TperHellobus: 11B DaSatellite 18:02 (Bus1634 CON PEDANA), 11B DaSatellite 18:18 (Bus5504 CON PEDANA)

Components:

  • 11B: Line number with variant
  • DaSatellite: Real-time GPS data indicator (or scheduled time indicator)
  • 18:02: Arrival time
  • Bus1634: Bus identifier
  • CON PEDANA: Wheelchair accessible platform indicator

Implementation Steps

1. Parse User Input

Extract from the user's query:

  • Stop code: Numeric identifier (e.g., 4476)
  • Line number: Numeric line (e.g., 11)
  • Time (optional): If user mentions a specific time like "6:30 PM", "18:30", "at 3pm"

2. Convert Time Format

If the user provides a time:

  • Parse the time from natural language (e.g., "6:30 PM", "18:30", "3pm")
  • Convert to HHmm format (e.g., "1830", "1500")
  • Use Europe/Rome timezone for any timezone-related conversions

Time conversion examples:

  • "6:30 PM" → "1830"
  • "3:00 PM" → "1500"
  • "9:15 AM" → "0915"
  • "18:30" → "1830"

3. Make API Request

Use the bash_tool with curl to call the API (web_fetch has URL restrictions):

# For real-time (no time specified):
curl "https://hellobuswsweb.tper.it/web-services/hellobus.asmx/QueryHellobus?fermata={stop_code}&linea={line_number}&oraHHMM="

# For scheduled time:
curl "https://hellobuswsweb.tper.it/web-services/hellobus.asmx/QueryHellobus?fermata={stop_code}&linea={line_number}&oraHHMM={time_hhmm}"

Important: Ensure proper URL encoding and handle the XML/text response from the API.

4. Parse and Format Response

The API response is plain text. Parse it and format as a bullet list:

Input: TperHellobus: 11B DaSatellite 18:02 (Bus1634 CON PEDANA), 11B DaSatellite 18:18 (Bus5504 CON PEDANA)

Output format:

Bus arrivals for line 11 at stop 4476:
• 11B DaSatellite 18:02 (Bus1634 CON PEDANA)
• 11B DaSatellite 18:18 (Bus5504 CON PEDANA)

Split on commas and present each arrival as a bullet point.

5. Error Handling

If the API returns an error or unexpected response:

  • Report the error clearly to the user
  • Include the original API response if helpful for debugging
  • Suggest checking the stop code and line number

Common errors might include:

  • Invalid stop code
  • Line doesn't serve that stop
  • No buses found for the specified time
  • API connection issues

User Interaction Examples

Example 1: Real-time tracking

User: "When is the next bus 11 arriving at stop 4476?"
Claude: [Queries API with oraHHMM empty]
Response: 
Bus arrivals for line 11 at stop 4476 (real-time):
• 11B DaSatellite 18:02 (Bus1634 CON PEDANA)
• 11B DaSatellite 18:18 (Bus5504 CON PEDANA)

Example 2: Scheduled time

User: "Check the schedule for bus 27 at stop 8001 for 6:30 PM"
Claude: [Queries API with oraHHMM=1830]
Response:
Bus arrivals for line 27 at stop 8001 at 18:30:
• 27 Orario 18:35 (Bus2045)
• 27 Orario 18:50 (Bus3012)

Example 3: Error handling

User: "Bus 99 at stop 1234"
Claude: [Queries API, receives error]
Response: "I couldn't find bus 99 at stop 1234. Please verify the stop code and line number are correct for the TPER network."

Important Notes

  • Stop codes are numeric only (not stop names)
  • Line numbers are numeric only (e.g., "11", not "11B" - the API adds variants)
  • Empty oraHHMM = real-time GPS tracking
  • Provided oraHHMM = scheduled arrivals
  • Always use Europe/Rome timezone for time conversions
  • Format times as HHmm (24-hour format, no colon)

Testing

Test cases to verify the skill works:

  • Line 11, Stop 4476 (real-time)
  • Line 11, Stop 4476, Time 18:30 (scheduled)
  • Invalid stop code (error handling)
  • Time format conversion (various user inputs)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.32%
按下载量换算3,963

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills