Playwright Pro — Report
Generate smart test reports from Playwright results.
$skillfish add ~skills/playwright-pro-report Real Conversations
See how the Playwright Pro — Report skill responds to actual requests. These are representative examples of what your AI agent will produce.
Our CI runs Playwright on every PR. Can you set up automatic Slack notifications with pass/fail counts? Our webhook URL is in the SLACK_WEBHOOK_URL env var.
Detected SLACK_WEBHOOK_URL — routing results to Slack automatically. This skill includes executable scripts — I'll need your permission before running them.
Running tests with JSON output:
npx playwright test --reporter=json,list 2>&1 | tee test-output.log
Parsed results:
Total: 134 | Passed: 131 | Failed: 2 | Flaky: 1 | Duration: 2m 14s
Slack notification sent:
curl -X POST "$SLACK_WEBHOOK_URL" \
-H 'Content-Type: application/json' \
-d '{
"text": "Playwright — PR #247\n131 passed | 2 failed | 1 flaky | 2m 14s",
"attachments": [{
"color": "danger",
"text": "checkout/payment.spec.ts:42 — Stripe redirect timeout\nsettings/team.spec.ts:18 — Invitation email assertion\nauth/login.spec.ts:7 — passed on retry 2"
}]
}'
Also saved: test-reports/2026-03-09-report.md — local copy for trend analysis.
To make this automatic in CI:
- name: Report results
if: always()
run: npx playwright test --reporter=json | node scripts/notify-slack.js
Shall I generate notify-slack.js and add the CI step to your workflow?
Get Started
How to install and use this skill in your preferred environment.
Skills are designed for AI coding agents (Claude Code, Cursor, Windsurf) and IDE-based workflows where the agent can read files, run scripts, and act on your codebase. Web-based AI can use the knowledge and frameworks, but won't have tool access.
Models & Context
Which AI models and context windows work best with this skill.
Recommended Models
Larger models produce more detailed, production-ready outputs.
Context Window
This skill's SKILL.md is typically 3–10 KB — fits in any modern context window.
All current frontier models (Claude, GPT, Gemini) support 100K+ context. Use the full window for complex multi-service work.
Pro tips for best results
Be specific
Include numbers — users, budget, RPS — so the skill can size the architecture.
Share constraints
Compliance needs, team size, and existing stack all improve the output.
Iterate
Start with a high-level design, then ask follow-ups for IaC, cost analysis, or security review.
Combine skills
Pair with companion skills below for end-to-end coverage.
Ready to try Playwright Pro — Report?
Install the skill and start getting expert-level guidance in your workflow — any agent, any IDE.
$skillfish add ~skills/playwright-pro-report