โ† All skills
Tencent SkillHub ยท Developer Tools

NS Trains

Check Dutch train schedules, departures, disruptions, and plan journeys using the NS API. Perfect for daily commute checks.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Check Dutch train schedules, departures, disruptions, and plan journeys using the NS API. Perfect for daily commute checks.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SECURITY.md, SKILL.md, scripts/arrivals.mjs, scripts/commute.mjs, scripts/departures.mjs, scripts/disruptions.mjs

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

NS Trains Skill

Check Dutch train schedules, departures, disruptions, and plan journeys using the official NS (Nederlandse Spoorwegen) API.

1. Get an NS subscription key

Go to NS API Portal Create an account and subscribe to the Ns-App product (free tier available) Copy your Primary Key

2. Set Environment Variables

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.

๐Ÿš† Commute shortcuts

node {baseDir}/scripts/commute.mjs --to-work # Morning: Home โ†’ Work node {baseDir}/scripts/commute.mjs --to-home # Evening: Work โ†’ Home

Plan any journey

node {baseDir}/scripts/journey.mjs --from "Utrecht Centraal" --to "Amsterdam Zuid"

Check departures from a station

node {baseDir}/scripts/departures.mjs --station "Amsterdam Centraal"

Check arrivals at a station

node {baseDir}/scripts/arrivals.mjs --station "Rotterdam Centraal"

Search for stations

node {baseDir}/scripts/stations.mjs amsterdam node {baseDir}/scripts/stations.mjs --search "den haag"

Check current disruptions

node {baseDir}/scripts/disruptions.mjs node {baseDir}/scripts/disruptions.mjs --from "Utrecht" --to "Amsterdam"

Natural Language

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?"

Output

Returns journey options with: Departure/arrival times Real-time delays Duration Transfers Platform numbers Disruption warnings Crowdedness forecast (๐ŸŸข low / ๐ŸŸก medium / ๐Ÿ”ด high)

Commands Reference

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

API Endpoints Used

/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

Reference

NS API Portal: https://apiportal.ns.nl/ Documentation: https://apiportal.ns.nl/startersguide Free tier: 5000 requests/day

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts2 Docs
  • SKILL.md Primary doc
  • SECURITY.md Docs
  • scripts/arrivals.mjs Scripts
  • scripts/commute.mjs Scripts
  • scripts/departures.mjs Scripts
  • scripts/disruptions.mjs Scripts