playwright-skill — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited playwright-skill (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill to write and run focused Playwright scripts for testing or automating websites. Keep the main flow independent of any specific host or launcher. Choose the execution surface that already exists in the current environment.
Use this skill when the user wants to:
Use a visible browser by default unless the user explicitly asks for headless execution.
const { chromium } = require('playwright');
const TARGET_URL = process.env.TARGET_URL ?? 'http://localhost:3000';
(async () => {
const browser = await chromium.launch({ headless: false });
const page = await browser.newPage();
await page.goto(TARGET_URL, { waitUntil: 'domcontentloaded' });
console.log('Title:', await page.title());
await page.screenshot({ path: '/tmp/page-check.png', fullPage: true });
await browser.close();
})();const { chromium } = require('playwright');
const TARGET_URL = process.env.TARGET_URL ?? 'http://localhost:3000';
const TEST_PASSWORD = process.env.TEST_PASSWORD;
(async () => {
const browser = await chromium.launch({ headless: false });
const page = await browser.newPage();
await page.goto(`${TARGET_URL}/login`);
await page.fill('input[name="email"]', '[email protected]');
await page.fill('input[name="password"]', TEST_PASSWORD ?? '<secret>');
await page.click('button[type="submit"]');
await page.waitForURL('**/dashboard');
console.log('Login flow passed');
await browser.close();
})();const { chromium } = require('playwright');
const TARGET_URL = process.env.TARGET_URL ?? 'http://localhost:3000';
(async () => {
const browser = await chromium.launch({ headless: false });
const page = await browser.newPage();
for (const viewport of [
{ name: 'desktop', width: 1440, height: 900 },
{ name: 'tablet', width: 768, height: 1024 },
{ name: 'mobile', width: 390, height: 844 },
]) {
await page.setViewportSize({ width: viewport.width, height: viewport.height });
await page.goto(TARGET_URL, { waitUntil: 'domcontentloaded' });
await page.screenshot({ path: `/tmp/${viewport.name}.png`, fullPage: true });
}
await browser.close();
})();Follow the constraints, conventions, and cautions documented below, and prefer the documented path over improvisation.
Use any linked scripts, assets, reference files, and companion resources mentioned in this document.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.