在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用analyze
星标2
分支0
更新时间2026年1月31日 02:48
AI-powered screenshot and video analysis with OCR
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
AI-powered screenshot and video analysis with OCR
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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": []
}