manim-composer
Trigger when: (1) User wants to create an educational/explainer video, (2) User has a vague concept they want visualized, (3) User mentions "3b1b style" or…
Trigger when: (1) User mentions "manim" or "Manim Community" or "ManimCE", (2) Code contains `from manim import *`, (3) User runs `manim` CLI commands, (4) Working with Scene, MathTex, Create(), or ManimCE-specific classes. Best practices for Manim Community Edition - the
$ npx -y skills add adithya-s-k/manim_skill --skill manimce-best-practices --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/manimce-best-practicesContext preview
The summary Claude sees to decide when to auto-load this skill.
Trigger when: (1) User mentions "manim" or "Manim Community" or "ManimCE", (2) Code contains `from manim import *`, (3) User runs `manim` CLI commands, (4) Working with Scene, MathTex, Create(), or ManimCE-specific classes. Best practices for Manim Community Edition - the
name: manimce-best-practices description: | Trigger when: (1) User mentions "manim" or "Manim Community" or "ManimCE", (2) Code contains `from manim import *`, (3) User runs `manim` CLI commands, (4) Working with Scene, MathTex, Create(), or ManimCE-specific classes. Best practices for Manim Community Edition - the community-maintained Python animation engine. Covers Scene structure, animations, LaTeX/MathTex, 3D with ThreeDScene, camera control, styling, and CLI usage. NOT for ManimGL/3b1b version (which uses `manimlib` imports and `manimgl` CLI).
Read individual rule files for detailed explanations and code examples:
Complete, tested example files demonstrating common patterns:
Copy and modify these templates to start new projects:
from manim import *
class MyScene(Scene):
def construct(self):
# Create mobjects
circle = Circle()
# Add to scene (static)
self.add(circle)
# Or animate
self.play(Create(circle))
# Wait
self.wait(1)# Basic render with preview manim -pql scene.py MyScene # Quality flags: -ql (low), -qm (medium), -qh (high), -qk (4k) manim -pqh scene.py MyScene
| Feature | Manim Community | 3b1b/ManimGL | |---------|-----------------|--------------| | Import | `from manim import *` | `from manimlib import *` | | CLI | `manim` | `manimgl` | | Math text | `MathTex(r"\pi")` | `Tex(R"\pi")` | | Scene | `Scene` | `InteractiveScene` | | Package | `manim` (PyPI) | `manimgl` (PyPI) |
Use the `%%manim` cell magic:
%%manim -qm MyScene
class MyScene(Scene):
def construct(self):
self.play(Create(Circle()))1. **Version confusion** - Ensure you're using `manim` (Community), not `manimgl` (3b1b version) 2. **Check imports** - `from manim import *` is ManimCE; `from manimlib import *` is ManimGL 3. **Outdated tutorials** - Video tutorials may be outdated; prefer official documentation 4. **manimpango issues** - If text rendering fails, check manimpango installation requirements 5. **PATH issues (Windows)** - If `manim` command not found, use `python -m manim` or check PATH
# Install Manim Community pip install manim # Check installation manim checkhealth
manim -pql scene.py Scene # Preview low quality (development) manim -pqh scene.py Scene # Preview high quality manim --format gif scene.py # Output as GIF manim checkhealth # Verify installation manim plugins -l # List plugins
⚡ Quick Start: Add both Manim skills to your AI agent instantly: `bash npx skills add adithya-s-k/manim_skill ` A comprehensive collection of best practices, patterns, and examples for both Manim Community Edition and ManimGL (3Blue1Brown's version).
Trigger when: (1) User wants to create an educational/explainer video, (2) User has a vague concept they want visualized, (3) User mentions "3b1b style" or…
Trigger when: (1) User mentions "manimgl" or "ManimGL" or "3b1b manim", (2) Code contains `from manimlib import *`, (3) User runs `manimgl` CLI commands, (4)…