skills$openclaw/rejseplanen
bjarkehs1.1k

by bjarkehs

rejseplanen – OpenClaw Skill

rejseplanen is an OpenClaw Skills integration for coding workflows. Query Danish public transport departures, arrivals, and journey planning via Rejseplanen API

1.1k stars4.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namerejseplanen
descriptionQuery Danish public transport departures, arrivals, and journey planning via Rejseplanen API OpenClaw Skills integration.
ownerbjarkehs
repositorybjarkehs/rejseplanen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bjarkehs/rejseplanen
last updatedFeb 7, 2026

Maintainer

bjarkehs

bjarkehs

Maintains rejseplanen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
276 B
SKILL.md
1.7 KB
SKILL.md

name: rejseplanen description: Query Danish public transport departures, arrivals, and journey planning via Rejseplanen API metadata: {"clawdbot":{"emoji":"🚂","os":["linux","darwin","win32"],"requires":{"bins":["node"]}}}

Rejseplanen - Danish Public Transport

Query real-time train and bus departures, arrivals, and plan journeys via the Rejseplanen API.

Commands

Search for stations

node {baseDir}/dist/rejseplanen.js search "København"

Departures

node {baseDir}/dist/rejseplanen.js departures Odense
node {baseDir}/dist/rejseplanen.js departures Odense --trains
node {baseDir}/dist/rejseplanen.js departures Odense --trains --to Aalborg

Arrivals

node {baseDir}/dist/rejseplanen.js arrivals Aalborg
node {baseDir}/dist/rejseplanen.js arrivals Aalborg --trains --from Odense

Trip planning

node {baseDir}/dist/rejseplanen.js trip Odense Aalborg
node {baseDir}/dist/rejseplanen.js trip Odense "Aalborg Vestby" --time 07:00

Journey details

Show all stops for a specific train:

node {baseDir}/dist/rejseplanen.js journey Odense 75

Options

  • --trains - Show only trains
  • --buses - Show only buses
  • --to <station> - Filter departures by destination
  • --from <station> - Filter arrivals by origin
  • --time HH:MM - Departures after specified time
  • --output json|text - Output format (default: text)
  • --json - Shorthand for --output json

JSON output

For programmatic parsing, use --json:

node {baseDir}/dist/rejseplanen.js departures Odense --json

Tips

  • Use search to find station IDs, then store frequently used ones for faster lookups
  • Station IDs can be used directly instead of names (e.g., 008600512 for Odense)
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install rejseplanen?

Run openclaw add @bjarkehs/rejseplanen in your terminal. This installs rejseplanen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bjarkehs/rejseplanen. Review commits and README documentation before installing.