← All skills
Tencent SkillHub · Data Analysis

Linz Public Transport

Query Linz public transport stops for IDs and fetch live upcoming departures using Linz Linien EFA endpoints.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Query Linz public transport stops for IDs and fetch live upcoming departures using Linz Linien EFA endpoints.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/linz_transport.py, references/endpoints.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Linz Public Transport

Use this skill to interact with Linz Linien EFA endpoints: GET /efa/XML_STOPFINDER_REQUEST GET /efa/XML_DM_REQUEST Read endpoint details in {baseDir}/references/endpoints.md before implementation. Use {baseDir}/scripts/linz_transport.py as the default execution path.

Workflow

Resolve the API base URL. Run the script subcommand that matches the task. Return a compact, user-facing summary.

Primary Tooling

Script path: {baseDir}/scripts/linz_transport.py Runtime: Python 3, standard library only. Base URL input: --base-url <url> argument, or LINZ_TRANSPORT_API_BASE_URL environment variable, or default http://www.linzag.at/linz2. Preferred commands: Search stops: python {baseDir}/scripts/linz_transport.py stops "taubenmarkt" Fetch departures by stop ID: python {baseDir}/scripts/linz_transport.py departures --stop-id 60501160 --limit 10 Resolve stop and fetch departures in one call: python {baseDir}/scripts/linz_transport.py next "taubenmarkt" --limit 10 --pick-first

Step 1: Resolve Base URL

Use user-provided base URL first. Otherwise use LINZ_TRANSPORT_API_BASE_URL if available. If neither exists, use http://www.linzag.at/linz2.

Step 2: Present Output

Sort by countdownInMinutes ascending if needed. Show the next 5-10 departures unless user asks for more. Include both relative (countdownInMinutes) and absolute (time) times. Keep field names stable when returning JSON.

Error Handling

If stop search returns empty list, suggest nearby spellings and retry with a shorter query token. If multiple stop matches are returned, rerun with explicit --stop-id or use next ... --pick-first only when ambiguity is acceptable. If departures response is empty, state that no upcoming departures are currently available. If HTTP request fails, report status code, endpoint, and retry guidance. If EFA response includes a message code, include that code in diagnostics.

Minimal Examples

python {baseDir}/scripts/linz_transport.py stops "taubenmarkt" python {baseDir}/scripts/linz_transport.py departures --stop-id 60501160 --limit 10 python {baseDir}/scripts/linz_transport.py next "taubenmarkt" --limit 10 --pick-first python "{baseDir}/scripts/linz_transport.py" stops "taubenmarkt" python "{baseDir}/scripts/linz_transport.py" departures --stop-id 60501160 --limit 10 python "{baseDir}/scripts/linz_transport.py" next "taubenmarkt" --limit 10 --pick-first

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/endpoints.md Docs
  • scripts/linz_transport.py Scripts