Agent skill · Testing & QA

screenshots

Generate marketing screenshots of your app using Playwright. Use when the user wants to create screenshots for Product Hunt, social media, landing pages, or documentation.

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

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

Facts
Files in the skill folder: 1
SKILL.md size: 13 KB
Bundled scripts: none
Path: skills/screenshots/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

# Screenshots Generate marketing-quality screenshots of your app using Playwright directly. Screenshots are captured at true HiDPI (2x retina) resolution using `deviceScaleFactor: 2`. ## When to Use This Skill Use this skill when: - User wants to create screenshots for Product Hunt - Creating screenshots for social media - Generating images for landing pages - Creating documentation screenshots - User requests marketing-quality app screenshots ## Prerequisites Playwright must be available. Check for it: ```bash npx playwright --version 2>/dev/null || npm ls playwright 2>/dev/null | grep playwright ``` If not found, inform the user: > Playwright is required. Install it with: `npm install -D playwright` or `npm install -D @playwright/test` ## Step 1: Determine App URL If `$1` is provided, use it as the app URL. If no URL is provided: 1. Check if a dev server is likely running by looking for `package.json` scripts 2. Use `AskUserQuestion` to ask the user for the URL or offer to help start the dev server Common default URLs to suggest: - `http://localhost:3000` (Next.js, Create React App, Rails) - `http://localhost:5173` (Vite) - `http://localhost:4000` (Phoenix) - `http://localhost:80

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Prerequisites
  3. Step 1: Determine App URL
  4. Step 2: Gather Requirements
  5. Step 3: Analyze Codebase for Features
  6. 3.1: Read Documentation First
  7. 3.2: Analyze Routes to Find Pages
  8. 3.3: Identify Key Components
  9. 3.4: Check for Marketing Assets
  10. 3.5: Build Feature List
  11. Step 4: Plan Screenshots with User
  12. Step 5: Create Screenshots Directory
  13. Step 6: Generate and Run Playwright Script
  14. Script Template
Commands it runs
npx playwright --version 2>/dev/null || npm ls playwright 2>/dev/null | grep playwright
mkdir -p screenshots
node screenshot-script.mjs
rm screenshot-script.mjs
ls -la screenshots/*.png
sips -g pixelWidth -g pixelHeight screenshots/*.png 2>/dev/null || file screenshots/*.png
More from agentic-awesome-skills
All skills →
About this skill
What does the screenshots skill do?

Generate marketing screenshots of your app using Playwright. Use when the user wants to create screenshots for Product Hunt, social media, landing pages, or documentation.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill screenshots --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