An NHL TUI
- explore calendar of games, see game details and scores
- view team standings, rosters, and leaders
- see player stats and bios
npm install -g puckbun run dev# Discover commands for agents
puck commands --format=json
puck help lookup
# Games by date (agent-friendly JSON)
puck date --date today --format json
# Filter by team
puck date --date 2026-03-02 --team DAL --format table
# Parsed game payload: plays, scorers, assists, stars, goalie stats
puck game --id 2025020956 --format json
# Stream parsed plays as NDJSON
puck game --id 2025020956 --plays-only --format ndjson
# Standings snapshot with day-over-day movement deltas
puck standings --date yesterday --format json
puck standings --date yesterday --team DAL --format table
# Goal highlight clips + direct media URL resolution (Brightcove)
puck highlights --date yesterday --team DAL --limit 2 --format json
puck highlights --game-id 2025020956 --format table
# Lookup IDs for piping
puck lookup player --query "connor mcdavid" --ids-only
puck lookup game --date today --team DAL --ids-only--format jsonemits one JSON document.--format ndjsonemits one JSON object per line.--ids-onlyemits bare IDs, one per line (ideal for piping).