Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Check Dutch train schedules, departures, disruptions, and plan journeys using the NS API. Perfect for daily commute checks.
Check Dutch train schedules, departures, disruptions, and plan journeys using the NS API. Perfect for daily commute checks.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Check Dutch train schedules, departures, disruptions, and plan journeys using the official NS (Nederlandse Spoorwegen) API.
Go to NS API Portal Create an account and subscribe to the Ns-App product (free tier available) Copy your Primary Key
export NS_SUBSCRIPTION_KEY="your-subscription-key-here" # preferred # Back-compat: export NS_API_KEY="$NS_SUBSCRIPTION_KEY" # legacy name still supported # Optional: Configure commute stations for quick shortcuts export NS_HOME_STATION="Utrecht Centraal" export NS_WORK_STATION="Amsterdam Zuid" For security, prefer injecting these env vars via your runtime secret mechanism rather than committing them anywhere. Avoid printing or sharing your subscription key.
node {baseDir}/scripts/commute.mjs --to-work # Morning: Home โ Work node {baseDir}/scripts/commute.mjs --to-home # Evening: Work โ Home
node {baseDir}/scripts/journey.mjs --from "Utrecht Centraal" --to "Amsterdam Zuid"
node {baseDir}/scripts/departures.mjs --station "Amsterdam Centraal"
node {baseDir}/scripts/arrivals.mjs --station "Rotterdam Centraal"
node {baseDir}/scripts/stations.mjs amsterdam node {baseDir}/scripts/stations.mjs --search "den haag"
node {baseDir}/scripts/disruptions.mjs node {baseDir}/scripts/disruptions.mjs --from "Utrecht" --to "Amsterdam"
Just ask: "When is the next train to Amsterdam?" "Check trains from Utrecht to Rotterdam" "Any train disruptions today?" "Plan my commute to work" "What time does the train arrive?"
Returns journey options with: Departure/arrival times Real-time delays Duration Transfers Platform numbers Disruption warnings Crowdedness forecast (๐ข low / ๐ก medium / ๐ด high)
CommandDescriptioncommute.mjs [work|home]Quick commute check (requires NS_HOME_STATION & NS_WORK_STATION)journey.mjs --from X --to YPlan a journey between any stationsdepartures.mjs --station XList departures from a stationarrivals.mjs --station XList arrivals at a stationstations.mjs [query]Search for station namesdisruptions.mjsCheck current disruptions
/reisinformatie-api/api/v3/trips - Journey planning /reisinformatie-api/api/v2/arrivals - Arrivals /reisinformatie-api/api/v2/departures - Departures /reisinformatie-api/api/v3/disruptions - Disruptions /reisinformatie-api/api/v2/stations - Station search
NS API Portal: https://apiportal.ns.nl/ Documentation: https://apiportal.ns.nl/startersguide Free tier: 5000 requests/day
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.