Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

cta克塔

Agent Skill

cta 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,736

周安装

614

GitHub Stars

公开资料未说明

下载量

4,912
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cta(克塔)
来源仓库:https://github.com/brianleach/cta
安装命令:
openclaw skills install cta
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install cta

简介

用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 芝加哥 CTA 交通 — 实时 L 火车到达、巴士预测、服务提醒和路线信息。
  • 当用户询问芝加哥公共交通、L train 状态或服务问题时应该使用此技能。

SKILL.md

name
cta
description
Chicago CTA transit — real-time L train arrivals, bus predictions, service alerts, and route info. Use when the user asks about Chicago public transit, L train schedules, CTA bus times, service alerts, or nearby stops.
homepage
https://github.com/brianleach/cta-skill
license
MIT
metadata
clawhub
emoji
🚇
tags
[transit, chicago, cta, transportation, bus, train, l-train, schedule]
requires
bins
["node", "unzip"]
env
["CTA_TRAIN_API_KEY", "CTA_BUS_API_KEY"]
files
["scripts/cta.mjs"]
install
kind
shell
command
npm install --prefix $SKILL_DIR
label
Install Node.js dependencies

CTA Chicago Transit

Real-time Chicago CTA transit data — L train arrivals, bus predictions, service alerts, and route information. Requires free API keys for train and bus data; alerts work without any keys.

When to Use

  • User asks about CTA, L train, Blue Line, Red Line, Brown Line, or any Chicago rail line
  • User asks about Chicago bus routes, bus tracker, or train tracker
  • User asks "when is the next train" or "is the Red Line running" in a Chicago context
  • User mentions specific CTA stations (O'Hare, Midway, Clark/Lake, Belmont, etc.)
  • User asks about CTA fares, Ventra, or how to ride Chicago transit
  • User asks about CTA service alerts, delays, or detours
  • User asks about nearby stops or route information in Chicago

Data Sources

CTA uses 3 proprietary REST APIs. Train Tracker and Bus Tracker require free API keys. Customer Alerts is open access.

Train Tracker API (requires CTA_TRAIN_API_KEY)

Get a free key at: https://www.transitchicago.com/developers/traintrackerapply/

EndpointDescription
Arrivals by station (mapid)Train arrivals at a parent station
Arrivals by stop (stpid)Train arrivals at a directional stop
Train positions (rt)Live positions of all trains on a line
Follow a run (runnumber)Track a specific train run

Data refreshes approximately once per minute. Daily limit: 50,000 requests per key.

Bus Tracker API v2 (requires CTA_BUS_API_KEY)

Get a free key at: https://www.transitchicago.com/developers/bustracker/

EndpointDescription
Predictions by stopBus arrival predictions at a stop
Predictions by vehiclePredictions for a specific bus
Vehicle locationsLive bus positions on a route
Routes listAll active bus routes
Route directionsAvailable directions for a route
Stops for route/directionAll stops along a route

Bus data updates approximately every 30 seconds.

Customer Alerts API (NO key required)

EndpointDescription
Route statusesCurrent status of all routes
All alertsAll active service alerts
Alerts by routeAlerts filtered by route
Alerts by stationAlerts filtered by station

GTFS Static Feed

FeedFormatURL
GTFS Static (zip)ZIPhttps://www.transitchicago.com/downloads/sch_data/google_transit.zip

Used for stop names, route info, and schedule lookups. Same stop IDs used across all APIs.

Implementation

Quick Start: Use the helper scripts

The scripts in this skill's scripts/ directory handle fetching, parsing, and presenting CTA data.

Script: scripts/cta.mjs

Main entry point. Supports these commands:

# L train arrivals
node scripts/cta.mjs arrivals --station "Clark/Lake"
node scripts/cta.mjs arrivals --mapid 40380
node scripts/cta.mjs arrivals --stop 30070
node scripts/cta.mjs arrivals --stop-search "ohare"
node scripts/cta.mjs arrivals --stop-search "belmont" --route Red

# Bus predictions
node scripts/cta.mjs bus-arrivals --stop 456
node scripts/cta.mjs bus-arrivals --stop 456 --route 22
node scripts/cta.mjs bus-arrivals --stop-search "michigan"

# Vehicle tracking
node scripts/cta.mjs vehicles --route Red
node scripts/cta.mjs bus-vehicles --route 22

# Service alerts
node scripts/cta.mjs alerts
node scripts/cta.mjs alerts --route Red

# Routes and stops
node scripts/cta.mjs routes
node scripts/cta.mjs bus-routes
node scripts/cta.mjs stops --search "belmont"
node scripts/cta.mjs stops --near 41.8781,-87.6298 --radius 0.3
node scripts/cta.mjs route-info --route Red
node scripts/cta.mjs route-info --route 22

# Maintenance
node scripts/cta.mjs refresh-gtfs

Setup: API Keys

Train and bus commands require free API keys:

  1. Train Tracker key: Apply at https://www.transitchicago.com/developers/traintrackerapply/
  2. Bus Tracker key: Apply at https://www.transitchicago.com/developers/bustracker/
  3. Set environment variables: CTA_TRAIN_API_KEY and CTA_BUS_API_KEY

Alert commands work without any keys.

Setup: GTFS Static Data

On first use, run node scripts/cta.mjs refresh-gtfs to download and extract the static GTFS data (routes, stops, schedules) to ~/.cta/gtfs/. This only needs to be refreshed when CTA updates their schedule.

L Train Lines Reference

Route CodeLineTerminals
RedRed LineHoward ↔ 95th/Dan Ryan
BlueBlue LineO'Hare ↔ Forest Park
BrnBrown LineKimball ↔ Loop
GGreen LineHarlem/Lake ↔ Ashland/63rd or Cottage Grove
OrgOrange LineMidway ↔ Loop
PPurple LineLinden ↔ Howard (Express to Loop weekdays)
PinkPink Line54th/Cermak ↔ Loop
YYellow LineDempster-Skokie ↔ Howard

Key Bus Routes Reference

RouteNameNotes
22ClarkMajor north-south corridor
36BroadwayNorth Side lakefront
77BelmontMajor east-west crosstown
151SheridanLakefront express
146Inner Drive/Michigan ExpressLoop to north lakefront
8HalstedLong north-south route
9AshlandMajor north-south corridor
49WesternLongest route in system
66ChicagoMajor east-west route
7979thMajor south side east-west

CTA Fares Reference (2026)

Fare TypePrice
Regular (Ventra/contactless)$2.50
Bus transfer$0.25
Rail-to-rail transferFree within 2 hours
Reduced fare$1.25
1-Day Pass$5.00
3-Day Pass$15.00
7-Day Pass$20.00
30-Day Pass$75.00

Payment via Ventra card, Ventra app, or contactless bank card. Transfers valid for 2 hours.

Tips for Users

  • Station IDs are in the 4xxxx range (parent stations); stop IDs in the 3xxxx range (directional)
  • Use --station or --stop-search for name-based lookups; use --mapid for exact station IDs
  • Alerts always work — no API key needed — so check alerts first if something seems wrong
  • Train data refreshes ~1 minute; bus data refreshes ~30 seconds
  • For the Loop, trains may show as arriving from different directions depending on the line

Error Handling

  • If CTA_TRAIN_API_KEY is not set, train commands print a helpful message with the signup URL
  • If CTA_BUS_API_KEY is not set, bus commands print a helpful message with the signup URL
  • Alert commands always work (no key required)
  • Invalid station/stop searches show "No matching station found" with suggestions
  • Network errors and API error responses produce friendly messages

Response Formatting

When presenting transit info to the user:

  • Lead with the most actionable info (next arrival time, active alerts)
  • Show times in 12-hour format with AM/PM
  • Include line color AND destination (e.g., "Red Line toward 95th/Dan Ryan")
  • For trains: show "Due" for imminent arrivals, minutes for upcoming
  • For bus predictions, show estimated minutes until arrival
  • If there are active service alerts for the route being queried, always mention them

External Endpoints

EndpointData SentData Received
https://lapi.transitchicago.com/api/1.0/ttarrivals.aspxAPI key (query param, HTTPS)Train arrivals (JSON)
https://lapi.transitchicago.com/api/1.0/ttpositions.aspxAPI key (query param, HTTPS)Train positions (JSON)
https://lapi.transitchicago.com/api/1.0/ttfollow.aspxAPI key (query param, HTTPS)Train run details (JSON)
https://www.ctabustracker.com/bustime/api/v2/*API key (query param, HTTPS)Bus predictions/positions (JSON)
https://www.transitchicago.com/api/1.0/routes.aspxNone (GET only)Route statuses (JSON)
https://www.transitchicago.com/api/1.0/alerts.aspxNone (GET only)Service alerts (JSON)
https://www.transitchicago.com/downloads/sch_data/google_transit.zipNone (GET only)GTFS static data (ZIP)

All API calls use HTTPS. API keys are passed as query parameters to CTA's official APIs. No other user data is transmitted.

Security & Privacy

  • API keys required — Train and Bus Tracker APIs require free developer keys passed as URL query parameters
  • No user data transmitted — requests contain only API keys and route/stop identifiers, no personal information
  • Local storage only — GTFS static data is cached locally at ~/.cta/gtfs/; no data is written elsewhere
  • No telemetry — this skill does not phone home or collect usage data
  • Input handling — stop names and route IDs from user input are used only for local filtering, never interpolated into shell commands

Trust Statement

This skill reads publicly available transit data from CTA's official APIs. API keys are used only for CTA API authentication. The skill does not access, store, or transmit any personal information beyond the API keys configured by the user.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.54%
按下载量换算4,644

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills