Analyze a screen recording of a manual process and produce targeted, working automation scripts. Extracts frames and audio narration from video files,…
Automate This Analyze a screen recording of a manual process and build working automation for it. The user records themselves doing something repetitive or tedious, hands you the video file, and you figure out what they're doing, why, and how to script it away. Prerequisites Check Before analyzing any recording, verify the required tools are available. Run these checks silently and only surface problems: command -v ffmpeg >/dev/null 2>&1 && ffmpeg -version 2>/dev/null | head -1 || echo "NO_FFMPEG" command -v whisper >/dev/null 2>&1 || command -v whisper-cpp >/dev/null 2>&1 || echo "NO_WHISPER" ffmpeg is required. If missing, tell the user: brew install ffmpeg (macOS) or the equivalent for their OS. Whisper is optional. Only needed if the recording has narration. If missing AND the recording has an audio track, suggest: pip install openai-whisper or brew install whisper-cpp. If the user declines, proceed with visual analysis only. Phase 1: Extract Content from the Recording
don't have the plugin yet? install it then click "run inline in claude" again.