skill/paper_interpreter/SKILL.md
如何深度解读论文——术语白话化、公式拆解、背景补充、类比解释。Agent 在阅读完论文、准备写解读报告前使用此技能。
npx skillsauth add tangshunpu/paper_granny paper-interpreterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
为背景知识薄弱的读者解读论文难懂之处。
解读报告不是翻译或摘要,而是:
每个专业术语要转化为通俗解释:
| 论文术语 | 解读方式 | |---------|---------| | "自回归解码" | "一个字一个字地生成,每次生成都依赖前面的所有字" | | "残差分布" | "目标模型想要但草稿模型没猜到的那些词的概率分布" | | "KV缓存" | "把之前计算过的结果存起来,避免重复计算" |
每个重要公式都要说明:
使用 equationbox 环境包裹重要公式。
遇到专业概念时,用 conceptbox 环境补充背景:
\begin{conceptbox}[背景知识:推测解码]
想象你在写作文:
\begin{itemize}
\item \textbf{普通方式}:每写一个字都要仔细思考,很慢
\item \textbf{推测解码}:先快速写个草稿,然后一次性检查修改
\end{itemize}
\end{conceptbox}
用生活中的类比说明复杂概念。
必须保留原论文的所有关键图片!
\begin{figure}[H]
\centering
\includegraphics[width=\textwidth]{figures/fig1.pdf}
\caption{【原论文图1】简要描述...}
\end{figure}
每张图片后添加解读说明(使用 infobox)。
写完后检查:
tools
管理 LaTeX 模板目录,提供模板发现、加载和信息展示功能。
documentation
如何使用 LaTeX 模板写解读报告。Agent 准备写报告时使用此技能,学习盒子环境和格式规范。
development
将生成的 LaTeX 文件编译为 PDF,处理编译错误,清理中间文件。
data-ai
如何自适应地探索和阅读 LaTeX 论文源码。当 Agent 下载完论文后需要阅读源码时使用此技能。