✓
Purpose & Capability
The name/description say it will call the v6.bvg.transport.rest API for journeys, departures, and refreshes — and the SKILL.md and references describe exactly those endpoints. The claimed capability (route planning for Berlin) is consistent with the code and documentation.
ℹ
Instruction Scope
SKILL.md stays within the BVG API surface and does not request unrelated files, env vars, or external endpoints. However, the SKILL.md includes implementation guidance (resolve stops to base IBNR, use refreshToken, prefer stop IDs, etc.) that the provided script does not fully implement (the script directly calls /journeys with the raw from/to and does not perform a /stops or /locations lookup nor implement refresh behavior). This is a scope mismatch between instructions and the helper script.
!
Install Mechanism
The skill has no install spec (instruction-only), but the included script requires runtime binaries (python3 for URL encoding, curl, and jq) which the skill metadata does not declare. That mismatch can cause runtime failures and indicates the metadata is incomplete. No remote download/execute URLs are used, so there is no high-risk installer, but undeclared dependencies are a practical issue.
✓
Credentials
The skill requests no environment variables or credentials (the API is public and no auth is required according to references). No secrets or unrelated credentials are requested. This is proportionate to a public transit routing skill.
✓
Persistence & Privilege
always is false and the skill does not request persistent system privileges or claim to modify other skills or global agent settings. It does not store credentials or request special config paths.
What to consider before installing
What to consider before installing/using this skill:
- Missing runtime dependencies: The bundled script uses python3 (for URL encoding), curl, and jq, but the skill metadata lists no required binaries. Ensure your environment provides python3, curl, and jq or the script will fail. Ask the author to declare these in the metadata or provide an install step.
- IBNR inconsistency: SKILL.md says "base IBNR codes only (6 digits)" but the example given (900110001) is not 6 digits. This is a documentation bug that can cause incorrect stop IDs to be used. Confirm with the author which ID format the API actually expects and update the docs or the code.
- Script vs docs mismatch: The README/ SKILL.md recommends resolving names to stop IDs (/stops or /locations), using refresh tokens, and adding entrances=true when needed. The provided scripts/journeys.sh is a minimal wrapper that skips the /stops resolution and does not implement refresh handling. If you rely on the skill to automatically resolve names to deterministic stop IDs or to refresh journeys, request an updated implementation.
- No obvious exfiltration or secret requests: The skill only calls the public v6.bvg.transport.rest API and does not attempt to read files or environment secrets. There are no suspicious remote install URLs. That limits security risk, but the metadata omissions and doc inconsistencies reduce trustworthiness.
Recommendations:
- Ask the publisher to (1) declare required binaries (python3, curl, jq) in the metadata or provide an install spec, (2) fix the IBNR description and examples, and (3) align the helper script with SKILL.md guidance (resolve stops, support refresh tokens, or clearly mark the script as a minimal example).
- If you will run the included script, do so in an environment where you control/examine inputs and have the required binaries installed. If you need a fully-featured skill, request an updated release that addresses the points above.