/ Diretório / Playground / manim-skill
● Comunidade Yusuke710 ⚡ Instantâneo

manim-skill

por Yusuke710 · Yusuke710/manim-skill

Claude autonomously plans, writes, renders, and refines Manim animations — go from 'explain this concept' to a video file without touching Python.

A skill that runs the full Manim loop inside Claude Code. You describe a concept; Claude drafts scene code, invokes manim to render, inspects the result, and iterates until it matches your intent. Built for 3Blue1Brown-style math/CS explanations.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

manim-skill.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "manim-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Yusuke710/manim-skill",
        "~/.claude/skills/manim-skill"
      ],
      "_inferred": true
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "manim-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Yusuke710/manim-skill",
        "~/.claude/skills/manim-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "manim-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Yusuke710/manim-skill",
        "~/.claude/skills/manim-skill"
      ],
      "_inferred": true
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "manim-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Yusuke710/manim-skill",
        "~/.claude/skills/manim-skill"
      ],
      "_inferred": true
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "manim-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Yusuke710/manim-skill",
        "~/.claude/skills/manim-skill"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.config/zed/settings.json
{
  "context_servers": {
    "manim-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/Yusuke710/manim-skill",
          "~/.claude/skills/manim-skill"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add manim-skill -- git clone https://github.com/Yusuke710/manim-skill ~/.claude/skills/manim-skill

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: manim-skill

Animate the intuition behind a math or CS concept

👤 Educators, YouTubers, students explaining to themselves ⏱ ~45 min intermediate

Quando usar: A concept is easier with motion than with words (gradient descent, sorting, Fourier).

Pré-requisitos
  • manim installed — pip install manim (or uv add manim); ensure ffmpeg present
  • Skill installed — git clone https://github.com/Yusuke710/manim-skill ~/.claude/skills/manim-skill
Fluxo
  1. State the concept
    Use manim-skill. Animate gradient descent on a 2D loss surface — ball rolling, learning rate visibly affects step size.✓ Copiado
    → Scene plan + code + low-q preview rendered
  2. Iterate
    Slower at first, faster once it's in the valley. Label the axes.✓ Copiado
    → Code updated, re-rendered preview
  3. Final render
    Looks good — render at 1080p60.✓ Copiado
    → High-q mp4 produced

Resultado: An explainer video you can embed in a blog post.

Armadilhas
  • Manim code has breaking changes across versions — Pin your manim version in requirements; the skill's prompts assume recent Community Edition
Combine com: filesystem

Build a series of scenes for a longer explainer

👤 Video creators working on a single concept over multiple shots ⏱ ~180 min advanced

Quando usar: You have a 5-minute script and need 10+ scenes to go with it.

Fluxo
  1. Feed the script
    Use manim-skill. Here's my script. Break into scene beats and propose a Manim scene per beat.✓ Copiado
    → Ordered scene plan
  2. Render in batches
    Render scenes 1-3 at preview quality; show me.✓ Copiado
    → Three low-q mp4s
  3. Consolidate
    Ok, lock scenes 1-3. Move to 4-6.✓ Copiado
    → Work proceeds; locked scenes untouched

Resultado: A full scene library ready for final render.

Armadilhas
  • Rendering high-q for every iteration wastes time — Iterate at -ql (low) and only go -qh once locked

Combinações

Combine com outros MCPs para 10× de alavancagem

manim-skill + filesystem

Organize a project's scenes, renders, and drafts

Keep scenes in project/scenes/, renders in project/renders/preview or /final.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
plan_scenes concept or script First step on any new project 0
write_scene scene spec Per-scene code generation 0
render_manim scene file, quality Preview and final renders local CPU/GPU
refine_scene scene + feedback Iterating on animation 0

Custo e limites

O que custa rodar

Cota de API
None
Tokens por chamada
Moderate — code iterations
Monetário
Free; local compute only
Dica
Always iterate at low quality. Final render once.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: None
Saída de dados: None from skill

Solução de problemas

Erros comuns e correções

manim import errors

Manim CE vs GL — make sure you're on Community (pip install manim), not the legacy 3b1b version

Verificar: python -c 'import manim; print(manim.__version__)'
Render hangs or is very slow

Use -ql for iteration; -qh only at end. Check ffmpeg presence.

Verificar: ffmpeg -version
Weird layout — objects overlap

Use positioning primitives (next_to, align_to) rather than raw coords

Alternativas

manim-skill vs. outros

AlternativaQuando usarTroca
After Effects / Motion CanvasYou want visual timeline toolsNot code; not LLM-friendly
paperbanana-skillStatic academic diagrams rather than animationsDifferent output

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills