Case 01380
Browser automation with Playwright for opening pages, taking screenshots, finding or clicking DOM elements, filling forms, extracting text, and managing cookies/session state. Use when Codex needs deterministic browser control against real web pages, smoke-testing a site, grabbing DOM evidence, or automating straightforward UI flows.From its SKILL.md
npx -y skills add knownasnaffy/prompthound --skill case_01380Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.1 KB, 163 tokens by cl100k_base, as published. Nobody here has run it
Browser Agent
Use Playwright-backed browser control for reproducible page actions.
Workflow
- Run
index.jswith a target URL. - Use action flags to open, screenshot, extract title/text, click selectors, fill inputs, or save/load session state.
- Keep selectors explicit when clicking or filling.
- Save evidence (screenshots / extracted text) to
out/.
Supported actions
- page open
- screenshot
- title read
- text extraction by selector
- click by selector
- fill input/textarea by selector
- save cookies/storage state
- load cookies/storage state
Example
node skills/browser-agent/index.js --url https://example.com --screenshot out/example.png --title --extract h1
What ships with it: 1 file
2.6 KB alongside SKILL.md, 1 of them executable
- index.jsruns2.6 KB