F1 CLI
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears aligned with querying Formula 1 data through an external command-line tool, but users should verify the CLI installation source before installing it.
This skill looks reasonable for Formula 1 data queries. Before installing, make sure you trust the external f1-cli package source, and use scoped filters for large telemetry requests.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Installing the CLI may run code from an external package source that is outside this artifact review.
The skill depends on an externally installed CLI and the Go install option uses @latest, so the reviewed artifact does not pin the exact code version users would install.
brew tap barronlroth/tap brew install f1-cli ... go install github.com/barronlroth/f1-cli/cmd/f1@latest
Verify the f1-cli repository or Homebrew tap before installing, and prefer a pinned or trusted release when possible.
Broad telemetry or location queries could be slow or produce large outputs, even when a display limit is used.
The skill exposes command-line API queries, including raw filters and potentially large result retrieval, but this is disclosed and directly related to F1 data analysis.
`--filter EXPR` | Raw API filter, repeatable ... ... `--limit` is client-side only. The OpenF1 API does not support a `limit` query parameter. The CLI fetches all results then truncates locally.
Use server-side filters and session/driver constraints for large F1 data requests.
