automate-this

Installation
Summary

Analyze screen recordings of manual processes and generate working automation scripts at multiple complexity tiers.

  • Extracts frames and audio narration from video files, reconstructs the step-by-step workflow, and proposes automation tailored to the user's installed tools
  • Offers three automation tiers: quick wins (shell aliases, one-liners), standalone scripts (bash, Python, Node), and full scheduled automation with logging and error handling
  • Includes application-specific strategies for browser workflows (API-first, then Playwright), spreadsheets (pandas, csvkit), email (osascript, smtplib), file management, and macOS automation
  • Requires ffmpeg; Whisper optional for audio transcription if narration is present; verifies environment before proposing solutions to avoid unnecessary dependencies
SKILL.md

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

Related skills

More from github/awesome-copilot

Installs
1.8K
GitHub Stars
32.7K
First Seen
Mar 9, 2026