Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

screenshot-1-0-1截图 1 0 1

Agent Skill

screenshot-1-0-1 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,124

周安装

450

GitHub Stars

公开资料未说明

下载量

3,492
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install screenshot-1-0-1

简介

使用正确的工具、等待策略、视口等捕获、检查和比较屏幕、窗口、区域、网页、模拟器和 CI 运行的屏幕截图

SKILL.md

name
Screenshot
slug
screenshot
version
1.0.1
homepage
https://clawic.com/skills/screenshot
description
Capture, inspect, and compare screenshots of screens, windows, regions, web pages, simulators, and CI runs with the right tool, wait strategy, viewport, and output format. Use when (1) you need screenshots for debugging, QA, docs, bug reports, or visual review; (2) desktop, browser, simulator, or headless capture is involved; (3) stable screenshots require fixed viewport, settling, masking, or animation control.
changelog
Improved screenshot guidance with stronger browser, simulator, CI, and visual-stability rules while keeping the skill compact.
metadata
{"clawdbot":{"emoji":"📸","os":["linux","darwin","win32"]}}

When to Use

Use when the task needs a screenshot of a desktop app, browser page, simulator, region, window, or full screen, especially for debugging, QA, documentation, release notes, bug reports, visual review, or before/after comparison.

This skill is about taking the right screenshot reliably, not about editing images after the fact.

Tool Choice

ContextBest defaultWhy
macOS desktop or windowscreencaptureBuilt-in, reliable, supports silent, interactive, region, and window capture
iOS Simulatorxcrun simctl io booted screenshotMore reliable than generic desktop capture for simulator output
Linux Waylandgrim + slurpX11 tools often fail or behave oddly on Wayland
Linux X11 / headless CIscrot or browser-native captureWorks in minimal or virtual-display environments
Windows desktop capturenircmd savescreenshot or Pillow ImageGrabEasier than verbose PowerShell screen APIs
Web page or web appPlaywrightBest for stable viewport, element, full-page, masked, and regression screenshots
Visual diff / screenshot testsPlaywright with fixed viewportBetter control over animations, caret, masks, and reproducibility

Default to the most native capture path first. Move to browser-native tooling when determinism, masking, element capture, or visual regression matters more than convenience.

Core Rules

1. Pick the capture path by artifact, not by habit

  • Desktop UI screenshots usually want OS-native tools.
  • Web pages and web apps usually want browser-native capture, not a desktop screenshot of the browser window.
  • Simulator screenshots should come from the simulator tooling when possible.
  • Use region, window, or element capture when the point is local; use full screen or full page only when the full context matters.

2. Stabilize the target before capturing

  • Dynamic pages should settle before capture: wait for network idle or the specific element that matters, then give fonts and transitions a brief moment to finish.
  • Do not take the screenshot before the real rendered state exists.
  • For browser capture, prefer explicit readiness over blind sleeps when possible.
  • If the page never truly goes idle, wait for the exact UI state you need instead of chasing perfect stillness.

3. Freeze viewport, scale, zoom, and theme for reproducibility

  • Screenshot comparisons are meaningless if viewport, zoom level, theme, or device scale changed.
  • For browser captures, fix the viewport before taking baselines or before/after images.
  • Retina and HiDPI displays can produce more pixels than expected; decide whether you want physical pixels or CSS-scale output and keep that choice consistent.
  • If dark/light mode matters, capture both intentionally instead of mixing them accidentally.

4. Capture the smallest useful scope

  • Element, region, or window screenshots are usually better than noisy full-screen captures.
  • Full-page screenshots are useful for audits and archives, but long pages become hard to read and compare.
  • For browser work, element screenshots or clipped regions usually produce cleaner diffs than full-page output.
  • If the screenshot is evidence, keep enough surrounding context that the user can understand what they are looking at.

5. Remove noise before you capture

  • Hide or avoid unstable UI when it is not the subject: cursors, carets, toasts, chat widgets, notifications, loading spinners, timestamps, and randomized content.
  • Mask or avoid secrets, personal data, tokens, and internal URLs before capture.
  • For Playwright-style browser capture, features like disabled animations, hidden carets, and masking are worth using when visual stability matters.
  • If the noise is the bug, keep it; otherwise remove it.

6. Use the right output format

  • PNG is the default for screenshots, UI, code, terminals, and text-heavy captures.
  • JPEG is for photographic content, not normal screenshots.
  • WebP is fine for sharing or storage when compatibility is acceptable, but do not default to it if the consumer expects plain PNG files.
  • Avoid recompressing screenshots through JPEG pipelines unless the user explicitly wants smaller lossy output.

7. Make automation and CI captures debuggable

  • On failures, save a screenshot immediately before retrying or moving on.
  • Use stable filenames for baselines and timestamps for ad hoc or batch captures.
  • In CI, identical viewport and deterministic state matter more than raw screenshot volume.
  • Headless runs should prefer browser-native screenshots over trying to screen-grab the host display.

8. Validate that the screenshot is actually useful

  • Check that the important detail is visible, legible, and not cropped away.
  • Verify that secrets are not still visible in tabs, sidebars, URLs, notifications, or test data.
  • Before/after comparisons should use the same viewport, zoom, theme, and state.
  • A screenshot is bad if it is technically correct but useless for the human who needs it.

High-Value Patterns

  • macOS: screencapture -x out.png for silent capture, -i for interactive selection, -R x,y,w,h for a fixed region.
  • iOS Simulator: xcrun simctl io booted screenshot out.png
  • Linux Wayland: grim -g "$(slurp)" out.png
  • Playwright page capture: wait for the target state, then use page, element, clipped, or full-page screenshots deliberately.
  • Playwright stability features worth remembering: fixed viewport, disabled animations, hidden caret, masks for sensitive regions, and stable theme/media settings.

Common Traps

  • Taking a browser-window screenshot when an element or page screenshot was the real need.
  • Capturing before fonts, data, or layout transitions finish.
  • Comparing screenshots with different viewport sizes or zoom levels and treating the diff as meaningful.
  • Using JPEG for screenshots and blurring text, edges, and code.
  • Letting timestamps, cursor blinks, notifications, or random data ruin visual diffs.
  • Forgetting that Wayland breaks familiar X11 screenshot tools.
  • Sharing screenshots with secrets still visible in tabs, sidebars, URLs, or test accounts.
  • Taking full-page captures of huge pages and ending up with unreadable evidence.

Related Skills

Install with clawhub install <slug> if user confirms:

  • playwright — Browser automation, DOM interaction, and web screenshots
  • image — Post-capture format, cropping, compression, and export decisions
  • image-edit — Annotation, cleanup, masking, and targeted edits after capture
  • documentation — Turning screenshots into docs, guides, and release assets
  • video — When a flow should be recorded instead of reduced to still images

Feedback

  • If useful: clawhub star screenshot
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

84.48%
按下载量换算2,950

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills