Playwright Skills banner
FaisalNoman FaisalNoman

Playwright Skills

Testing community

Description

Playwright E2E skills for AI agents: spec generator + real-time dashboard. Installs to Claude Code, Codex, Cursor.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

playwright-skills

E2E-Dashboard-demo-optimized

Two Playwright E2E skills for AI coding agents, shippable to **Claude Code**, **Codex CLI**, and **Cursor**.

Skill What it does
playwright-setup Scans project docs/source, interviews you, generates a complete Playwright test suite (E2E/Smoke, plus optional Security-smoke and Performance-smoke) + config from scratch.
e2e-dashboard Installs a real-time Playwright test dashboard (live SSE progress, 24 features, category tabs when multiple test types are installed, inline spec source view/edit-and-save) into any project.
mobile-app-testing Records real-device (iOS Simulator / Android emulator) test flows for your web app via tapflow, and streams results into the e2e-dashboard.

Claude Code (native plugin)

/plugin marketplace add FaisalNoman/playwright-skills
/plugin install playwright-setup@playwright-skills
/plugin install e2e-dashboard@playwright-skills
/plugin install mobile-app-testing@playwright-skills

Then trigger with `/playwright-setup`, `/e2e-dashboard`, or `/mobile-app-testing`.

Codex CLI

Codex has no plugin system — skills install as custom prompts (`~/.codex/prompts`).

git clone https://github.com/FaisalNoman/playwright-skills && cd playwright-skills
./install.sh codex          # macOS / Linux / Git Bash
# or on Windows PowerShell:
./install.ps1 codex

Then use `/playwright-setup`, `/e2e-dashboard`, or `/mobile-app-testing` in Codex.

Cursor

Cursor has no plugin system — skills install as project commands (`.cursor/commands`). Run from your project root:

git clone https://github.com/FaisalNoman/playwright-skills /tmp/playwright-skills
/tmp/playwright-skills/install.sh cursor          # writes ./.cursor/ in current project
# or PowerShell:
/tmp/pl