Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

screenshot-local本地截图

Agent Skill

screenshot-local 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

791

周安装

32

GitHub Stars

2

下载量

248
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:screenshot-local(本地截图)
来源仓库:https://github.com/antjanus/skillbox
仓库路径:skills/screenshot-local
安装命令:
npx skills add https://github.com/antjanus/skillbox --skill screenshot-local
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/antjanus/skillbox --skill screenshot-local

简介

screenshot-local 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,需参考原始 SKILL.md 补充细节。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Screenshot Local - Capture Project Screenshots with shot-scraper

Overview

Capture screenshots of local development projects using shot-scraper installed globally via pipx. Turn localhost URLs and local HTML files into PNGs, JPEGs, and PDFs for documentation, READMEs, and design reviews.

Core principle: Screenshots should be reproducible from a single command or YAML config, not manual screen captures. Version-control your screenshot configs alongside your code.

When to Use

Use this skill when:

  • Capturing screenshots of a local dev server for docs or README
  • Generating screenshots of multiple pages/states in batch
  • Documenting UI changes or new features visually
  • Creating before/after comparisons during refactoring
  • Automating screenshot generation in CI/CD

Avoid when:

  • Recording terminal/CLI output (use record-tui with VHS instead)
  • Capturing non-web content (use native screenshot tools)
  • Scraping third-party websites (shot-scraper can do it, but this skill focuses on local projects)

Prerequisites

Install shot-scraper globally via pipx:

# Install pipx if needed
brew install pipx  # macOS
# or: apt install pipx / pip install pipx

# Install shot-scraper globally
pipx install shot-scraper

# Install the browser engine (Chromium by default)
shot-scraper install

Verify: shot-scraper --version

Alternative browsers:

shot-scraper install -b firefox
shot-scraper install -b webkit

Phase 1: Plan the Screenshots

Before capturing, answer these questions:

  1. What are you capturing? — localhost URL, local HTML file, or built static site
  2. Which pages/states? — Single page, multiple routes, or specific UI states
  3. What dimensions? — Match your target display context
  4. Any interaction needed? — Click buttons, fill forms, dismiss modals before capture

Recommended dimensions by use case:

Use CaseWidthHeightFormat
README hero image1280800PNG
Docs screenshot1200autoPNG
Social/OG image1200630PNG
Mobile viewport375812PNG
Tablet viewport7681024PNG
Full page capture1280(omit)PNG

Phase 2: Capture Screenshots

Single Screenshot

Capture a localhost page:

shot-scraper http://localhost:3000 -o homepage.png

Capture a local HTML file:

shot-scraper index.html -o preview.png

With custom dimensions:

shot-scraper http://localhost:3000 -w 1200 -h 800 -o homepage.png

Retina (2x resolution):

shot-scraper http://localhost:3000 --retina -o homepage-retina.png

Capture a specific element:

shot-scraper http://localhost:3000 -s ".hero-section" -o hero.png
shot-scraper http://localhost:3000 -s "#main-nav" --padding 10 -o nav.png

Wait for dynamic content:

# Wait fixed time (ms)
shot-scraper http://localhost:3000 --wait 2000 -o page.png

# Wait for JS condition
shot-scraper http://localhost:3000 --wait-for "document.querySelector('.loaded')" -o page.png

Execute JS before capture (dismiss modals, set state):

shot-scraper http://localhost:3000 \
  -j "document.querySelector('.cookie-banner')?.remove()" \
  -o clean-homepage.png

Essential Options

FlagExamplePurpose
-o-o hero.pngOutput filename
-w-w 1280Viewport width (default: 1280)
-h-h 800Viewport height (omit for full page)
-s-s ".card"CSS selector to capture
--selector-all--selector-all ".card"All matching elements
-p-p 10Padding around selector (px)
--retina--retina2x device pixel ratio
--quality--quality 80Save as JPEG with quality
--wait--wait 2000Wait ms after page load
--wait-for--wait-for "expr"Wait until JS returns true
-j-j "js code"Execute JS before screenshot
-b-b firefoxBrowser (chromium/firefox/webkit)
--omit-background--omit-backgroundTransparent background (PNG)
--timeout--timeout 10000Failure timeout (ms)

For the complete flag reference, see Command Reference.

Batch Screenshots with YAML

Create a shots.yml for capturing multiple pages:

# shots.yml
- url: http://localhost:3000
  output: screenshots/homepage.png
  width: 1280
  height: 800

- url: http://localhost:3000/about
  output: screenshots/about.png
  width: 1280

- url: http://localhost:3000/dashboard
  output: screenshots/dashboard.png
  width: 1280
  height: 900
  wait: 2000
  javascript: |
    document.querySelector('.loading-spinner')?.remove()

- url: http://localhost:3000
  output: screenshots/mobile-home.png
  width: 375
  height: 812

Run the batch:

shot-scraper multi shots.yml

Advanced YAML Keys

- url: http://localhost:3000/form
  output: screenshots/form-filled.png
  width: 1200
  javascript: |
    document.querySelector('#name').value = 'Jane Doe';
    document.querySelector('#email').value = 'jane@example.com';
  wait: 500
  selector: ".form-container"
  padding: 20
  retina: true

Supported YAML keys: url, output, width, height, quality, wait, wait_for, selector, selectors, selector_all, padding, javascript, js_selector, retina, omit_background

Phase 3: Smart Config Generation

When asked to generate a screenshot config for a project, follow this process:

Step 1: Analyze the Project

Read the project to understand:

  • Routes/pages — Check router config, page files, or navigation
  • Key UI states — Loading, empty, populated, error states
  • Important components — Hero sections, dashboards, forms
  • Port — What port does the dev server run on

Step 2: Generate shots.yml

Build a YAML config covering the project's key screens:

# Validate by running
shot-scraper multi shots.yml

Step 3: Iterate

Review screenshots, adjust timing and selectors, re-run.

Phase 4: Optimize Output

File Size Reduction

Use JPEG for photos/complex UIs:

shot-scraper http://localhost:3000 --quality 85 -o page.jpg

Use PNG for UI with text/sharp edges (default).

Transparent backgrounds (for overlaying on docs):

shot-scraper http://localhost:3000 -s ".component" --omit-background -o widget.png

Consistency Tips

  • Always set explicit width — default 1280 is fine but be intentional
  • Omit height for full-page captures, set it for fixed viewport
  • Use --retina for README images viewed on high-DPI screens
  • Add --wait for SPAs that hydrate client-side
  • Use javascript to dismiss cookie banners, tooltips, or modals
  • Use selector + padding to capture specific components cleanly

Phase 5: CI/CD Integration

Automate screenshot regeneration with GitHub Actions so docs stay current. Use the YAML server key to auto-start a dev server during capture.

See CI Integration Guide for the GitHub Actions workflow, server key usage, and cost-control tips.

Examples

Good: Well-Structured Screenshot Config

# shots.yml — explicit dimensions, proper waits, organized output
- url: http://localhost:3000
  output: screenshots/homepage.png
  width: 1280
  height: 800

- url: http://localhost:3000/dashboard
  output: screenshots/dashboard.png
  width: 1280
  height: 900
  wait: 2000
  javascript: |
    document.querySelector('.toast-notification')?.remove()

- url: http://localhost:3000/settings
  output: screenshots/settings.png
  width: 1280
  selector: ".settings-panel"
  padding: 20

- url: http://localhost:3000
  output: screenshots/mobile-home.png
  width: 375
  height: 812

Bad: Common Mistakes

# No output specified — shot-scraper auto-names from URL, messy results
- url: http://localhost:3000

# No width — relies on default, inconsistent across machines
- url: http://localhost:3000/about
  output: about.png

# No wait for SPA — captures loading spinner instead of content
- url: http://localhost:3000/dashboard
  output: dashboard.png

# Screenshot directory not organized
- url: http://localhost:3000/settings
  output: settings.png

Good: Capturing Specific Components

# Hero section with padding for breathing room
shot-scraper http://localhost:3000 -s ".hero" -p 20 -o docs/hero.png

# Navigation in retina for crisp text
shot-scraper http://localhost:3000 -s "nav" --retina -o docs/nav.png

# Form with pre-filled data via JS
shot-scraper http://localhost:3000/contact \
  -j "document.querySelector('#name').value = 'Jane Doe'" \
  -s ".contact-form" -p 10 -o docs/form.png

Bad: Component Capture Anti-Patterns

# No selector — captures entire page when you only need one section
shot-scraper http://localhost:3000 -o hero.png

# No padding — element cropped tight, looks cramped in docs
shot-scraper http://localhost:3000 -s ".hero" -o hero.png

# No wait — dynamic component hasn't rendered yet
shot-scraper http://localhost:3000 -s ".chart" -o chart.png

Quality Signals

A well-configured screenshot setup has these properties:

  • Explicit width on every capture — default is fine but intentional beats accidental
  • wait or wait-for on SPA routes — captures content, not loading spinners
  • Organized output pathsscreenshots/homepage.png, not homepage.png at project root
  • YAML config committed to the repo — reproducible across machines and CI, not one-off shot-scraper commands
  • --retina for README hero images — crisp on high-DPI displays where it matters
  • JS cleanup for modals/banners-j "document.querySelector('.banner')?.remove()" before capture
  • Selector + padding for component shots-s ".hero" -p 20 beats full-page crops

Troubleshooting

Problem: Screenshot shows blank page or loading spinner

Cause: SPA hasn't hydrated or async data hasn't loaded.

Solution:

# Fixed wait
shot-scraper http://localhost:3000 --wait 3000 -o page.png

# Wait for specific element
shot-scraper http://localhost:3000 --wait-for "document.querySelector('.content')" -o page.png

Problem: "Connection refused" on localhost

Cause: Dev server isn't running or is on a different port.

Solution:

  1. Start your dev server first: npm run dev &
  2. Verify the port: curl -I http://localhost:3000
  3. Or use the server key in YAML to auto-start it

Problem: Screenshot dimensions don't match expectations

Cause: Height omitted (captures full page) or retina not accounted for.

Solution:

  • Set explicit -h for fixed viewport
  • Omit -h intentionally for full-page capture
  • --retina doubles pixel dimensions (1280w becomes 2560px image)

Problem: shot-scraper command not found

Cause: Not installed or pipx PATH not configured.

Solution:

pipx install shot-scraper
pipx ensurepath      # Add pipx bin to PATH
shot-scraper install # Install browser engine

Problem: Elements missing from screenshot

Cause: CSS selector wrong, element behind a modal, or lazy-loaded content.

Solution:

# Use --interactive to debug visually
shot-scraper http://localhost:3000 -i

# Use --devtools for inspector
shot-scraper http://localhost:3000 --devtools

Integration

This skill pairs with:

  • record-tui — For terminal app recordings (use VHS for CLIs, shot-scraper for web UIs)
  • track-session — Track screenshot iteration progress
  • git-worktree — Compare screenshots across branches

Useful alongside:

Quick Reference

# Single screenshot
shot-scraper http://localhost:3000 -o page.png

# With dimensions
shot-scraper http://localhost:3000 -w 1280 -h 800 -o page.png

# Specific element
shot-scraper http://localhost:3000 -s ".hero" -p 10 -o hero.png

# Retina
shot-scraper http://localhost:3000 --retina -o page@2x.png

# Local HTML file
shot-scraper index.html -o preview.png

# Batch from YAML
shot-scraper multi shots.yml

# Interactive debugging
shot-scraper http://localhost:3000 -i

# PDF export
shot-scraper pdf http://localhost:3000 -o page.pdf

Deep Reference

For detailed guides, load these files when needed:

*Only load these when specifically needed to save context.*

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.22%
按下载量换算92

Claude

30.88%
按下载量换算77

Cursor

17.46%
按下载量换算43

Gemini CLI

10.33%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills