skills$openclaw/trimet
mjrussell6.2k

by mjrussell

trimet – OpenClaw Skill

trimet is an OpenClaw Skills integration for coding workflows. Get Portland transit information including arrivals, trip planning, and alerts. Use when user asks about buses, MAX, trains, or transit in Portland.

6.2k stars65 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nametrimet
descriptionGet Portland transit information including arrivals, trip planning, and alerts. Use when user asks about buses, MAX, trains, or transit in Portland. OpenClaw Skills integration.
ownermjrussell
repositorymjrussell/trimet
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mjrussell/trimet
last updatedFeb 7, 2026

Maintainer

mjrussell

mjrussell

Maintains trimet in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
267 B
SKILL.md
2.3 KB
SKILL.md

name: trimet description: Get Portland transit information including arrivals, trip planning, and alerts. Use when user asks about buses, MAX, trains, or transit in Portland. homepage: https://trimet.org metadata: clawdbot: emoji: "🚃" requires: bins: ["trimet"] env: ["TRIMET_APP_ID"]

TriMet CLI

CLI for TriMet Portland transit data. Check arrivals, plan trips, and view alerts.

Installation

npm install -g trimet-cli

Setup

  1. Get free API key from https://developer.trimet.org/
  2. Set environment variable: export TRIMET_APP_ID="your-key"

Commands

Arrivals

trimet arrivals <stop-id>              # Real-time arrivals
trimet arrivals 8383 --line 90         # Filter by route
trimet arrivals 8383 --json

Trip Planning

trimet trip -f <from> -t <to>
trimet trip -f 8383 -t 9969
trimet trip -f "Pioneer Square" -t "PDX Airport"
trimet trip -f 8383 -t 9969 --arrive-by "5:30 PM"
trimet trip -f 8383 -t 9969 --depart-at "2:00 PM"
trimet trip -f 8383 -t 9969 --json

Next Departures

trimet next -f <from> -t <to>          # Simplified view
trimet next -f 8383 -t 9969 -c 5       # Show 5 options
trimet next -f 8383 -t 9969 --line 90  # Filter by route

Service Alerts

trimet alerts                          # All alerts
trimet alerts --route 90               # Alerts for route
trimet alerts --json

Common Stop IDs

  • Pioneer Courthouse Square: 8383 (westbound), 8384 (eastbound)
  • PDX Airport: 10579
  • Portland Union Station: 7787
  • Beaverton TC: 9969

Usage Examples

User: "When's the next MAX?"

trimet arrivals 8383

User: "How do I get to the airport?"

trimet trip -f "Pioneer Square" -t "PDX Airport"

User: "I need to be downtown by 5pm"

trimet trip -f <user-location-stop> -t 8383 --arrive-by "5:00 PM"

User: "Are there any delays on the Blue Line?"

trimet alerts --route 100

User: "Next trains to Beaverton"

trimet next -f 8383 -t 9969

Route Numbers

  • MAX Blue Line: 100
  • MAX Red Line: 90
  • MAX Yellow Line: 190
  • MAX Orange Line: 290
  • MAX Green Line: 200

Notes

  • Stop IDs are displayed at TriMet stops and on trimet.org
  • Addresses work for trip planning (e.g., "Pioneer Square, Portland")
  • Times support natural formats ("5:30 PM", "17:30")
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install trimet?

Run openclaw add @mjrussell/trimet in your terminal. This installs trimet into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mjrussell/trimet. Review commits and README documentation before installing.