reiseroute
Route planning from A to B via OSRM (Open Source Routing Machine). Supports car, bicycle and pedestrian. No API key required.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Route planning from A to B via OSRM (Open Source Routing Machine). Supports car, bicycle and pedestrian. No API key required.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Plant Unterricht, Lernangebote und individuelle Förderung ohne Berichtsgenerator oder persönliche Vorlagen.
Umbrella skill for cloud-bridged communication protocols between agents on different machines (Ping-Pong, agent-beam, listeners and future protocols). Use when coordinating work across machines via a shared sync folder or message yard.
Self-tuning cadence control loop for recurring agent scans. Use when a scheduled scan should sharpen its interval on activity and cool down on silence, without operator intervention.
Führt einen Hackathon end-to-end als Operator: von der Ausschreibung über Analyse, Ideenfindung, Bau, Beweisführung, Medienproduktion bis zur Einreichung — mit Zwischenstandsspeicher (STATE.md), aus dem jede Phase wieder aufgenommen werden kann. Der Nutzer ist human-in-the-loop: Richtungsvorgaben, Abnahmen und alle unumkehrbaren Aktionen (Public, Upload, Submit) bleiben beim Menschen.
Compose video-synced background scores from a storyline JSON using local waveform synthesis (numpy + ffmpeg). Styles: chiptune, ambient, electronic. Deterministic, offline, no cloud service.
Ordnet Büroaufgaben, Korrespondenz und Fristen ohne Bindung an eine bestimmte Office-App.
| name | reiseroute |
| version | 1.0.0 |
| category | assist |
| description | Route planning from A to B via OSRM (Open Source Routing Machine). Supports car, bicycle and pedestrian. No API key required. |
| tags | ["routing","navigation","osrm","openstreetmap","reise"] |
| standalone | true |
| anthropic_compatible | true |
| bach_compatible | false |
| bach_origin | true |
| languages | ["de","en"] |
| dependencies | {"python":["urllib.request","urllib.parse","urllib.error","json"]} |
| runtime | python3 |
| entry_point | reiseroute_core.py |
| provenance | {"origin":"BACH hub routing-service","origin_path":"system/hub/_services/routing/routing_service.py","origin_version":"1.0","origin_repo":"github.com/ellmos-ai/bach","origin_license":"MIT","last_sync_from_origin":"2026-06-22","last_sync_to_origin":"None","local_changes_since_sync":"urllib.parse-Import an den Kopf verschoben (war im Original nur im else-Zweig). geocode_place (Nominatim) integriert. Keine Origin-DB. Kein Store. Userneutral, headless, nur Stdlib.\\n"} |
| language | de |
Deutsch — Offizielle Deutsch-Version / Documento Oficial en Deutsch.
Route planning via OSRM (Open Source Routing Machine)
Plans routes between two locations (names or coordinates) via the public
OSRM service (router.project-osrm.org). Returns distance, travel time and
mode of transport. No API key, no account required.
| Phrase | Action |
|---|---|
| "Plan the route from Berlin to Hamburg" | Car route, geocode place names |
| "How long does the drive from Munich to Vienna take by car?" | Car route + time |
| "Cycle route from Potsdam to Berlin" | Bicycle mode |
| "Walk from Kreuzberg to Mitte, Berlin" | Pedestrian mode |
| "Route from 52.52,13.41 to 53.55,9.99" | Direct coordinates |
# Car route between two places (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "Berlin" "Hamburg"
# Bicycle (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "Potsdam" "Berlin" --modus fahrrad
# On foot (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "Kreuzberg, Berlin" "Mitte, Berlin" --modus fuss
# Coordinates directly (lat,lon) (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "52.5200,13.4050" "53.5500,9.9937"
# JSON output (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "Munich" "Vienna" --json
# Help (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py --help
| Mode | Alias | OSRM profile |
|---|---|---|
| auto (default) | car, pkw, fahren | driving |
| fahrrad | bike, rad, radfahren | cycling |
| fuss | foot, laufen, gehen, zu fuss | foot |
No persistent store. Routes are not saved.
Requests go to nominatim.openstreetmap.org (geocoding) and
router.project-osrm.org (routing). No login, no API key,
no persistent data storage.
location-suche — POI search (also uses Nominatim)wetter — weather at the destination| Version | Date | Change |
|---|---|---|
| 1.0.0 | 2026-06-22 | Created from BACH routing_service.py v1.0; geocoding integrated |