AI Animation Skills is a collection of agent instructions and templates for generating single-file HTML animations, including presentations, diagrams, protocol visualizations, phone interfaces, and video-style scenes. People use the skills with AI coding agents to create animated web pages from descriptions or templates. The catalogue entries are the collection's individual generation workflows.
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 skills/unclecheng-li/ai_animation/scholar-notesnpx skills add Unclecheng-li/AI_Animation --skill scholar-notesgit clone --depth 1 https://github.com/Unclecheng-li/AI_AnimationWrote 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/skills/unclecheng-li/ai_animation/scholar-notes)<a href="https://agentmods.dev/skills/unclecheng-li/ai_animation/scholar-notes"><img src="https://agentmods.dev/badge/skills/unclecheng-li/ai_animation/scholar-notes.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.1 | $0.00047 | $0.01415 |
| Opus 5 | $0.00023 | $0.00707 |
| Sonnet 5 | $0.00009 | $0.00283 |
| Haiku 4.5 | $0.00005 | $0.00142 |
Grade A, and why
学霸笔记 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 7d 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 — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.
学霸笔记 Skill
生成手写笔记本风格的单文件 HTML 学习笔记。
⚠️ 硬性约束(P0 级别,必须遵守)
- 禁止使用 emoji 作为任何图标或装饰符号 — 所有图标必须使用平面 UI 库(Lucide 或 Remix Icon)
- 内容页纸的高度不能超过皮革封面的高度 — 如果内容过多,必须压缩精简内容,以模板为参考
两种模板风格
Style A · 学霸笔记本(默认)
视觉:米黄横线纸 + 螺旋装订孔 + 胶带/咖啡渍/回形针装饰
字体:Kalam + Patrick Hand + Zeyada
图标:Lucide SVG(<i class="lucide-xxx"></i>)
交互:单页滚动,write-in 入场动画
适合:技术笔记、知识点总结、科普内容
assets/template.html
Style B · 手账皮革本
视觉:皮革封面 + 金属环装订 + 多页翻页
字体:Kalam + Ma Shan Zheng(毛笔)+ Zeyada
图标:Remix Icon(<i class="ri-xxx-line"></i>)
交互:翻页交互(键盘←→ / 点击),封面 + 内容页
适合:攻击链分析、漏洞笔记、深度技术研究
assets/template-journal.html
完整工作流
Step 1 · 需求澄清
如果用户未提供完整内容,需澄清以下问题:
- 笔记主题:标题是什么?副标题?
- 风格选择:Style A(学霸笔记本)还是 Style B(手账皮革本)?
- 内容大纲:有哪些章节/知识点?
- 技术术语:需要高亮的关键词、代码术语?
- 视觉元素:需要哪些组件(流程图、对比框、警告框、代码块等)?
Step 2 · 拷贝模板
mkdir -p "项目/XXX/notes"
# Style A
cp "<SKILL_ROOT>/assets/template.html" "项目/XXX/notes/index.html"
# Style B
cp "<SKILL_ROOT>/assets/template-journal.html" "项目/XXX/notes/index.html"
立即修改 <title> 标签。
Step 3 · 填充内容
- 预检:读取模板的
<style>块,确认所有可用的组件类名。 - 选择布局:
- Style A:从
references/layouts.md中选择 - Style B:从
references/layouts-journal.md中选择
- Style A:从
- 使用组件:从
references/components.md中挑选组件。 - 添加装饰图标:必须使用平面 UI 库图标,绝对禁止使用 emoji。
- Style A:Lucide SVG(
<i class="lucide-xxx"></i>) - Style B:Remix Icon(
<i class="ri-xxx-line"></i>)
- Style A:Lucide SVG(
- 控制内容量:内容页纸的高度不能超过皮革封面的高度,如果内容过多,压缩精简。
Step 4 · 对照检查清单自检
生成后,打开 references/checklist.md 逐项检查。
Step 5 · 本地预览
直接在浏览器中打开生成的 HTML 文件即可预览。
Step 6 · 迭代
根据用户反馈修改,调整内容、样式、动画延迟等。
设计原则
- 手写感第一:字体用 Kalam 系列,模拟真实手写。
- 纸质质感:横线纸 + 装订线 + 阴影。
- 装饰克制:胶带、咖啡渍、涂鸦是点缀,不能喧宾夺主。
- 颜色编码:红=警告/强调、蓝=信息/术语、绿=安全/正面、紫=技术/代码。
- 单文件输出:所有 CSS/JS 内联,浏览器直接打开。
- 禁止 emoji:不使用 emoji 作为图标。Style A 用 Lucide,Style B 用 Remix Icon。
- 内容适配:内容页纸的高度不能超过皮革封面的高度,内容过多时压缩精简。
What ships with it
16 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/template-journal.html 35 KB
- assets/template.html 23 KB
- examples/style-a/Note1.html 18 KB
- examples/style-a/Note2.html 20 KB
- examples/style-a/Note3.html 20 KB
- examples/style-a/Note4.html 19 KB
- examples/style-a/Note5.html 22 KB
- examples/style-b/Note1.html 49 KB
- examples/style-b/Note2.html 35 KB
- examples/style-b/Note3.html 36 KB
- LICENSE 1.0 KB
- README.md 5.4 KB
- references/checklist.md 2.4 KB
- references/components.md 3.9 KB
- references/layouts-journal.md 7.8 KB
- references/layouts.md 6.2 KB
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.
- 7d ago First seen · 139 lines · 47 tokens per session scan A 6b5e8ae7f3a9
学霸笔记 is a skill published in the GitHub repository Unclecheng-li/AI_Animation (1,233 stars, last pushed 7d ago), licensed MIT. It adds 47 tokens to every session and 1,415 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-30.
Other skills, from other repositories
fund-holding-viewer
基金持仓分析H5应用部署方案。覆盖阿里云ECS部署,支持子域名HTTPS(fundscope.wuhuajin.com)和子路径HTTPS(wuhuajin.com/fundscope)两种模式,含SSL证书签发、Nginx配置、PM2管理、故障排查全流程。.
preline-mcp
Add, integrate, or build Preline UI components and blocks into HTML files via the Preline MCP server. Use when the user mentions "preline", says "/preline", asks to add a UI component, or requests a Preline block (a ready-made page section) using Preline UI.
preline-theme-generator
Generate, preview, save, or validate Preline theme CSS using the bundled local generator in this skill. Use when the user asks to create a new Preline theme, match a brand color, translate a mood into a theme, generate light and dark theme CSS, preview theme output without writing files, or review and fix generated…
Biome
Biome 2.x — fast all-in-one web toolchain in Rust. Formats, lints, assists. Replaces Prettier + ESLint.
prettier-docs
Prettier 3.9.5 — opinionated code formatter. CLI, API, config, plugins, editor integration, CI.
phaser3-engineer
!cat skills/shared/game-visual-foundations.md 2>/dev/null || echo "=== Visual Foundations not loaded ===" !cat skills/shared/protocols/ux-protocol.md 2>/dev/null || true !cat skills/shared/protocols/input-validation.md 2>/dev/null || true !cat skills/shared/protocols/tool-efficiency.md 2>/dev/null || true !cat…