with one click
analyze
AI-powered screenshot and video analysis with OCR
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
AI-powered screenshot and video analysis with OCR
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Search and visualize app knowledge from captured flows
Generate marketing assets from app screenshots
Full mobile testing workflow with Maestro recording
Open the DiscoveryLab web interface
Quickly capture iOS/Android emulator screen
Manage external links, requirements and test maps
| name | analyze |
| description | AI-powered screenshot and video analysis with OCR |
| emoji | 🔍 |
| version | 1.0.0 |
| category | analyze |
| requires | {"env":["ANTHROPIC_API_KEY"]} |
| always | true |
| install | {"manual":"Set ANTHROPIC_API_KEY environment variable"} |
| tools | ["dlab.analyze.video","dlab.analyze.screenshot","dlab.analyze.frames","dlab.analyze.info"] |
| tags | ["analyze","ai","ocr","vision","screenshot","video"] |
AI-powered analysis of screenshots and videos using Claude Vision.
Analyze a single screenshot:
Analyze a video recording:
Extract and analyze frames from video:
input: Video file pathinterval: Seconds between framesGet metadata about media file:
The analysis uses Claude Vision to:
# Analyze screenshot
dlab.analyze.screenshot {
"input": "./screenshot.png",
"detailed": true
}
# Analyze video
dlab.analyze.video {
"input": "./recording.mp4",
"extractFrames": true
}
# Extract frames
dlab.analyze.frames {
"input": "./recording.mp4",
"interval": 2
}
Analysis results include:
{
"elements": [
{"type": "button", "text": "Login", "bounds": {...}},
{"type": "input", "placeholder": "Email", "bounds": {...}}
],
"actions": [
{"type": "tap", "target": "Login button", "timestamp": 1.5}
],
"flow": "User enters credentials and taps login",
"issues": []
}