| name | screenshot-annotator |
| description | Capture, annotate, and share screenshots with AI-powered descriptions using Peekaboo. |
| homepage | https://github.com/ianalloway/openclaw-skills |
| metadata | {"openclaw":{"emoji":"📸","os":["darwin"],"requires":{"bins":["peekaboo","curl"]},"install":[{"id":"brew","kind":"brew","formula":"steipete/tap/peekaboo","bins":["peekaboo"],"label":"Install Peekaboo (brew)"}]}} |
Screenshot Annotator
Capture screenshots with automatic UI element annotation and AI-powered descriptions. Built on top of Peekaboo for macOS UI automation.
Features
- Capture full screen, specific windows, or regions
- Automatically annotate UI elements with clickable IDs
- Generate AI descriptions of what's on screen
- Save annotated screenshots with metadata
- Compare before/after screenshots
- Create step-by-step visual guides
Requirements
- macOS with Screen Recording permissions
- Peekaboo CLI installed (
brew install steipete/tap/peekaboo)
Quick Start
Capture and annotate current screen
peekaboo see --annotate --path /tmp/annotated-screen.png
Capture specific app window
peekaboo see --app "Safari" --annotate --path /tmp/safari-annotated.png
Capture with AI analysis
peekaboo see --annotate --analyze "Describe the main UI elements and their purpose" --path /tmp/analyzed.png
Common Workflows
Document a bug
peekaboo see --app "MyApp" --annotate --path /tmp/bug-screenshot.png
peekaboo list windows --app "MyApp" --json
peekaboo see --app "MyApp" --analyze "Identify any UI issues or anomalies"
Create a tutorial
peekaboo see --app "Finder" --annotate --path /tmp/step1.png
peekaboo click --on B3 --app "Finder"
peekaboo see --app "Finder" --annotate --path /tmp/step2.png
Compare UI states
peekaboo see --app "Settings" --path /tmp/before.png
peekaboo see --app "Settings" --path /tmp/after.png
peekaboo see --app "Settings" --analyze "Compare this to the previous state and describe changes"
Advanced Usage
Capture specific region
peekaboo image --mode region --region 100,100,800,600 --path /tmp/region.png
Capture with retina resolution
peekaboo image --mode screen --retina --path /tmp/retina-screen.png
Capture menu bar
peekaboo menubar list --json
peekaboo see --mode menubar --annotate --path /tmp/menubar.png
Batch capture all windows
for app in "Safari" "Finder" "Terminal"; do
peekaboo see --app "$app" --annotate --path "/tmp/${app}-annotated.png"
done
Output Formats
Screenshots are saved as PNG by default. Use --format jpg for JPEG output.
The --json flag outputs metadata including:
- Window dimensions and position
- Annotated element IDs and locations
- Timestamp and app info
Tips
- Always use
peekaboo see --annotate before clicking to identify element IDs
- Use
--analyze with specific prompts for better AI descriptions
- Combine with
peekaboo click and peekaboo type for automated workflows
- Check permissions with
peekaboo permissions if captures fail
Author
Created by Ian Alloway - Data Scientist specializing in AI/ML.
License
MIT License