audit-env-variables
Analyze environment variables in JavaScript/TypeScript projects. Identifies unused variables, infers permission scopes, detects specific services (Stripe, AWS,…
Extracts frames and timestamped audio segments from video files (GIF, MP4, MOV) at configurable intervals and stores them in a directory with a manifest file. Use when analyzing video content, preparing frames for visual review, extracting audio for transcription, or creating
$ npx -y skills add qdhenry/Claude-Command-Suite --skill extract-video-frames --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/extract-video-framesContext preview
The summary Claude sees to decide when to auto-load this skill.
Extracts frames and timestamped audio segments from video files (GIF, MP4, MOV) at configurable intervals and stores them in a directory with a manifest file. Use when analyzing video content, preparing frames for visual review, extracting audio for transcription, or creating
name: extract-video-frames description: Extracts frames and timestamped audio segments from video files (GIF, MP4, MOV) at configurable intervals and stores them in a directory with a manifest file. Use when analyzing video content, preparing frames for visual review, extracting audio for transcription, or creating frame+audio sequences for another agent to process. argument-hint: [video-path] [interval-seconds] [output-dir]
<objective> Extract frames and aligned audio segments from video files (GIF, MP4, MOV) at specified intervals using ffmpeg. Outputs PNG frames, per-segment AAC audio clips, a full continuous audio track, and a JSON manifest containing timestamps and paths -- ready for handoff to another agent for visual and audio analysis. </objective>
<quick_start> Extract frames and audio from a video:
# Extract 1 frame + audio segment per second (default) ~/.claude/skills/extract-video-frames/scripts/extract-frames.sh input.mp4 # Extract 1 frame + audio segment every 2 seconds ~/.claude/skills/extract-video-frames/scripts/extract-frames.sh input.mp4 2 # Specify custom output directory ~/.claude/skills/extract-video-frames/scripts/extract-frames.sh input.mp4 1 ./my-frames
The script creates:
</quick_start>
<workflow> 1. **Verify ffmpeg is available**
which ffmpeg || echo "ffmpeg not found - install with: brew install ffmpeg"
2. **Run extraction script**
~/.claude/skills/extract-video-frames/scripts/extract-frames.sh <video-path> [interval-seconds] [output-dir]
3. **Review manifest** The manifest.json contains:
{
"source": "recording.mp4",
"source_path": "/path/to/recording.mp4",
"interval_seconds": 5,
"total_frames": 12,
"has_audio": true,
"audio_codec": "aac",
"total_audio_segments": 12,
"full_audio_path": "full_audio.aac",
"output_directory": "./frames",
"frames": [
{
"index": 1,
"timestamp": "00:00:00",
"timestamp_seconds": 0,
"path": "frame_001.png",
"audio_path": "audio_001.aac"
},
{
"index": 2,
"timestamp": "00:00:05",
"timestamp_seconds": 5,
"path": "frame_002.png",
"audio_path": "audio_002.aac"
}
]
}4. **Hand off to reviewing agent** Pass the output directory path to the reviewing agent. The agent can read `manifest.json` to understand the frame sequence with audio alignment and use the Read tool to analyze individual frames. </workflow>
<supported_formats>
</supported_formats>
<output_structure>
output-dir/ ├── manifest.json # Frame + audio metadata for reviewing agent ├── full_audio.aac # Complete audio track (when audio exists) ├── frame_001.png # First extracted frame ├── frame_002.png # Second extracted frame ├── audio_001.aac # Audio segment for frame 1 (when audio exists) ├── audio_002.aac # Audio segment for frame 2 └── ...
</output_structure>
<audio_details> **Format**: AAC (.aac) -- chosen for universal compatibility, small file size, and broad tooling support.
**Codec strategy**:
**Alignment semantics**: Each `audio_NNN.aac` segment covers the same time window as its corresponding `frame_NNN.png`. For a 5-second interval, `audio_001.aac` covers 0:00-0:05, `audio_002.aac` covers 0:05-0:10, etc.
**No-audio handling**: When the source has no audio stream (GIFs, silent videos), `has_audio` is `false`, no audio files are created, and all `audio_path` fields in the manifest are `null`. The frame extraction works identically regardless.
**Full audio track**: `full_audio.aac` contains the entire audio from the source file as a single continuous track, useful for full transcription or background listening. </audio_details>
<agent_handoff> When passing frames and audio to another agent, include:
1. **Output directory path**: Where frames and audio are stored 2. **Manifest location**: `{output-dir}/manifest.json` 3. **Context**: What the reviewing agent should look for
Example prompt for reviewing agent:
Analyze the frames and audio extracted from the screen recording at ./frames. The manifest at ./frames/manifest.json lists all frames with timestamps and paired audio segments. The full audio track is at ./frames/full_audio.aac for continuous listening or transcription. Look for: [specific things to identify or analyze]
Example prompt for audio-focused agent:
Transcribe the audio segments from the recording at ./frames. Read ./frames/manifest.json to get the list of audio files with timestamps. For each audio_NNN.aac segment, provide a timestamped transcript. The full continuous audio is also available at ./frames/full_audio.aac.
</agent_handoff>
<success_criteria> Frame and audio extraction is complete when:
A comprehensive development toolkit designed following Anthropic's Claude Code Best Practices for AI-assisted software development.
Repo: qdhenry/Claude-Command-Suite
Analyze environment variables in JavaScript/TypeScript projects. Identifies unused variables, infers permission scopes, detects specific services (Stripe, AWS,…
BigCommerce API expert for building integrations, apps, headless storefronts, and automations. Full lifecycle - REST APIs, GraphQL Storefront, webhooks,…
Comprehensive Cloudflare account management for deploying Workers, KV Storage, R2, Pages, DNS, and Routes. Use when deploying cloudflare services, managing…
Transcribes audio/video files using ElevenLabs Scribe v2 API. Use when transcribing audio files, generating transcripts, or converting speech to text.
Chokidar-based file watcher that triggers `claude -p` on changes. Useful for automated AI reactions to file changes — design sync, code validation, config…
1. [Installation & TypeScript Setup](#installation--typescript-setup) 2. [Core Concepts](#core-concepts) 3. [Tweens](#tweens) 4. [Timelines](#timelines) 5.…