agentsclimarketplace

Playwright

Skill CodelyTV/agentic_programming-course/05-mcps/3-mcp_vs_cli/4-multiple_cli/.agents/skills/playwright

Navigate websites and query page content using Playwright CLI. Use this skill when the user asks to open a URL, extract data from a page, or check UI state.From its SKILL.md

Install
npx -y skills add CodelyTV/agentic_programming-course --skill playwright

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • runs commandsInstructs the agent to run 2 commands, including `npx playwright open --save-har=/tmp/page.har --save-har-glob="**" <url> --headless` and 1 more.

SKILL.md

0.8 KB, 148 tokens by cl100k_base, as published. Nobody here has run it

Download the rendered HTML instead of PDF or screenshots. Use the Playwright CLI:

npx playwright open --save-har=/tmp/page.har --save-har-glob="**" <url> --headless

Or more directly, dump the fully rendered DOM:

node -e "const{chromium}=require('playwright');(async()=>{const b=await chromium.launch();const p=await b.newPage();await p.goto(process.argv[1],{waitUntil:'networkidle'});console.log(await p.content());await b.close()})();" <url> > /tmp/page.html

Then read /tmp/page.html to analyze the page content.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.