before-and-after
Original:🇺🇸 English
Translated
5 scripts
Captures before/after screenshots of web pages or elements for visual comparison. Use when user says "take before and after", "screenshot comparison", "visual diff", "PR screenshots", "compare old and new", or needs to document UI changes. Accepts two URLs (file://, http://, https://) or two image paths.
7installs
Added on
NPX Install
npx skill4agent add vercel-labs/before-and-after before-and-afterTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Before-After Screenshot Skill
Package:Never use@vercel/before-and-after(wrong package).before-and-after
Agent Behavior Rules
DO NOT:
- Switch git branches, stash changes, start dev servers, or assume what "before" is
- Use unless user explicitly asks for full page / full scroll capture
--full
DO:
- Use when user wants PR integration or markdown output
--markdown - Use /
--mobileif user mentions phone, mobile, tablet, responsive, etc.--tablet - Assume current state is After
- If user provides only one URL or says "PR screenshots" without URLs, ASK: "What URL should I use for the 'before' state? (production URL, preview deployment, or another local port)"
Execution Order (MUST follow)
- Pre-flight —
which before-and-after || npm install -g @vercel/before-and-after - Protection check — if URL:
.vercel.app(401/403 = protected)curl -s -o /dev/null -w "%{http_code}" "<url>" - Capture —
before-and-after "<before-url>" "<after-url>" - Upload —
./scripts/upload-and-copy.sh <before.png> <after.png> --markdown - PR integration — optionally to append markdown
gh pr edit
Never skip steps 1-2.
Quick Reference
bash
# Basic usage
before-and-after <before-url> <after-url>
# With selector
before-and-after url1 url2 ".hero-section"
# Different selectors for each
before-and-after url1 url2 ".old-card" ".new-card"
# Viewports
before-and-after url1 url2 --mobile # 375x812
before-and-after url1 url2 --tablet # 768x1024
before-and-after url1 url2 --full # full scroll
# From existing images
before-and-after before.png after.png --markdown
# Via npx (use full package name!)
npx @vercel/before-and-after url1 url2| Flag | Description |
|---|---|
| Mobile viewport (375x812) |
| Tablet viewport (768x1024) |
| Custom viewport |
| Full scrollable page |
| CSS selector to capture |
| Output directory (default: ~/Downloads) |
| Upload images & output markdown table |
| Custom upload endpoint (default: 0x0.st) |
Image Upload
bash
# Default (0x0.st - no signup needed)
./scripts/upload-and-copy.sh before.png after.png --markdown
# GitHub Gist
IMAGE_ADAPTER=gist ./scripts/upload-and-copy.sh before.png after.png --markdownVercel Deployment Protection
If URL returns 401/403:
.vercel.app- Check Vercel CLI:
which vercel && vercel whoami - If available: to get bypass token
vercel inspect <url> - If not: Tell user to provide bypass token, take manual screenshots, or disable protection
PR Integration
bash
# Check for gh CLI
which gh
# Get current PR
gh pr view --json number,body
# Append screenshots to PR body
gh pr edit <number> --body "<existing-body>
## Before and After
<generated-markdown>"If no CLI: output markdown and tell user to paste manually.
ghError Reference
| Error | Fix |
|---|---|
| |
| Use |
| 401/403 on .vercel.app | See Vercel protection section |
| Element not found | Verify selector exists on page |