Agent Skills: Playwright Config Generator

Generate Playwright configuration files for cross-browser E2E testing. Triggers on "create playwright config", "generate playwright configuration", "playwright setup", "browser testing config".

UncategorizedID: ehtbanton/ClaudeSkillsRepo/playwright-config-generator

Install this agent skill to your local

pnpm dlx add-skill https://github.com/ehtbanton/ClaudeSkillsRepo/tree/HEAD/playwright-config-generator

Skill Files

Browse the full folder contents for playwright-config-generator.

Download Skill

Loading file tree…

playwright-config-generator/SKILL.md

Skill Metadata

Name
playwright-config-generator
Description
Generate Playwright configuration files for cross-browser E2E testing. Triggers on "create playwright config", "generate playwright configuration", "playwright setup", "browser testing config".

Playwright Config Generator

Generate Playwright configuration files for comprehensive cross-browser E2E testing.

Output Requirements

File Output: playwright.config.ts Format: Valid Playwright configuration Standards: Playwright 1.40+

When Invoked

Immediately generate a complete Playwright configuration with browser projects and test settings.

Configuration Template

import { defineConfig, devices } from '@playwright/test';

export default defineConfig({
  testDir: './tests',
  use: {
    baseURL: 'http://localhost:3000',
  },
  projects: [
    { name: 'chromium', use: { ...devices['Desktop Chrome'] } },
  ],
});

Example Invocations

Prompt: "Create playwright config for multi-browser testing" Output: Complete playwright.config.ts with Chrome, Firefox, Safari projects.