Agent skill · AI & Agents

puppeteer-skill

Generates Puppeteer scripts for browser automation, scraping, and PDF generation. Triggers on: "Puppeteer", "headless Chrome", "page.goto", "scrape", "PDF generation".

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill puppeteer-skill --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/puppeteer-skill/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Puppeteer Automation Skill ## When to Use Use this skill when you need generates Puppeteer scripts for browser automation, scraping, and PDF generation. Triggers on: "Puppeteer", "headless Chrome", "page.goto", "scrape", "PDF generation". ## Core Patterns ### Basic Script ```javascript const puppeteer = require('puppeteer'); (async () => { const browser = await puppeteer.launch({ headless: 'new' }); const page = await browser.newPage(); await page.setViewport({ width: 1280, height: 720 }); await page.goto('https://example.com', { waitUntil: 'networkidle0' }); await page.type('#username', 'user@test.com'); await page.type('#password', 'password123'); await page.click('button[type="submit"]'); await page.waitForNavigation({ waitUntil: 'networkidle0' }); const title = await page.title(); console.log('Title:', title); await browser.close(); })(); ``` ### Wait Strategies ```javascript // Wait for selector await page.waitForSelector('.result', { visible: true, timeout: 10000 }); // Wait for navigation await Promise.all([ page.waitForNavigation({ waitUntil: 'networkidle0' }), page.click('a.nav-link'), ]); // Wait for function await page.waitForFunction('document.querySelector(".count").

What's inside
Steps it walks through
  1. When to Use
  2. Core Patterns
  3. Basic Script
  4. Wait Strategies
  5. Screenshot & PDF
  6. Network Interception
  7. TestMu AI Cloud
  8. Quick Reference
  9. Deep Patterns → reference/playbook.md
  10. Limitations
More from agentic-awesome-skills
All skills →
About this skill
What does the puppeteer-skill skill do?

Generates Puppeteer scripts for browser automation, scraping, and PDF generation. Triggers on: "Puppeteer", "headless Chrome", "page.goto", "scrape", "PDF generation".

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill puppeteer-skill --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going