Manim Math Animation Skill
Plan, code, render and stitch 3Blue1Brown-style math explainer videos with Manim Community Edition.
Image & VideoIntermediate★ 139⑂ 8AI score 8/10Last updated: Jan 26, 2026
What it does
- Forces a planning pass first:
plan.mdwith topic, hook, per-scene duration, visuals, voiceover script and color palette. - Writes Manim CE code in
script.pyusing one class per scene and automatic subtitles viaadd_subcaption()(generates .srt). - Renders multiple scenes in one command (
-qlfor fast 480p tests,-qhfor 1080p60) and stitches them intofinal.mp4with an ffmpeg concat list. - Opens a viewer so you can review, then re-renders only the scenes you asked to change and re-stitches.
Who it's for
- Educators and YouTubers producing math, physics or algorithm explainers.
- Researchers and engineers who want code-managed visualizations for talks or papers.
- Anyone curious about Manim but tired of setting up project structure and render pipelines.
Examples
- "Make a 3-minute video explaining Bayes' theorem" → 5-scene plan, script.py, quick 480p preview.
- "Animate Dijkstra's algorithm on a weighted graph" → node/edge mobjects with highlight animations, then stitched output.
- "Only fix the colors and pacing in scene 3" → re-render that scene and rebuild final.mp4.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/Yusuke710/manim-skill/HEAD/skills/manim-skill/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/manim-skill folder from the GitHub repo Yusuke710/manim-skill into my ~/.claude/skills/manim-skill/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/Yusuke710/manim-skill.git && mkdir -p ~/.claude/skills && cp -r manim-skill/skills/manim-skill ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Prerequisites: install Python 3,
pip install manim(Manim Community Edition), andffmpeg. - Clone the repo:
git clone https://github.com/Yusuke710/manim-skill.git - Copy the skill:
mkdir -p ~/.claude/skills && cp -r manim-skill/skills/manim-skill ~/.claude/skills/ - If the repo ships the
manimce-best-practicesskill andtools/video_viewer.py, copy them keeping the same folder layout so the relative../toolspath resolves. - Restart Claude Code and prompt something like "Animate the Pythagorean theorem with Manim".
- Preview with
-qlfirst; only request-qh(1080p60) once you're happy with the draft.
View source on GitHub ↗License: MIT