This skill enables AI editors (such as Claude Code, GitHub Copilot, Antigravity, OpenCode, Cursor, etc.) to perform deep video analysis by leveraging the video-helper backend service.
This skill is a bridge between your AI editor and the Video Analysis Assistant. You need the Video Helper service running — choose either option below:
- Download and install the Video Helper desktop app from the releases page.
- The app includes the backend service. The skill will automatically launch it when needed.
- (Optional) If you installed the app to a non-default location, open the
.envfile in the skill root and set:If left blank, the skill will auto-detect the default install location.VIDEO_HELPER_DESKTOP_INSTALL_DIR=C:\your\custom\install\path
- Ensure Docker is installed and running.
- Windows/macOS: usually Docker Desktop
- Linux: typically the Docker daemon service
- From your video-helper repo root (contains
docker-compose.yml):docker compose up -d - The skill can also auto-start docker compose when the backend is unavailable.
Control it via
.env:Set it toVIDEO_HELPER_ENABLE_DOCKER_AUTOSTART=10to disable docker auto-start.
- Clone and set up video-helper from source.
- Open the
.envfile in the skill root and setVIDEO_HELPER_SOURCE_DIRto the cloned project root, for example:The skill will automatically start the backend (including its worker) when needed.VIDEO_HELPER_SOURCE_DIR=D:\video-helper - (Optional) Custom Service URLs:
If you are running the service on non-default ports (8000/3000) or a remote server, update
.env:VIDEO_HELPER_API_URL=http://localhost:8000/api/v1 VIDEO_HELPER_FRONTEND_URL=http://localhost:3000
Note: Auto-start order is: Desktop → Docker (if enabled) → Source code.
You can install this skill by placing the files in the appropriate directory for your AI editor.
Clone the repository and run the installation script:
Windows (PowerShell):
.\install.ps1Linux / macOS (Shell):
chmod +x install.sh
./install.shCopy the contents of this repository (excluding scripts and git files) to one of the following paths depending on your AI editor:
- Claude Code:
~/.claude/skills/video-analyzer-skill/ - OpenCode:
~/.config/opencode/skills/video-analyzer-skill/ - GitHub Copilot:
~/.copilot/skills/video-analyzer-skill/
Once installed, you can simply ask your AI editor to analyze a video:
"Help me analyze this video: https://www.youtube.com/watch?v=VIDEO_ID"
The AI will use the skill to trigger the analysis pipeline. If the Video Helper app is not already running, it will be started automatically. You can view the structured results (mind maps, highlights, timestamps) in the Video Analysis Assistant interface:
🔗 View Results: https://github.com/LDJ-creat/video-helper
- video-helper: The core backend and frontend for video analysis.
- video-helper-skill: This repository.