automate-this
仓库创建 2025年6月12日最近提交 4 小时前SkillHot 收录 20 天前
▸ 精选理由
将视频示范直接转为层级自动化建议,能显著节省重复工作时间。
▸ 风险提示
需访问视频文件与本地工具,可能涉及隐私及运行本地自动化权限。
这个 Skill 做什么
分析屏幕录制并生成可运行的自动化脚本以替代重复手工操作。
把一段屏幕录制交给它,它会看出你在做哪些重复操作、把视频拆成帧和语音,重建出一步步的流程,然后生成可运行的自动化脚本。适合把繁琐的点按、表单填充或桌面流程一键脚本化的场景,尤其是你手头有录屏但不想手工写脚本时。特别之处在于能按不同复杂度给出方案,并利用你机器上已安装的工具直接产出可执行脚本,省时省力。
▸ 展开 SKILL.md 英文原文
Analyze a screen recording of a manual process and produce targeted, working automation scripts. Extracts frames and audio narration from video files, reconstructs the step-by-step workflow, and proposes automation at multiple complexity levels using tools already installed on the user machine.
3.7w
Stars
4.6k
Forks
40
仓库内 Skill
+837
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/github/awesome-copilot/main/skills/automate-this/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/github/awesome-copilot/main/skills/automate-this/SKILL.md"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: ```bash 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` (
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有