# Send SubwaySkill 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": "subwayskill",
    "name": "SubwaySkill",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/nyluke/subwayskill",
    "canonicalUrl": "https://clawhub.ai/nyluke/subwayskill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/subwayskill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=subwayskill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "main.go",
      "internal/display/display.go",
      "internal/station/station.go",
      "internal/station/data/stations.csv"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "subwayskill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T06:09:30.111Z",
      "expiresAt": "2026-05-07T06:09:30.111Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=subwayskill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=subwayskill",
        "contentDisposition": "attachment; filename=\"subwayskill-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "subwayskill"
      },
      "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/subwayskill"
    },
    "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/subwayskill",
    "downloadUrl": "https://openagent3.xyz/downloads/subwayskill",
    "agentUrl": "https://openagent3.xyz/skills/subwayskill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/subwayskill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/subwayskill/agent.md"
  }
}
```
## Documentation

### NYC Subway Departure Times

Run the subwayskill CLI to answer questions about NYC subway times.

### Commands

# All default stations (Clinton-Washington C, Bergen 2/3, 7 Av Q, Atlantic Av 4/5)
subwayskill

# Specific line and station (fuzzy match — lowercase, partial names work)
subwayskill C clinton-washington
subwayskill 2 bergen

# Filter direction: N (northbound/Manhattan) or S (southbound/Brooklyn)
subwayskill 2 bergen -d N

# Future time — automatically falls back to static schedule
subwayskill 2 bergen -t 19:00

# JSON output for structured data
subwayskill --json
subwayskill C clinton-washington --json

# Control time window (minutes)
subwayskill 2 bergen -w 60

### Interpreting output

realtime: live data from MTA GTFS-RT feeds, shows relative times ("3 min") and absolute times
scheduled: static GTFS schedule fallback, shows absolute times only — used when the requested time is beyond realtime coverage
Directions show destination labels when available (e.g., "Manhattan-bound", "Coney Island-bound")

### Tips

Station names are fuzzy-matched: "clinton" finds "Clinton-Washington Avs", "atlantic" finds "Atlantic Av-Barclays Ctr"
If the user doesn't specify a station, run with no args to show all defaults
If the user asks about a future time (e.g., "when's the 2 train at Bergen at 7pm?"), use -t HH:MM
Use --json when you need to do further processing or comparisons
An unknown station returns suggestions — relay those to the user
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nyluke
- Version: 1.0.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-04-30T06:09:30.111Z
- Expires at: 2026-05-07T06:09:30.111Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/subwayskill)
- [Send to Agent page](https://openagent3.xyz/skills/subwayskill/agent)
- [JSON manifest](https://openagent3.xyz/skills/subwayskill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/subwayskill/agent.md)
- [Download page](https://openagent3.xyz/downloads/subwayskill)