liangdabiao

Geometry Math Proof Remotion — Development skill for Claude Code

Development community

视频 skill : 精准几何风格的数学证明视频生成.

How to install Geometry Math Proof Remotion

This entry records only its repository, not the path inside it, so there is no exact command to give. Open liangdabiao/geometry-math-proof-remotion and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Geometry Math Proof Remotion does

视频 skill : 精准几何风格的数学证明视频生成。深底高饱和配色 + SVG 代码绘制 + 公式逐步揭示 + 字幕驱动时间轴。3Blue1Brown / 可汗学院风格。 本 skill 把数学证明文档(勾股定理、欧拉公式、积分、几何推导、代数恒等式…)自动转成 Remotion 视频。几何元素全部用代码绘制,公式逐行揭示,字幕以真实 TTS 时长驱动时间轴。

Alternatives in Development

  • Portaljs Add Geo — Auto-ingest a geospatial file (GeoJSON, Shapefile, GeoPackage, KML/KMZ, FlatGeobuf, CSV-with-geometry) into a 2.3k ★
  • Math Modeling Skill — 数学建模技能 - 面向 CUMCM、MCM/ICM 等数学建模竞赛的三阶段工作流:建模分析、Python/MATLAB 编程与 DOCX 论文生成 902 ★
  • Marp Slides — MARP presentation skill for Claude Code — 22 curated example decks, SVG charts, dark/light themes, dashboard c 296 ★

README

Geometry Math Proof Remotion

精准几何风格的数学证明视频生成 skill。深底高饱和配色 + SVG 代码绘制 + 公式逐步揭示 + 字幕驱动时间轴。3Blue1Brown / 可汗学院风格。

本 skill 把数学证明文档(勾股定理、欧拉公式、积分、几何推导、代数恒等式…)自动转成 1920×1080 @ 30fps 的 Remotion 视频。几何元素全部用代码绘制,公式逐行揭示,字幕以真实 TTS 时长驱动时间轴。


怎样配置使用

在 codex,claude code, workbuddy 等 Agent 命令AI:

❯ 安装skill: https://github.com/liangdabiao/geometry-math-proof-remotion ,然后需要安装好 remotion。

配置好,就可以开始使用了。

在codex,claude code, workbuddy:

❯ geometry-math-proof-remotion skill 制作视频:证明勾股定理

demo例子: ![](ScreenShot_2026-08-03_011940_388.png)

https://www.bilibili.com/video/BV1jgKH6qEu5/

目录


项目结构

geometry-math-proof-remotion/
├── SKILL.md                                # Skill 主文档(Claude 读取,理解工作流)
├── README.md                               # 本文件(人类阅读,详细说明)
│
├── references/                             # 详细模式参考
│   ├── composition-patterns.md             # SVG 描边、坐标变换、FormulaPanel、CAPTIONS 模式
│   └── jsx-unicode-pitfalls.md             # TS1351 Unicode 陷阱 + Edit 工具坑
│
├── scripts/                                # 跨项目脚本
│   └── fetch_article.py                    # 微信公众号文章 → markdown + 下载原文图
│
└── templates/                              # 视频工程模板
    └── remotion-project/                   # Remotion 4.0 模板
        ├── package.json
        ├── remotion.config.ts
        ├── tsconfig.json
        ├── requirements.txt                # Python 依赖清单
        ├── .env.example                    # 环境变量模板
        ├── .gitignore
        ├── src/
        │   ├── Root.tsx                    # Composition 根
        │   ├── index.ts                    # registerRoot 入口
        │   ├── Proof.tsx                   # 主合成组件(改这里实现具体证明)
        │   ├── geometry.tsx                # 颜色/字体/帧工具/SVG 坐标变换
        │   ├── formula-panel.tsx           # 右侧公式面板
        │   ├── caption-strip.tsx           # 底部字幕条
        │   ├─