원클릭으로
f1-driver-avatars
Fetch F1 driver photos from Sky Sports and save them as season avatars
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fetch F1 driver photos from Sky Sports and save them as season avatars
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this to skill to write shell scripts or run shell commands to automate tasks in the browser or otherwise use Chrome DevTools via CLI.
Uses Chrome DevTools via MCP for efficient debugging, troubleshooting and browser automation. Use when debugging web pages, automating browser interactions, analyzing performance, or inspecting network requests. This skill does not apply to `--slim` mode (MCP configuration).
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions "largest contentful paint", "page load speed", "CWV", or wants to improve how fast their hero image or main content renders.
Uses Chrome DevTools MCP and documentation to troubleshoot connection and target issues. Trigger this skill when list_pages, new_page, or navigate_page fail, or when the server initialization fails.
| name | F1 Driver Avatars |
| description | Fetch F1 driver photos from Sky Sports and save them as season avatars |
| alwaysAllow | ["Bash","WebFetch","Write"] |
Download driver headshot photos from Sky Sports and save them to public/images/avatars/{year}/ for use in the app.
URL: https://www.skysports.com/f1/drivers-teams
This page lists all current-season F1 drivers grouped by team. Each driver has a 256×256 PNG headshot hosted on 365dm.com (Sky's CDN), with URLs like:
https://e0.365dm.com/f1/drivers/256x256/h_full_1465.png
Use WebFetch to scrape the Sky Sports page:
WebFetch(
url: "https://www.skysports.com/f1/drivers-teams",
prompt: "Extract ALL drivers. For each driver return: full name (first + last), team name, and the full image URL (from 365dm.com). List every driver."
)
Use the current year. The Sky Sports page always shows the current season's drivers.
Apply the FIA convention: take the first 3 letters of the driver's last name, uppercased.
Examples:
VERHAMLECNORANTBORCOLLINmkdir -p public/images/avatars/{year}
Use curl to download each driver image:
curl -sL "https://e0.365dm.com/f1/drivers/256x256/h_full_1465.png" -o "public/images/avatars/2026/VER.png"
Download all images in a single bash command for efficiency (use && or a loop).
After downloading, list all files with their driver mapping in a table so the user can verify the 3-letter codes are correct. Format:
| Code | Driver | Team | File |
|---|---|---|---|
| VER | Max Verstappen | Red Bull | public/images/avatars/2026/VER.png |
| ... | ... | ... | ... |
Highlight any new drivers (not present in the previous season's folder) and any removed drivers (present in previous season but not current).
/images/avatars/{season}/{id}.png where id is the 3-letter code from the F1 TV API's driverStream.title field.https://web.archive.org/web/{timestamp}im_/{original_url}