educational-video-creator

educational-video-creator is a skill for Claude Code from skindhu/skind-skills. It costs 150 tokens per session (5,240 once invoked), scanned A, original, MIT.

A guide for creating educational videos with Remotion, a tool for making videos from code, using animated illustrations and explainer-style visuals. It also covers storyboards and SVG animations, which are graphics made from shapes and paths.

In plain words
What is it for?
Use it to design educational video storyboards, create animated explainers, build SVG-based learning graphics, and produce videos in a Kurzgesagt- or 回形针-inspired style.
Why use it?
It helps plan and build teaching videos that explain difficult ideas with motion and visuals.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the skind-skills plugin — 2 skills shipped together

Good fit Use it to design educational video storyboards, create animated explainers, build SVG-based learning graphics, and produce videos in a Kurzgesagt- or 回形针-inspired style.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skindhu/skind-skills/educational-video-creator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add skindhu/skind-skills --skill educational-video-creator
Clone the repo
git clone --depth 1 https://github.com/skindhu/skind-skills

Made for: Claude Code.

Or install skind-skills, the plugin that ships this one along with the rest of its 2 skills.

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 educational-video-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/skindhu/skind-skills/educational-video-creator/github.svg)](https://agentmods.dev/skills/skindhu/skind-skills/educational-video-creator)
Your own site
<a href="https://agentmods.dev/skills/skindhu/skind-skills/educational-video-creator"><img src="https://agentmods.dev/badge/skills/skindhu/skind-skills/educational-video-creator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for educational-video-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/skindhu/skind-skills/educational-video-creator"><img src="https://agentmods.dev/badge/skills/skindhu/skind-skills/educational-video-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 150 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,240 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
  • Socket pass 18 Mar 2026
  • Snyk warn 15 Feb 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.00150 $0.05240
Opus 5 $0.00075 $0.02620
Sonnet 5 $0.00030 $0.01048
Haiku 4.5 $0.00015 $0.00524

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

Security

Grade A, and why

educational-video-creator 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 12d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (assets/design-tokens.ts, scripts/generate-tts.ts, scripts/rebuild-timeline.ts, …), 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/educational-video-creator/SKILL.md · 384 lines

How it starts

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

Educational Video Creator

Create professional educational videos with Kurzgesagt/回形针 visual style using Remotion.

Prerequisites

This skill requires remotion-best-practices for Remotion technical implementation.

Check and install (MUST complete before Phase 1):

# Check if already installed, install if not
npx skills list 2>/dev/null | grep remotion-best-practices || npx skills add https://github.com/remotion-dev/skills --skill remotion-best-practices

Once installed, read the remotion-best-practices skill to load Remotion API details into context. This is essential — without it, Phase 4 code will have incorrect Remotion API usage.

External dependencies (needed for Phase 4.5 audio generation):

# ffmpeg (provides ffprobe for audio duration measurement)
brew install ffmpeg        # macOS
# apt install ffmpeg       # Linux

# edge-tts (Python TTS engine for narration generation)
pip install edge-tts

Project Setup

This skill creates videos in a dedicated remotion_video subdirectory within the current workspace.

First-time setup (recommended — non-interactive):

# Create video project directory
mkdir -p remotion_video
cd remotion_video

# Initialize without interactive prompts
npm init -y
npm install remotion @remotion/cli @remotion/google-fonts @remotion/transitions react react-dom
npm install -D typescript @types/react

# Create minimal project structure
mkdir -p src public/audio/narration

Then create the required entry files:

  • src/Root.tsx — Main composition registry
  • src/index.ts — Remotion entry point with registerRoot(Root)
  • remotion.config.ts — Remotion configuration
  • tsconfig.json — TypeScript config

Alternative (interactive — may block in automated environments):

mkdir -p remotion_video && cd remotion_video
npx create-video@latest --blank
npm install

Note: npx create-video may prompt for project name, package manager, etc. In CLI/automation contexts, use the non-interactive method above to avoid blocking.

Read the full file on GitHub · 384 lines

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. 12d ago First seen · 384 lines · 150 tokens per session scan A e8e39dfd6066

Subscribe to this mod's changes

educational-video-creator is a skill published in the GitHub repository skindhu/skind-skills (54 stars, last pushed 6mo ago), licensed MIT. It adds 150 tokens to every session and 5,240 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-08-30.

Related

Other skills, from other repositories

baoyu-comic

A creator for educational comics, including biographies and tutorials, that turns supplied content or topics into illustrated comic pages.

NousResearch/hermes-agent · 17 tokens

html-ppt-zhangzara-cartesian

An economics senior thesis on the employment effects of local minimum-wage increases — identification strategy, evidence, and limitations. Built as a decision-grade coursework defense deck for thesis committee.

nexu-io/open-design · 46 tokens

html-ppt-zhangzara-daisy-days

A customer-success workshop onboarding users to a project-management app — the first-value path and the habits that retain. Built as a decision-grade professional training deck for new customers, CS team.

nexu-io/open-design · 49 tokens

html-ppt-zhangzara-playful

A retail sales-floor training on consultative selling — the flow, the role-plays, and the daily habit that lifts conversion. Built as a decision-grade professional training deck for store associates, floor managers.

nexu-io/open-design · 52 tokens

html-ppt-zhangzara-retro-windows

An IT security-awareness training on spotting phishing — the tells, the drill, and what to do in the first 60 seconds. Built as a decision-grade professional training deck for all employees.

nexu-io/open-design · 51 tokens

sprite-animation

A pixel / sprite-style animated explainer slide — full-bleed cream stage, bold display year, animated pixel-art mascot (e.g. Hanafuda card, mushroom, or 8-bit console), kinetic Japanese display type, ticking timeline ribbon. Reads like a single frame of an educational motion video — looping CSS keyframes, no JS, ready…

nexu-io/open-design · 141 tokens