Initial commit: /watch skill v0.1.0

Give Claude the ability to watch any video — yt-dlp download, ffmpeg
frame extraction with auto-scaled fps, native-caption transcript with
Whisper (Groq/OpenAI) fallback.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
bradautomates
2026-04-24 14:40:34 +10:00
commit 29b8a2988a
19 changed files with 1976 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
# Exclude non-runtime files from `git archive` output.
# Used by scripts/build-skill.sh to produce a claude.ai-upload-ready .skill file.
# Anthropic canonical skill-packaging excludes
# (mirrors anthropics/skills/skills/skill-creator/scripts/package_skill.py)
__pycache__/ export-ignore
node_modules/ export-ignore
*.pyc export-ignore
.DS_Store export-ignore
# Dev, docs, test, and media — not needed at skill runtime
tests/ export-ignore
docs/ export-ignore
fixtures/ export-ignore
assets/ export-ignore
examples/ export-ignore
# NOTE: commands/, hooks/, and .claude-plugin/ are NOT export-ignored because
# Claude Code's /plugin install fetches this same git archive tarball — they
# must be in the archive for the plugin to install correctly. The claude.ai
# .skill bundle strips them afterward via `zip -d` in scripts/build-skill.sh.
# CI workflows — repo-only, not needed at skill runtime
.github/ export-ignore
# Build config itself
.gitignore export-ignore
.gitattributes export-ignore