smithery/ehtbanton

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".

Installation

$ npx skills add smithery/ehtbanton --skill playwright-config-generator

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/ehtbanton · top by installs.

npx skills add smithery/ehtbanton

Browse all from smithery/ehtbanton

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,092 B
  • docs SUMMARY.md 228 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

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.