av-sync-workflow

av-sync-workflow is a skill for Claude Code from aAAaqwq/AGI-Super-Team. It costs 141 tokens per session (1,611 once invoked), scanned A, original, MIT.

An audio-to-video editing workflow that analyses music, matches video clips to its mood and scenes, and aligns cuts with musical beats.

In plain words
What is it for?
It helps analyse tempo, sections, mood, and key moments, select clips, synchronise edits, and assemble a music video.
Why use it?
It provides a sequence for turning a song and footage into an edited video without manually working out every beat and transition first.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/video_analysis.py /tmp/clip.mp4 --output /tmp/clip_analysis.json.

Part of the agi-super-team plugin — 193 skills, 1 agent shipped together

Good fit It helps analyse tempo, sections, mood, and key moments, select clips, synchronise edits, and assemble a music video.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/aAAaqwq/AGI-Super-Team
agentmods
npx agentmods add skills/aaaaqwq/agi-super-team/av-sync-workflow

Made for: Claude Code.

Or install agi-super-team, the plugin that ships this one along with the rest of its 193 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for av-sync-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/av-sync-workflow.svg)](https://agentmods.dev/skills/aaaaqwq/agi-super-team/av-sync-workflow)
Your own site
<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/av-sync-workflow"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/av-sync-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 141 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,611 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00141 $0.01611
Opus 5 $0.00071 $0.00805
Sonnet 5 $0.00028 $0.00322
Haiku 4.5 $0.00014 $0.00161

Measured 3d ago against content hash b5cc563616b9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

av-sync-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/audio_analysis.py, scripts/simple_sync.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/av-sync-workflow/SKILL.md · 186 lines

How it starts

The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AV-Sync Workflow

Transform audio into a professionally edited video synchronized to beats, mood, and scene.

Workflow Overview

Audio → Analysis → Clip Matching → Beat Sync → Video Assembly → Export

Step 1: Analyze Audio

Use scripts/audio_analysis.py to extract:

  • Beats/BPM: Timestamp of each beat, overall tempo (BPM)
  • Sections: Verse, chorus, bridge, outro markers
  • Emotion/Mood: Energy level, valence (happy/sad), tempo category
  • Key moments: High-impact points (drops, climaxes, transitions)
python3 scripts/audio_analysis.py /path/to/song.mp3 --output /tmp/analysis.json

Output structure:

{
  "bpm": 120,
  "duration": 214,
  "beats": [0.0, 0.5, 1.0, ...],
  "sections": [
    {"type": "intro", "start": 0, "end": 15},
    {"type": "verse", "start": 15, "end": 45},
    {"type": "chorus", "start": 45, "end": 75}
  ],
  "mood": {"energy": 0.7, "valence": 0.6, "danceability": 0.8},
  "key_moments": [
    {"time": 45.0, "type": "chorus_drop", "intensity": 1.0}
  ]
}

Step 2: Gather Video Clips

User provides video clips OR search for stock footage:

Stock footage sources:

  • Pexels: https://www.pexels.com/search/videos/{query}/
  • Pixabay: https://pixabay.com/videos/search/{query}/
  • Coverr: https://coverr.co/search/{query}

Download stock video:

# Via yt-dlp (for pexels/pixabay)
yt-dlp -f "best[height<=1080]" -o "/tmp/clip_%(id)s.%(ext)s" "https://pexels.com/video/12345"

# Via direct URL
ffmpeg -i "https://example.com/video.mp4" -c copy /tmp/clip.mp4

Step 3: Analyze Each Clip

For each clip, extract:

  • Scene type (indoor/outdoor, city/nature, close-up/wide)
  • Mood/style (energetic/calm, happy/sad)
  • Duration and cut points
  • Visual elements (faces, motion, colors)
python3 scripts/video_analysis.py /tmp/clip.mp4 --output /tmp/clip_analysis.json

Step 4: Match Clips to Audio Sections

Algorithm: Map clips to audio sections based on:

  1. Emotion matching: High-energy chorus → energetic clips
  2. Scene continuity: Smooth transitions between scenes
  3. Beat alignment: Cut on beats for rhythm
  4. Length fit: Clip duration matches section duration

Read the full file on GitHub · 186 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 186 lines · 141 tokens per session scan A b5cc563616b9

Subscribe to this mod's changes

av-sync-workflow is a skill published in the GitHub repository aAAaqwq/AGI-Super-Team (91 stars, last pushed today), licensed MIT. It adds 141 tokens to every session and 1,611 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

loom-artifacts

Receive files from the CodexLoom Thread composer and publish generated images or files back to the Thread as managed artifacts. Use when a user message contains loomattachments; an attached document, data file, image, or archive must be read; or the Agent has produced a file that the user should preview or download.…

yan5xu/codexloom · 88 tokens

exploring-zero-resource-designs

Use when exploring zero resource designs is required during creativity work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.

Nolane-x/forge-os · 40 tokens

framing-creative-challenge

Use when framing creative challenge is required during creativity work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.

Nolane-x/forge-os · 39 tokens

mutating-idea-genomes

Use when mutating idea genomes is required during creativity work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.

Nolane-x/forge-os · 40 tokens

scoring-contextual-creativity

Use when scoring contextual creativity is required during creativity work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.

Nolane-x/forge-os · 39 tokens

using-denial-ladders

Use when using denial ladders is required during creativity work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.

Nolane-x/forge-os · 40 tokens