What problem does it solve? Manually transcribing player rosters from scanned Panini sticker album PDFs into a project's squad database is slow and error-prone. This Skill uses the agent's vision capabilities to read the PDF pages directly and write structured player data into TypeScript files. ## Core Features & Use Cases - Vision-Based PDF Reading: Renders Panini album PDFs as images and extracts each player's name, birth date, club, and position from the stickers. - Squad Database Updates: Maps extracted players to the correct national team file under src/data/squads/ and updates the squad array and lineup while respecting the existing TypeScript Player model. - Image Extraction & Optimization: Pulls sticker images from the PDF, converts them to .webp at 512x512 pixels, and organizes them by team under public/assets/players/. - Use Case: Given docs/HOLANDA.pdf, extract all Netherlands players, compute ages relative to 2026, update src/data/squads/ned.ts, and save player images to public/assets/players/NED/. ## Quick Start Extract the player data from docs/HOLANDA.pdf and update the corresponding squad file in src/data/squads/.