Trein extended
Analysis
This is a coherent Dutch train-information skill that installs and uses the trein CLI with an NS API key, with only normal install, credential, and local-storage cautions.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
npm i -g trein ... "url":"https://github.com/joelkuijper/trein/releases/latest/download/trein-linux-x64"
The skill installs an external CLI package or downloads latest-release binaries without a pinned version or checksum in the artifact.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
requires":{"bins":["trein"],"env":["NS_API_KEY"]} ... export NS_API_KEY="your-api-key"The skill requires an NS API key, which is appropriate for accessing the Dutch Railways API but is still a credential.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Or create `~/.config/trein/trein.config.json`: { "apiKey": "your-api-key" } ... trein alias set home "Amsterdam Centraal"The skill documents persistent local configuration and station aliases, which can store a credential and personal travel-related locations.
