playwright-dev
Explains how to develop Playwright - add APIs, MCP tools, CLI commands, and vendor dependencies.
Cherry-pick a commit or PR from main into a release branch (release-<version>) and retitle it as cherry-pick(#<pr>): <original title>. Use when asked to cherry-pick, backport, or port a change into a release.
$ npx -y skills add microsoft/playwright --skill playwright-cherry-pick --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/playwright-cherry-pickContext preview
The summary Claude sees to decide when to auto-load this skill.
Cherry-pick a commit or PR from main into a release branch (release-<version>) and retitle it as cherry-pick(#<pr>): <original title>. Use when asked to cherry-pick, backport, or port a change into a release.
name: playwright-cherry-pick description: Cherry-pick a commit or PR from main into a release branch (release-<version>) and retitle it as cherry-pick(#<pr>): <original title>. Use when asked to cherry-pick, backport, or port a change into a release. user_invocable: true
`/playwright-cherry-pick <version> <commit>`
Check out `release-<version>`, creating it if needed, synced to `microsoft/playwright` (`git fetch upstream release-<version>` and use `FETCH_HEAD`, not a remote-tracking name). Cherry-pick the commit and retitle it `cherry-pick(#<pr>): <original title>`, where `<pr>` is the number from the trailing `(#<pr>)` of the original subject, dropped from the title. Body stays empty. Report the result and stop.
**Never push.** The user asks explicitly, then: `git push upstream release-<version>`.
Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API.
Repo: microsoft/playwright
Explains how to develop Playwright - add APIs, MCP tools, CLI commands, and vendor dependencies.
DevOps workflows for Playwright - CI failure analysis, workflow debugging, and release operations.
Query Playwright CI test results from the aggregated DuckDB database. Answers questions about flaky tests, failure rates, slow tests, and per-run/SHA/PR…
Triage a Playwright bug report by reproducing it from the information in the issue. Use when asked to triage, reproduce, or verify a GitHub issue (a new bug…
Automate browser interactions, test web pages and work with Playwright tests.
Set up component testing with Playwright using a story gallery — scaffold stories and a gallery dev page driven by the built-in mount fixture, no dedicated…