| name | paper-insert |
| description | Insert a completed paper summary (from paper_summary/) into one of the four survey posts (VLA, VLM, World Models, or Spatial Intelligence) based on its theme. Use when the user requests to insert a summary into a survey post, e.g., "把文章插入到 VLA 综述", "add summary to world models survey", "insert paper into survey". Automatically updates heading numbers, anchors, and post date.
|
Paper Insert Skill
将生成的中文论文总结插入到对应的综述博客文章中(VLN, VLA, VLM, World Models, Spatial Intelligence),自动完成序号调整、锚点设置、基准排行榜插入及博客更新时间修改。
支持的主题与目标博客
主题 (--topic) | 目标博客文件 | 章节标题 | 序号前缀 |
|---|
vln | _posts/research/2026-01-05-VLN-Papers.md | # 具身导航经典论文 | 自动递增 (如 62) |
vla | _posts/research/2026-01-24-VLA-Survey.md | # 5. 经典论文深度解析 | 5 |
vlm | _posts/research/2026-03-05-VLM-Survey.md | # 8. 经典方法与代表性工作 | 8 |
wm / world-models | _posts/research/2026-04-16-World-Models-Survey.md | # 5. 经典代表性工作 | 5 |
si / spatial-intelligence | _posts/research/2026-04-29-Spatial-Intelligence-Survey.md | # 6. 经典论文深度解析 | 6 |
工作流
Step 1 — 确定总结文件路径与目标主题
- 总结文件通常位于:
C:/GitHub/Tingde.Liu.github.io/paper_summary/paper-summary-{PaperName}.md。
- 根据论文方向选择对应的
--topic(vla、vlm、wm 或 si)。
Step 2 — 确定插入位置(可选)
- 默认追加: 如果不指定
--after 参数,脚本会将论文自动追加到对应章节的末尾。
- 指定论文后: 如果该论文是另一篇论文的直接演进(如 InternVLA-A1.5 之于 InternVLA-A1),可通过
--after "InternVLA-A1" 指定在其后插入。脚本会自动计算正确的插入行,插入新章节,并将后面所有论文的二级标题序号全部顺延,同时保持被顺延论文原有的 HTML 锚点 ID 不变以避免破坏已有的内联链接。
Step 3 — 运行脚本执行插入
在 Windows 环境下,通过 conda 环境运行该脚本:
& "C:\Users\tingd\miniconda3\envs\TF-ID\python.exe" \
"C:\Users\tingd\.gemini\config\skills\paper-insert\scripts\insert_paper.py" \
"C:/GitHub/Tingde.Liu.github.io/paper_summary/paper-summary-InternVLA-A1.5.md" \
--topic vla
& "C:\Users\tingd\miniconda3\envs\TF-ID\python.exe" \
"C:\Users\tingd\.gemini\config\skills\paper-insert\scripts\insert_paper.py" \
"C:/GitHub/Tingde.Liu.github.io/paper_summary/paper-summary-InternVLA-A1.5.md" \
--topic vla \
--after "InternVLA-A1"
Step 4 — 更新校验
- 运行完成后,检查目标博客的 Front Matter 的
date 字段是否已被自动修改为今天的日期。
- 用
git diff 确认内容和序号递增行为符合预期。
注意事项
- Jekyll 公式安全: 插入前请确保公式已遵守 MathJax 安全规则(行内公式中含有
}_ 等组合时用 $$...$$ 包含)。
- 直引号规则: 插入前确保所有的图片标签属性使用的是直引号
"。