# Send Mvg to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mvg-cli",
    "name": "Mvg",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Lars147/mvg-cli",
    "canonicalUrl": "https://clawhub.ai/Lars147/mvg-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mvg-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mvg-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "mvg_cli.py",
      "pyproject.toml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mvg-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T21:43:41.532Z",
      "expiresAt": "2026-05-12T21:43:41.532Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mvg-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mvg-cli",
        "contentDisposition": "attachment; filename=\"mvg-cli-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mvg-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mvg-cli"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mvg-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/mvg-cli",
    "agentUrl": "https://openagent3.xyz/skills/mvg-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mvg-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mvg-cli/agent.md"
  }
}
```
## Documentation

### MVG CLI

Munich public transport from the terminal. Uses the unofficial MVG API (bgw-pt/v3) — no auth needed.

### Setup

CLI: python3 <skill_dir>/mvg_cli.py
Dependencies: Python 3, urllib (stdlib only)
S-Bahn Live: Requires node + ws module for WebSocket connection

### Commands

# Station search
mvg search "Marienplatz"

# Departures
mvg departures "Marienplatz"
mvg departures "Marienplatz" --type ubahn --limit 20
mvg departures "Daglfing" --offset 5          # +5min walking time

# Route planning (stations or addresses)
mvg route "Marienplatz" "Garching"
mvg route "Hauptstr. 1, München" "Flughafen"  # address support
mvg route "Pasing" "Ostbahnhof" --time "08:30" --mode less-changes

# Nearby stations
mvg nearby                                     # default coords
mvg nearby 48.1351 11.5820

# Service alerts
mvg alerts
mvg alerts --station "Marienplatz"

# Lines
mvg lines --type sbahn

# S-Bahn live tracking (real-time via geOps WebSocket)
mvg live                                       # all S-Bahn lines
mvg live --line S3                             # specific line

All commands support --json for machine-readable output.

### Transport Type Filters

Use with --type or --exclude: ubahn, sbahn, bus, tram, bahn (RE/RB), regionalbus, ruftaxi

### Route Options

--mode: fast (default), less-changes, less-walking
--walk-speed: slow, normal (default), fast
--accessible: wheelchair-accessible routes only
--via "Station": route via intermediate stop
--arrive: interpret --time as arrival time

### API Notes

Base URL: https://www.mvg.de/api/bgw-pt/v3/
Endpoints: /locations, /departures, /routes, /stations/nearby, /lines, /messages
Arrival time in route responses: use to.plannedDeparture (not plannedArrival)
S-Bahn live: wss://api.geops.io/realtime-ws/v1/ with GET sbm_full + SUB sbm_full + BBOX
Delays from geOps are in milliseconds
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Lars147
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T21:43:41.532Z
- Expires at: 2026-05-12T21:43:41.532Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mvg-cli)
- [Send to Agent page](https://openagent3.xyz/skills/mvg-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/mvg-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mvg-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/mvg-cli)