29b8a2988a
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>
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
# 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
|