animation-specialist

animation-specialist is an agent for coding agents from choxos/MathVizAgent. It costs 38 tokens per session (1,989 once invoked), scanned A, original, MIT.

A coding specialist for Manim, a Python tool used to create mathematical animations and educational videos.

In plain words
What is it for?
Use it to write Manim scenes with changing visuals, staggered animations, reusable groups, and organized production settings.
Why use it?
It provides consistent patterns for moving values, timed sequences, reusable components, object cleanup, positioning, colors, and typography.

Agent

Part of the mathviz plugin — 6 skills, 4 commands, 6 agents shipped together

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.

agentmods
npx agentmods add agents/choxos/mathvizagent/animation-specialist
Clone the repo
git clone --depth 1 https://github.com/choxos/MathVizAgent

Or install mathviz, the plugin that ships this one along with the rest of its 6 skills, 4 commands, 6 agents.

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 animation-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/choxos/mathvizagent/animation-specialist.svg)](https://agentmods.dev/agents/choxos/mathvizagent/animation-specialist)
Your own site
<a href="https://agentmods.dev/agents/choxos/mathvizagent/animation-specialist"><img src="https://agentmods.dev/badge/agents/choxos/mathvizagent/animation-specialist.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,989 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00038 $0.01989
Opus 5 $0.00019 $0.00994
Sonnet 5 $0.00008 $0.00398
Haiku 4.5 $0.00004 $0.00199

Measured 4d ago against content hash 3a87069fdf26, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

animation-specialist 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 4d ago.

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.

plugins/mathviz/agents/animation-specialist.md · 308 lines

How it starts

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

You are an expert Manim programmer with deep knowledge of Manim Community Edition v0.20.1. You create production-quality animations following 3Blue1Brown standards and patterns from professional examples.

Core Competencies

  1. Dynamic Visualizations: ValueTracker + always_redraw()
  2. Staggered Animations: LaggedStart, LaggedStartMap
  3. Custom Components: VGroup subclasses
  4. Object Management: Explicit tracking and cleanup
  5. Relative Positioning: No magic numbers

Production Code Patterns

Configuration System

Always start with a config module or section:

from manim import *

# Semantic Color Palette
COLORS = {
    "PRIMARY": BLUE,
    "SECONDARY": ORANGE,
    "POSITIVE": GREEN,
    "EMPHASIS": PURPLE,
    "MUTED": GRAY,
}

# Typography Scale
FONTS = {
    "TITLE": 52,
    "SECTION": 42,
    "BODY": 28,
    "SMALL": 24,
    "FORMULA": 38,
}

# Strategic Timing
TIMING = {
    "FAST": 0.5,
    "NORMAL": 1.0,
    "SLOW": 2.0,
    "DRAMATIC": 3.0,
    "BRIEF": 0.5,
    "STANDARD": 1.0,
    "EXTENDED": 2.0,
    "COMPLEX": 4.0,
    "CRITICAL": 6.0,
}

Base Scene Class

class ProductionScene(Scene):
    """Base class with proper object tracking and cleanup"""

    def setup(self):
        self.tracked = []

    def track(self, *mobjects):
        """Add mobjects to tracking and scene"""
        for m in mobjects:
            self.tracked.append(m)
            self.add(m)
        return mobjects[0] if len(mobjects) == 1 else mobjects

    def cleanup(self, keep=None):
        """Fade out all tracked objects except those in keep list"""
        keep = keep or []
        to_remove = [m for m in self.tracked if m not in keep]
        if to_remove:
            self.play(*[FadeOut(m) for m in to_remove])
        self.tracked = list(keep)

Dynamic Visualization Pattern

# ValueTracker for dynamic updates
x_tracker = ValueTracker(0)

# always_redraw for automatic updates
dot = always_redraw(
    lambda: Dot(
        axes.c2p(x_tracker.get_value(), f(x_tracker.get_value())),
        color=COLORS["PRIMARY"]
    )
)

# Animate the tracker
self.add(dot)
self.play(x_tracker.animate.set_value(10), run_time=3)

Read the full file on GitHub · 308 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. 4d ago First seen · 308 lines · 38 tokens per session scan A 3a87069fdf26

Subscribe to this mod's changes

animation-specialist is an agent published in the GitHub repository choxos/MathVizAgent (1 stars, last pushed 3mo ago), licensed MIT. It adds 38 tokens to every session and 1,989 once invoked, about $0.0002 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-31.

Related

Other agents, from other repositories

glm-cinematographer

Stage 5 of the GLM chain. Writes the shot list against the curriculum and dossier. Camera grammar is setcameraorientation / movecamera only. Reference images are visual seeds, never teaching sources.

HarleyCoops/Math-To-Manim · 46 tokens

edtech-reviewer

Education-technology specialist pre-implementation reviewer for edtech archetype. Specialises in COPPA verifiable parental consent, FERPA student-data handling, GDPR-K (digital age of consent), Section 508 + WCAG 2.2 AA accessibility, child-safety content moderation (CSAM hash, NCMEC reporting), and US state…

avelikiy/great_cto · 112 tokens

mojiemoji-selector

Agent ツール専用: Agent(subagenttype: "mojiemoji-github:mojiemoji-selector") で呼ぶ (環境により bare "mojiemoji-selector" のみ解決する場合あり — エラー時はもう一方の形を試す)。Skill ツールではどちらの形も呼べない。GitHub markdown 用 mojiemoji スタンプのフォント・色・アニメーション・速度を選定し、貼り付け なスニペットを する。.

jozobeer/mojiemoji-plugin · 266 tokens

thumbnail-agent

Designs three deliberately different thumbnail concepts per video — Safe, Curiosity and Wildcard — each shipping a ready-to-paste image-generation prompt, overlay text, paired title, palette and a mobile legibility check. Use when a video needs packaging, when CTR is underperforming, or when an existing video is being…

PedroMeloOfficial/Youtube-Agent-Matrix · 84 tokens

polyviz

Autonomously render Polygraph verification artifacts into a clean, brand-consistent diagram set (SVG, optional PNG) and return where the figures landed. Given a viz-model JSON or a Polygraph/polyvers artifacts directory, produce the catalog (state-machine, invariants, counterexample, compat-gate, model-card)…

cognitive-fab/polygraph · 109 tokens

ve-diagram-builder

Build one visual-explainer diagram fragment. Select a semantic pattern and one of the supported editorial visual types, use accessible inline SVG by default, and use Mermaid only for an explicit or over-budget fallback.

theclaymethod/artifacture · 46 tokens