From vanguard-frontier-agentic
Executes an existing Playwright E2E suite against a confirmed non-production target and returns a structured run report with pass/fail/flaky counts, durations, and trace artifacts. Requires explicit operator opt-in per session.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vanguard-frontier-agentic:playwright-e2e-execution-runThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill executes an existing Playwright end-to-end suite against an operator-confirmed non-production target and emits a structured run attestation: total/passed/failed/flaky counts, slowest tests, retry-only passes, and the location of trace and screenshot artifacts. It is the live-execution counterpart to `playwright-e2e-suite-review` (which is static-review only and never runs anything). ...
This skill executes an existing Playwright end-to-end suite against an operator-confirmed non-production target and emits a structured run attestation: total/passed/failed/flaky counts, slowest tests, retry-only passes, and the location of trace and screenshot artifacts. It is the live-execution counterpart to playwright-e2e-suite-review (which is static-review only and never runs anything). The skill runs the suite as authored — it does not write the tests, deploy the application, or mutate infrastructure — and it refuses to run against a production target.
playwright.config, enumerates the project and target, states exactly which command it would execute, and asks the operator for explicit runtime opt-in plus target confirmation.npx playwright test. Runtime mode is never assumed from the request alone.prod, www., a customer-facing apex domain). Require a staging, preview, or ephemeral target; state the refusal reason.storageState file inline. Test credentials must come from the environment or a config the operator already controls; the skill never collects, echoes, or logs their values.npx playwright test (with operator-supplied flags), npx playwright install (browser binaries), npx playwright show-report. Never run deploy, migration, seed, or registry commands.schemas/attestation.schema.json; the verdict is one of pass, fail, or manual-review.npx playwright install only with operator awareness; if egress to the browser CDN is blocked, degrade to manual-review rather than reporting a false fail.Load these only when needed:
Return, at minimum:
pass / fail / manual-review verdict with reasonsnpx claudepluginhub raishin/vanguard-frontier-agentic --plugin vanguard-frontier-agenticExecutes E2E tests from definition files using Playwright CLI browser automation. Runs steps like navigate, click, fill, verify; captures screenshots/videos; outputs JSON results.
Guides Playwright end-to-end testing: selectors, assertions, fixtures, auth, parallelism, CI, visual regression, and flake hunting. Activate with playwright/e2e/playwright config topics.
Sets up end-to-end testing with Playwright including browser automation, visual regression, cross-browser testing, and CI/CD integration.