@jonze/puck
v0.3.0
Published
NHL Terminal UI for real-time stats and game tracking
Readme
Puck ⚫︎
An NHL TUI
- explore calendar of games, see game details and scores
- view team standings, rosters, and leaders
- see player stats and bios
Install
npm install -g puckDev
bun run devHeadless CLI
# 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
# Lookup IDs for piping
puck lookup player --query "connor mcdavid" --ids-only
puck lookup game --date today --team DAL --ids-onlyAgent Notes
--format jsonemits one JSON document.--format ndjsonemits one JSON object per line.--ids-onlyemits bare IDs, one per line (ideal for piping).
