Install
$ agentstack add skill-noelpuig-claude-explains-make-video ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Video Generation Pipeline
Topic: $topic Target duration: $duration minutes CLI tool: ../cli/bin/claude-video.js
MANDATORY FIRST STEP — do this BEFORE anything else, no exceptions:
Ask the user these questions BEFORE reading help commands, before planning, before creating any files. Do NOT proceed until they answer ALL of them:
> Before I start: > > 1. Do you want to review the animation before final render? > - Yes — I'll pause after assembly so you can annotate problems in your browser. > - No — Fully autonomous, render without stopping. > > 2. What quality level? > - Standard — Automated validation + storyboard checks. > - Maximum — All standard checks PLUS visual verification sub-agents that render > every diagram and scene to PNG and visually inspect for layout issues. Slower but > catches problems the LLM can't see from code alone. > > 3. How deep should the explanations go? Here are three estimated lengths based on > what you asked for: > - Brief (~X minutes) — Cover the main concepts, skip details. Quick overview. > - Standard (~Y minutes) — Explain each concept clearly with examples. > - Deep (~Z minutes) — Full deep-dive with step-by-step walkthroughs, > exercises, formula derivations, and repeated summaries for retention. > > (Fill X, Y, Z with estimates based on the source material and topic complexity.)
After the user answers, spawn the planner agent immediately with the topic, source material path, user answers, and estimated duration. Do NOT pick colors yourself — the planner creates the design brief with the full palette.
When the planner returns:
- Read
plan/design-brief.json - Confirm the accent color with the user: "I'll use #XXXXXX as the accent."
- Store in progress.json:
"human_review","max_quality","target_depth",
"estimated_duration_min", "accent_color", and the full palette
- The planner also creates
plan/outline.json— review it before proceeding
Pass plan/design-brief.json path to EVERY sub-agent delegation. Sub-agents read their colors from this file. The accent color MUST NOT change across the video.
DO NOT skip this. DO NOT assume the answers. DO NOT start implementation until the planner has completed and the user has confirmed the accent color.
Stage 0: References
Ensure the project's references/ folder exists and contains the source material for the video. This folder is the single source of factual truth — all explanations, narration, and diagrams must be grounded in its contents. It may contain source files, research markdown, external links, or paths to other resources. If the user provided source material, confirm it's in references/ before proceeding.
Stage 1: Plan (via planner agent)
- Spawn planner agent with topic, source material, user answers, estimated duration
- Planner reads
references/and CLI guides, then creates:
plan/design-brief.json— color palette (0-saturation dark backgrounds), content plan, watchlistplan/outline.json— chapter/scene structure
- Confirm accent color with user
- Create a project directory at
../projects/$topic/(if planner hasn't already),
including references/ for source material
- Create plan/chapters/chXX.json for each chapter
- Create plan/scenes/chXX_sXX.json for each scene
Stage 2: Diagrams
- Identify unique diagrams needed from the outline
- For each diagram, spawn a diagram-author agent
- Verify each diagram passes validation
- IF max_quality: For EACH diagram, spawn a visual-verifier agent that:
- Renders the diagram to PNG via
--preview 0 - Reads the PNG and visually inspects for: overlapping text, text outside containers,
misaligned connector lines, components out of position, unreadable labels, elements clipped by the viewport edge, poor spacing, unclear hierarchy
- Returns a strict list of fixes — diagram-author must apply ALL fixes and re-verify
- This loop repeats until the visual-verifier passes with zero issues
Stage 3: Scenes
- For each chapter, spawn a chapter-coordinator agent
- Each coordinator creates and verifies all scenes in its chapter
- Quality audit: randomly preview 2-3 scenes per chapter AT DIFFERENT TIMESTAMPS
- If previews at t=25%, t=50%, t=75% of a scene look identical → the scene is STATIC
- Static scenes must be rewritten with staggered data-appear and data-highlight events
- Every scene needs ≥8 data-appear (staggered), ≥3 data-highlight (synced to narrator)
- Diagram elements must start GREY and only highlight when narrator discusses them
- Viewport zooms must use
data-viewport-focus="#element-id"to target specific
elements — do NOT compute translate values manually (the CLI auto-centers)
- IF max_quality: For EACH scene, spawn a visual-verifier agent that:
- Renders the scene at 3 timestamps (25%, 50%, 75% of scene duration)
- Reads each PNG and checks: elements visible? highlights active? text readable?
layout correct? colors muted except current highlight? no overlapping elements?
- Returns a strict list of fixes — the scene must be corrected and re-verified
Stage 4: Timing
- For each chapter, spawn a timing-engineer agent
- Update all scene files with exact TTS timestamps
Stage 5: Assembly + Automated Review
- Combine chapter files into final HTML
- Run storyboard with auto-scaled frame count
- Inspect storyboard against the 10-point checklist
- ALL automated checks must pass before proceeding
Stage 6: Human Review (only if opted in)
- Generate review page:
node ../cli/bin/claude-video.js assembly/video.html --review -o assembly/review - Tell the user to open the review HTML in their browser
- Wait for the user to paste annotations or say "approved"
- If annotations: fix issues, re-run stages 5-6 until approved
- This does NOT replace any automated checks — it is additional
Stage 7: Render
node ../cli/bin/claude-video.js assembly/video.html -o output/video.mp4 --tts --tts-engine supertonic --tts-model supertonic-3
Progress Tracking
After every completed unit, update progress.json. If conversation is compacted, read progress.json to resume.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: noelpuig
- Source: noelpuig/claude-explains
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.