# Send Swiss Public Transport to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "swiss-transport",
    "name": "Swiss Public Transport",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/xenofex7/swiss-transport",
    "canonicalUrl": "https://clawhub.ai/xenofex7/swiss-transport",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/swiss-transport",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=swiss-transport",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/journey.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/swiss-transport"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/swiss-transport",
    "downloadUrl": "https://openagent3.xyz/downloads/swiss-transport",
    "agentUrl": "https://openagent3.xyz/skills/swiss-transport/agent",
    "manifestUrl": "https://openagent3.xyz/skills/swiss-transport/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/swiss-transport/agent.md"
  }
}
```
## Documentation

### Swiss Public Transport

Query Swiss public transport (SBB, BLS, ZVV, etc.) using the official transport.opendata.ch API.

### Search stations

curl -s "https://transport.opendata.ch/v1/locations?query=Zürich" | jq -r '.stations[] | "\\(.name) (\\(.id))"'

### Get next departures

curl -s "https://transport.opendata.ch/v1/stationboard?station=Zürich%20HB&limit=10" | \\
  jq -r '.stationboard[] | "\\(.stop.departure[11:16]) \\(.category) \\(.number) → \\(.to)"'

### Plan journey from A to B

curl -s "https://transport.opendata.ch/v1/connections?from=Zürich&to=Bern&limit=3" | \\
  jq -r '.connections[] | "Departure: \\(.from.departure[11:16]) | Arrival: \\(.to.arrival[11:16]) | Duration: \\(.duration[3:]) | Changes: \\(.transfers)"'

### Get connection details with sections

curl -s "https://transport.opendata.ch/v1/connections?from=Zürich%20HB&to=Bern&limit=1" | \\
  jq '.connections[0].sections[] | {from: .departure.station.name, to: .arrival.station.name, departure: .departure.departure, arrival: .arrival.arrival, transport: .journey.category, line: .journey.number}'

### /v1/locations - Search stations

curl "https://transport.opendata.ch/v1/locations?query=<station-name>"

Parameters:

query (required): Station name to search
type (optional): Filter by type (station, address, poi)

### /v1/stationboard - Departure board

curl "https://transport.opendata.ch/v1/stationboard?station=<station>&limit=<number>"

Parameters:

station (required): Station name or ID
limit (optional): Number of results (default 40)
transportations[] (optional): Filter by type (ice_tgv_rj, ec_ic, ir, re_d, ship, s_sn_r, bus, cableway, arz_ext, tramway_underground)
datetime (optional): Date/time in ISO format

### /v1/connections - Journey planner

curl "https://transport.opendata.ch/v1/connections?from=<start>&to=<destination>&limit=<number>"

Parameters:

from (required): Starting station
to (required): Destination station
via[] (optional): Intermediate station(s)
date (optional): Date (YYYY-MM-DD)
time (optional): Time (HH:MM)
isArrivalTime (optional): 0 (departure, default) or 1 (arrival)
limit (optional): Number of connections (max 16)

### Helper Script

Use scripts/journey.py for formatted journey planning:

python3 scripts/journey.py "Zürich HB" "Bern"
python3 scripts/journey.py "Basel" "Lugano" --limit 5

### Notes

All times are in Swiss local time (CET/CEST)
Station names support autocomplete (e.g., "Zürich" finds "Zürich HB")
API returns JSON by default
No API key required
Real-time data includes delays and platform changes
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: xenofex7
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/swiss-transport)
- [Send to Agent page](https://openagent3.xyz/skills/swiss-transport/agent)
- [JSON manifest](https://openagent3.xyz/skills/swiss-transport/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/swiss-transport/agent.md)
- [Download page](https://openagent3.xyz/downloads/swiss-transport)