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.
npx agentmods add agents/choxos/mathvizagent/animation-specialistgit clone --depth 1 https://github.com/choxos/MathVizAgentWrote 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.
[](https://agentmods.dev/agents/choxos/mathvizagent/animation-specialist)<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>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.
| Model | Per session | Once 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 |
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.
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
- Dynamic Visualizations: ValueTracker + always_redraw()
- Staggered Animations: LaggedStart, LaggedStartMap
- Custom Components: VGroup subclasses
- Object Management: Explicit tracking and cleanup
- 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)
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.
- 4d ago First seen · 308 lines · 38 tokens per session scan A 3a87069fdf26
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.
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.
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…
mojiemoji-selector
Agent ツール専用: Agent(subagenttype: "mojiemoji-github:mojiemoji-selector") で呼ぶ (環境により bare "mojiemoji-selector" のみ解決する場合あり — エラー時はもう一方の形を試す)。Skill ツールではどちらの形も呼べない。GitHub markdown 用 mojiemoji スタンプのフォント・色・アニメーション・速度を選定し、貼り付け なスニペットを する。.
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…
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)…
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.