Austin CapMetro transit - real-time vehicle positions, next arrivals, service alerts, route info, and trip planning for buses and rail (MetroRail, MetroRapid...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install capmetro-skill或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install capmetro-skill⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/capmetro-skill/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: capmetro-skill description: Austin CapMetro transit - real-time vehicle positions, next arrivals, service alerts, route info, and trip planning for buses and rail (MetroRail, MetroRapid, MetroBus). Use when the user asks about Austin public transit, bus schedules, train times, CapMetro alerts, or nearby stops. homepage: "https://github.com/brianleach/capmetro-skill" license: MIT metadata: clawdbot: emoji: "🚌" tags: [transit, austin, capmetro, transportation, bus, train, schedule] requires: bins: ["node", "unzip"] env: [] files: ["scripts/capmetro.mjs", "scripts/gtfs-realtime.proto"] install: - id: npm-deps kind: shell command: "npm install --prefix $SKILL_DIR protobufjs" label: "Install protobufjs Node.js dependency" ---
Real-time Austin CapMetro transit data - vehicle positions, next arrivals, service alerts, and route information. No API key required.
All feeds are open access, no API key required, hosted on the Texas Open Data Portal.
| Feed | Format | URL | |------|--------|-----| | Vehicle Positions | JSON | https://data.texas.gov/download/cuc7-ywmd/text%2Fplain | | Vehicle Positions | Protobuf | https://data.texas.gov/download/eiei-9rpf/application%2Foctet-stream | | Trip Updates | Protobuf | https://data.texas.gov/download/rmk2-acnw/application%2Foctet-stream | | Service Alerts | Protobuf | https://data.texas.gov/download/nusn-7fcn/application%2Foctet-stream |
| Feed | Format | URL | |------|--------|-----| | GTFS Static (zip) | ZIP | https://data.texas.gov/download/r4v4-vz24/application%2Fx-zip-compressed |
The scripts in this skill's scripts/ directory handle fetching, parsing, and presenting CapMetro data.
scripts/capmetro.mjsMain entry point. Supports these commands:
# Get current service alerts
node scripts/capmetro.mjs alerts
# Get real-time vehicle positions (optionally filter by route)
node scripts/capmetro.mjs vehicles [--route 801]
# Get next arrivals at a stop (by stop_id)
node scripts/capmetro.mjs arrivals --stop <stop_id>
# Get arrivals by searching stop name (uses best match)
node scripts/capmetro.mjs arrivals --stop-search "lakeline" --route 550
# Get arrivals filtered by direction/headsign
node scripts/capmetro.mjs arrivals --stop-search "downtown" --route 550 --headsign "lakeline"
# Get arrivals filtered by route at a stop
node scripts/capmetro.mjs arrivals --stop <stop_id> --route 801
# Search for stops by name or location
node scripts/capmetro.mjs stops --search "domain"
node scripts/capmetro.mjs stops --near 30.4,-97.7
# List all routes
node scripts/capmetro.mjs routes
# Get route details including stops
node scripts/capmetro.mjs route-info --route 801
# Download/refresh GTFS static data (run periodically)
node scripts/capmetro.mjs refresh-gtfs
On first use, run node scripts/capmetro.mjs refresh-gtfs to download and extract the static GTFS data (routes, stops, schedules) to ~/.capmetro/gtfs/. This only needs to be refreshed when CapMetro updates their schedule (typically quarterly or during service changes).
| Route | Name | Type | |-------|------|------| | 550 | MetroRail Red Line | Rail (Leander ↔ Downtown) | | 801 | MetroRapid North/South | Rapid Bus (Tech Ridge ↔ Southpark Meadows) | | 803 | MetroRapid Burnet/South Lamar | Rapid Bus (Domain ↔ Westgate) | | 1 | N Lamar/S Congress | Local Bus | | 7 | Duval/Dove Springs | Local Bus | | 10 | S 1st/Red River | Local Bus | | 20 | Manor Rd/Riverside | Local Bus | | 300 | Oltorf/Riverside Crosstown | Crosstown Bus | | 325 | Ohlen/Loyola | Crosstown Bus | | 985 | Night Owl | Late Night Service |
stops commandWhen presenting transit info to the user:
| Fare Type | Price | |-----------|-------| | Local / MetroRapid | $1.25 | | MetroRail | $3.50 (single) | | Day Pass | $2.50 | | 7-Day Pass | $11.25 | | 31-Day Pass | $41.25 |
Payment via Umo app, tap-to-pay, or fare card. Free transfers within 2 hours.
| Endpoint | Data Sent | Data Received | |----------|-----------|---------------| | data.texas.gov/download/cuc7-ywmd/... | None (GET only) | Vehicle positions (JSON) | | data.texas.gov/download/eiei-9rpf/... | None (GET only) | Vehicle positions (Protobuf) | | data.texas.gov/download/rmk2-acnw/... | None (GET only) | Trip updates (Protobuf) | | data.texas.gov/download/nusn-7fcn/... | None (GET only) | Service alerts (Protobuf) | | data.texas.gov/download/r4v4-vz24/... | None (GET only) | GTFS static data (ZIP) |
All endpoints are open-access Texas Open Data Portal URLs. No API key, authentication, or user data is transmitted.
~/.capmetro/gtfs/; no data is written elsewhereThis skill only reads publicly available transit data from the Texas Open Data Portal. It does not access, store, or transmit any personal information. All network requests are read-only GET calls to open government data feeds.
安装 Capmetro Skill 后,可以对 AI 说这些话来触发它
Help me get started with Capmetro Skill
Explains what Capmetro Skill does, walks through the setup, and runs a quick demo based on your current project
Use Capmetro Skill to austin CapMetro transit - real-time vehicle positions, next arrival...
Invokes Capmetro Skill with the right parameters and returns the result directly in the conversation
What can I do with Capmetro Skill in my developer & devops workflow?
Lists the top use cases for Capmetro Skill, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/capmetro-skill/ 目录(个人级,所有项目可用),或 .claude/skills/capmetro-skill/(项目级)。重启 AI 客户端后,用 /capmetro-skill 主动调用,或让 AI 根据上下文自动发现并使用。
Capmetro Skill 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Capmetro Skill 可免费安装使用。请查阅仓库了解许可证信息。
Austin CapMetro transit - real-time vehicle positions, next arrivals, service alerts, route info, and trip planning for buses and rail (MetroRail, MetroRapid...
Capmetro Skill 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Capmetro Skill
Identifies repetitive steps in your workflow and sets up Capmetro Skill to handle them automatically