home / skills / mitsuhiko / agent-stuff / anachb

anachb skill

/skills/anachb

This skill helps you plan Austrian public transport trips, check real-time departures, and monitor disruptions across trains, buses, and trams.

This is most likely a fork of the a-nach-b skill from openclaw
npx playbooks add skill mitsuhiko/agent-stuff --skill anachb

Review the files below or copy the command above to add this skill to your agents.

Files (5)
SKILL.md
4.7 KB
---
name: anachb
description: Austrian public transport (VOR AnachB) for all of Austria. Query real-time departures, search stations/stops, plan routes between locations, and check service disruptions. Use when asking about Austrian trains, buses, trams, metro (U-Bahn), or directions involving public transport in Austria.
---

# VOR AnachB - Austrian Public Transport API

Query Austrian public transport for real-time departures, route planning, and service disruptions using the HAFAS API.

## Quick Reference

| Script | Purpose |
|--------|---------|
| `search.sh` | Find stations/stops by name |
| `departures.sh` | Real-time departures at a station |
| `route.sh` | Plan a trip between two locations |
| `disruptions.sh` | Current service disruptions |

**API:** HAFAS (Hacon Fahrplan-Auskunfts-System)  
**Endpoint:** `https://vao.demo.hafas.de/gate`

---

## 1. Search Stations/Stops

Find station IDs by name:

```bash
./search.sh "Stephansplatz"
./search.sh "Wien Hauptbahnhof"
./search.sh "Linz"
./search.sh "Salzburg Hbf"
```

Returns station names, IDs (extId), and coordinates.

**Response fields:**
- `name`: Station name
- `extId`: Station ID for use in other queries
- `type`: S (Station), A (Address), P (POI)
- `coordinates`: WGS84 coordinates (lon/lat in 1e-6 format)

---

## 2. Real-Time Departures

Get next departures from a station:

```bash
./departures.sh <station-id> [count]

# Examples:
./departures.sh 490132000        # Wien Stephansplatz, 10 departures
./departures.sh 490132000 20     # Wien Stephansplatz, 20 departures
./departures.sh 490060200        # Wien Hauptbahnhof
./departures.sh 444130000        # Linz Hbf
./departures.sh 455000100        # Salzburg Hbf
```

**Response fields:**
- `line`: Line name (U1, S1, RJ, etc.)
- `direction`: Final destination
- `departure`: Scheduled departure time
- `delay`: Delay in minutes (if any)
- `platform`: Platform/track number

---

## 3. Route Planning

Plan a trip between two stations:

```bash
./route.sh <from-id> <to-id> [results]

# Examples:
./route.sh 490132000 490060200        # Stephansplatz → Hauptbahnhof
./route.sh 490132000 444130000 5      # Wien → Linz, 5 results
./route.sh "Graz Hbf" "Wien Hbf"      # Search by name (slower)
```

**Response fields:**
- `departure`: Departure time
- `arrival`: Arrival time
- `duration`: Trip duration
- `changes`: Number of transfers
- `legs`: Array of trip segments with line info

---

## 4. Disruptions

Check current service disruptions:

```bash
./disruptions.sh [category]

# Examples:
./disruptions.sh            # All disruptions
./disruptions.sh TRAIN      # Train disruptions only
./disruptions.sh BUS        # Bus disruptions only
```

---

## Common Station IDs

| Station | ID |
|---------|-----|
| Wien Stephansplatz | 490132000 |
| Wien Hauptbahnhof | 490134900 |
| Wien Westbahnhof | 490024300 |
| Wien Praterstern | 490056100 |
| Wien Karlsplatz | 490024600 |
| Wien Schwedenplatz | 490119500 |
| Linz Hbf | 444116400 |
| Salzburg Hbf | 455000200 |
| Graz Hbf | 460086000 |
| Innsbruck Hbf | 481070100 |
| Klagenfurt Hbf | 492019500 |
| St. Pölten Hbf | 431543300 |
| Wiener Neustadt Hbf | 430521000 |
| Krems a.d. Donau | 431046400 |

**Tip:** Always use `./search.sh` to find the correct station ID.

---

## Transport Types

| Code | Type |
|------|------|
| ICE/RJ/RJX | High-speed trains |
| IC/EC | InterCity/EuroCity |
| REX/R | Regional Express/Regional |
| S | S-Bahn (suburban rail) |
| U | U-Bahn (Vienna metro) |
| STR | Tram/Straßenbahn |
| BUS | Bus |
| AST | Demand-responsive transport |

---

## API Details (for advanced usage)

The scripts use the HAFAS JSON API. For custom queries:

```bash
curl -s -X POST "https://vao.demo.hafas.de/gate" \
  -H "Content-Type: application/json" \
  -d '{
    "svcReqL": [{
      "req": { ... },
      "meth": "METHOD_NAME",
      "id": "1|1|"
    }],
    "client": {"id": "VAO", "v": "1", "type": "AND", "name": "nextgen"},
    "ver": "1.73",
    "lang": "de",
    "auth": {"aid": "nextgen", "type": "AID"}
  }'
```

**Available methods:**
- `LocMatch` - Location/station search
- `StationBoard` - Departures/arrivals
- `TripSearch` - Route planning
- `HimSearch` - Disruptions/service messages
- `JourneyDetails` - Details of a specific journey

---

## Tips

1. **Find station IDs first**: Always use `search.sh` to find the correct station ID before querying departures or routes.

2. **Station vs Stop**: Major stations have multiple platforms - the main station ID covers all platforms.

3. **Real-time data**: Departures include real-time delays when available.

4. **Austria-wide**: This API covers all Austrian public transport, not just Vienna.

5. **Cross-border**: Some routes extend to neighboring countries (Germany, Czech Republic, etc.).

Overview

This skill provides access to Austria's public transport data (VOR AnachB) via the HAFAS API. It queries real-time departures, searches stations/stops, plans routes between locations, and reports current service disruptions across Austria. Use it to get schedules, delays, platform info, and trip itineraries for trains, trams, buses, and metro.

How this skill works

The skill uses HAFAS methods to search locations (LocMatch), fetch station boards (StationBoard), plan trips (TripSearch), and list service messages (HimSearch). You can resolve a station name to an internal ID, request live departures with delays and platforms, compute multi-leg routes with durations and transfers, and filter disruptions by transport category. Responses include standard fields like line, direction, departure/arrival times, duration, changes, and coordinates.

When to use it

  • Find station or stop IDs before making other queries
  • Check real-time departures and platform information
  • Plan a door-to-door trip between two locations in Austria
  • Monitor current service disruptions for trains, buses, or trams
  • Get detailed journey legs and transfer counts for complex itineraries

Best practices

  • Always run a station search first to obtain the correct extId for reliable results
  • Request a few alternative route results when planning longer trips to compare durations and transfers
  • Specify a reasonable departure count for station boards to avoid excessive data
  • Filter disruptions by category (TRAIN, BUS, etc.) to focus on relevant messages
  • Trust departures for real-time delays but allow a buffer for last-minute changes

Example use cases

  • Search "Wien Hauptbahnhof" to get the station extId and coordinates
  • Query departures at Wien Stephansplatz to see the next U-Bahn and tram services with platform info
  • Plan a route from Graz Hbf to Wien Hbf and compare options with different numbers of transfers
  • List current TRAIN disruptions to evaluate whether long-distance services are affected
  • Find next departures at Linz Hbf including delay minutes and track numbers

FAQ

Do results include live delays?

Yes. Departures include real-time delay information when available.

Can I plan cross-border trips?

Yes. The API covers some international connections to neighboring countries.

What transport modes are supported?

Trains (ICE/RJ/IC/REX), S-Bahn, U-Bahn, trams, buses, and demand-responsive services are supported.