by openai
Cross-platform desktop and application screenshot capture for visual testing, UI verification, and automated visual comparison across macOS, Linux, and Windows.
npx @qaskills/cli add screenshot-captureAuto-detects your AI agent and installs the skill. Works with Claude Code, Cursor, Copilot, and more.
Cross-platform screenshot capture for visual testing, UI verification, and automated comparison. Supports full screen, specific app/window, and pixel region captures.
screencapture -x output/screen.png
screencapture -x -R100,200,800,600 output/region.png
screencapture -x -l12345 output/window.png
screencapture -x -i output/interactive.png
# Full screen
scrot output/screen.png
# Pixel region
scrot -a 100,200,800,600 output/region.png
# Active window
scrot -u output/window.png
gnome-screenshot -f output/screen.png
gnome-screenshot -w -f output/window.png
import -window root output/screen.png
import -window root -crop 800x600+100+200 output/region.png
# Full screen
powershell -ExecutionPolicy Bypass -File take_screenshot.ps1
# Pixel region
powershell -ExecutionPolicy Bypass -File take_screenshot.ps1 -Region 100,200,800,600
# Active window
powershell -ExecutionPolicy Bypass -File take_screenshot.ps1 -ActiveWindow
--region to isolate a single display when neededcommand -v scrot, command -v gnome-screenshot- name: Install QA Skills
run: npx @qaskills/cli add screenshot-capture10 of 29 agents supported