Agent skill · Workflow & Productivity

anachb

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill a-nach-b --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/api/a-nach-b/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Quick Reference
  2. 1. Search Stations/Stops
  3. 2. Real-Time Departures
  4. 3. Route Planning
  5. 4. Disruptions
  6. Common Station IDs
  7. Transport Types
  8. API Details (for advanced usage)
  9. Tips
Ships with 1 file
  • metadata.json
Commands it runs
curl -s -X POST "https://vao.demo.hafas.de/gate" \
More from claude-skill-registry
All skills →
About this skill
What does the anachb skill do?

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.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill a-nach-b --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going