Skill · em Criar imagem, vídeo e arte
manim
Comprehensive guide for Manim Community - Python framework for creating mathematical animations and educational videos with programmatic control
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/skills/video/manim - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 4 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
5 arquivos · 20,9 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/skills/manim/.
d=".claude/skills/manim" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/video/manim" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/animations.md" "$u/references/animations.md" \ -o "$d/references/latex.md" "$u/references/latex.md" \ -o "$d/references/mobjects.md" "$u/references/mobjects.md" \ -o "$d/references/scenes.md" "$u/references/scenes.md"
Global: instala em ~/.claude/skills/manim/.
d="$HOME/.claude/skills/manim" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/video/manim" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/animations.md" "$u/references/animations.md" \ -o "$d/references/latex.md" "$u/references/latex.md" \ -o "$d/references/mobjects.md" "$u/references/mobjects.md" \ -o "$d/references/scenes.md" "$u/references/scenes.md"
Codex
Neste projeto: instala em .agents/skills/manim/.
d=".agents/skills/manim" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/video/manim" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/animations.md" "$u/references/animations.md" \ -o "$d/references/latex.md" "$u/references/latex.md" \ -o "$d/references/mobjects.md" "$u/references/mobjects.md" \ -o "$d/references/scenes.md" "$u/references/scenes.md"
Global: instala em ~/.agents/skills/manim/.
d="$HOME/.agents/skills/manim" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/video/manim" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/animations.md" "$u/references/animations.md" \ -o "$d/references/latex.md" "$u/references/latex.md" \ -o "$d/references/mobjects.md" "$u/references/mobjects.md" \ -o "$d/references/scenes.md" "$u/references/scenes.md"
Antigravity
Neste projeto: instala em .agents/skills/manim/.
d=".agents/skills/manim" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/video/manim" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/animations.md" "$u/references/animations.md" \ -o "$d/references/latex.md" "$u/references/latex.md" \ -o "$d/references/mobjects.md" "$u/references/mobjects.md" \ -o "$d/references/scenes.md" "$u/references/scenes.md"
Global: instala em ~/.gemini/antigravity-cli/skills/manim/.
d="$HOME/.gemini/antigravity-cli/skills/manim" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/video/manim" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/animations.md" "$u/references/animations.md" \ -o "$d/references/latex.md" "$u/references/latex.md" \ -o "$d/references/mobjects.md" "$u/references/mobjects.md" \ -o "$d/references/scenes.md" "$u/references/scenes.md"
Peça ao Rook
Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/cct.manim
Prévia do SKILL.md
---
name: manim
description: Comprehensive guide for Manim Community - Python framework for creating mathematical animations and educational videos with programmatic control
version: 1.0.0
author: manim-community
repo: https://github.com/ManimCommunity/manim
license: MIT
tags: [Video, Python, Animation, Manim, Mathematical, Educational, Visualization, LaTeX, 3Blue1Brown]
dependencies: [manim>=0.19.0, python>=3.8]
---
# Manim Community - Mathematical Animation Engine
Comprehensive skill set for creating mathematical animations using Manim Community, a Python framework for creating explanatory math videos programmatically, popularized by 3Blue1Brown.
## When to use
Use this skill whenever you are dealing with Manim code to obtain domain-specific knowledge about:
- Creating mathematical animations and visualizations
- Building educational video content programmatically
- Working with geometric shapes and transformations
- Animating LaTeX equations and mathematical formulas
- Creating graphs, charts, and coordinate systems
- Implementing scene-based animation sequences
- Rendering high-quality mathematical diagrams
- Building explanatory visual content for teaching
## Core Concepts
Manim allows you to create animations using:
- **Scenes**: Canvas for your animations where you orchestrate mobjects
- **Mobjects**: Mathematical objects that can be displayed (shapes, text, equations)
- **Animations**: Transformations applied to mobjects (Write, Create, Transform, FadeIn)
- **Transforms**: Morphing between different states of mobjects
- **LaTeX Integration**: Native support for rendering mathematical notation
- **Python Simplicity**: Use Python to programmatically specify animation behavior
## Key Features
…