What problem does it solve? Setting up Playwright from scratch involves many manual decisions: choosing the right config for your framework, creating a sensible folder structure, writing a first test, and wiring up CI. This Skill automates the entire initialization so you get a working e2e test setup in one pass. ## Core Features & Use Cases - Framework-aware configuration: Detects Next.js, React (Vite), Vue/Nuxt, or Angular and generates a matching playwright.config.ts with the correct baseURL and webServer command. - Complete project scaffolding: Creates an e2e/ directory with fixtures, page objects, test data folders, and a runnable example test. - CI and tooling integration: Generates a GitHub Actions workflow (or GitLab CI stage), updates .gitignore, and adds test:e2e npm scripts. - Use Case: You just created a Next.js app and want end-to-end coverage before launch. Invoke this Skill to install Playwright, generate the config and example test, add a CI workflow, and verify everything runs green. ## Quick Start Set up Playwright e2e testing in this project with a config, example test, and CI workflow.