Claude Code Skills

公开仓库收录的 skill

来自 anthropics/skills、obra/superpowers 等公开仓库的 Claude Code skill,按 7 类整理。每条直链 skills.sh 详情页与 GitHub 源目录。

In total

130

skills · 14 categories

Search

文档与办公格式(Anthropic 官方)

View all →

处理 PDF / Word / Excel / PPT 的官方 skill,论文写作流水线最常用。

5 items

pdf

anthropics/skills

Anthropic 官方的 PDF 处理 skill。围绕 pypdf 等 Python 库展开,覆盖文本与 表格抽取、页面合并拆分、旋转加水印、表单填写、加密解密,扫描件也能 做 OCR 让全文可检索。论文流水线里读文献、整理审稿意见、汇编附录 几乎绕不开。

Open →

docx

anthropics/skills

Anthropic 官方的 Word 文档 skill。把 .docx 当作 ZIP+XML 来读写,能新建 带目录、页眉、抬头的正式文档,也能解包后改 XML 再封回去做精细修订。 常见场景包括起草 PRD、改投稿信、把 .doc 转 .docx,以及处理审阅模式 下的修订与批注。

Open →

xlsx

anthropics/skills

Anthropic 官方的电子表格 skill,覆盖 .xlsx / .xlsm / .csv / .tsv。重点是 零公式错误、保留既有模板格式、字体统一专业。适合整理实证数据、修 脏表、把多源数据拼成研究用的分析表,或者按既定模板做财务建模。

Open →

pptx

anthropics/skills

Anthropic 官方的 PowerPoint skill。读取演示文稿用 markitdown 抽文字, 做缩略图扫一眼版式;新建用 pptxgenjs,改既有模板就解包 XML 再重打包。 适合按学校或会议模板做答辩 deck、把研究结果转成讲稿,或批量改备注页。

Open →

doc-coauthoring

anthropics/skills

Anthropic 官方的文档协同写作 skill。把写作过程拆成三步:先收集上下文, 再迭代结构和措辞,最后做读者视角的可读性验证。适合写 PRD、设计文档、 RFC、决策记录这类需要把想法清楚转交给同事的结构化文稿。

Open →

设计与图形(Anthropic 官方)

View all →

画图、做设计稿、生成主题与品牌素材。

7 items

frontend-design

anthropics/skills

Anthropic 官方的前端设计 skill,目标是做出可上线、视觉风格鲜明的界面, 避开常见的"AI 千篇一律"配色和居中堆叠版式。先定调子,再写 React / HTML / CSS,组件、落地页、海报、dashboard 都能用,注重细节和审美决断。

Open →

canvas-design

anthropics/skills

Anthropic 官方的视觉设计 skill,专做静态海报和插画类作品,输出 .pdf 或 .png。先用一份 .md 文件把"设计哲学"写清楚——形式、空间、色彩、构图, 再在画布上落地。要求原创,避免临摹在世艺术家的风格造成侵权。

Open →

algorithmic-art

anthropics/skills

Anthropic 官方的算法艺术 skill。用 p5.js 写生成式作品,支持种子化随机和 交互式参数调节,常见题材包括 flow field、粒子系统、涌现行为。先定一份 算法美学的"哲学"文档,再用 .html + .js 实现可交互的查看器。

Open →

brand-guidelines

anthropics/skills

Anthropic 官方品牌规范 skill。提供官方主色、辅助色与字体搭配,方便把 任意 artifact 套上 Anthropic 的视觉调性。给 Anthropic 内部或合作项目做 slide、海报、网页时直接调用,避免自己临摹品牌色出错。

Open →

theme-factory

anthropics/skills

Anthropic 官方的主题工具集 skill。预置 10 套配色 + 字体搭配方案,也能 按需生成新主题,应用到幻灯片、文档、报告、HTML 落地页等任何 artifact 上。 适合在没有强品牌约束时快速给产物套一致的视觉风格。

Open →

slack-gif-creator

anthropics/skills

Anthropic 官方的 Slack GIF 制作 skill。封装了 Slack 对动图的尺寸、帧率、 色数、时长这些隐性约束,提供生成与校验工具。emoji 用 128x128、消息用 480x480、控制在三秒内,避免做出来发不上去。

Open →

web-artifacts-builder

anthropics/skills

Anthropic 官方的 claude.ai 复杂 artifact 构建 skill。基于 React 18 + TypeScript + Vite + Tailwind + shadcn/ui,初始化、开发、再打包成单 HTML 文件 交给用户。适合做带路由、状态管理、复合组件的交互 demo,简单单文件 artifact 反而用不上。

Open →

开发与扩展(Anthropic 官方)

View all →

建 MCP、写 skill、写 API、做测试、内部沟通。

5 items

claude-api

anthropics/skills

Anthropic 官方的 Claude API skill。用来构建、调试、优化基于 Anthropic SDK 的应用,强调默认开启 prompt caching。还负责模型版本之间的迁移 (Claude 4.5 到 4.6、4.6 到 4.7,以及退役模型替换),并能针对 thinking、 tool use、batch、citations、memory 等特性做调参。

Open →

mcp-builder

anthropics/skills

Anthropic 官方的 MCP server 开发指南 skill,支持 Python FastMCP 与 Node TypeScript SDK 两条路径。重点放在工具设计的质量上——既要覆盖 API, 又要提炼面向真实任务的 workflow 工具。适合给现有外部服务封 MCP 接口 给 LLM 调用。

Open →

skill-creator

anthropics/skills

Anthropic 官方的 skill 元 skill,用来从零写新 skill、修改已有 skill,并对 skill 触发准确性、表现做 eval。流程是先想清楚 skill 做什么,写初稿,跑 测试提示,做定量与定性评估,再迭代描述以提升触发命中率。

Open →

webapp-testing

anthropics/skills

Anthropic 官方的 Web 应用测试 skill。基于 Playwright 写原生 Python 脚本, 能验证前端功能、调试 UI 行为、抓截图、看浏览器日志。配套 `scripts/with_server.py` 管理服务进程,做端到端回归或排查页面问题时 最常用。

Open →

internal-comms

anthropics/skills

Anthropic 官方的内部沟通写作 skill。针对 3P 更新(Progress / Plans / Problems)、公司内部 newsletter、FAQ、状态报告、领导汇报、事故复盘等 常见格式,提供模板与示例。把日常内部文档对齐到组织偏好的格式与口吻。

Open →

流程纪律(obra/superpowers)

View all →

Brainstorm → 写计划 → TDD → 验证 → 代码评审一整套工程纪律。

14 items

using-superpowers

obra/superpowers

obra/superpowers 体系的入口 skill。规则是:只要任务有 1% 可能命中某个 skill,就必须先 invoke 那个 skill 再回答,包括澄清问题之前。整套 superpowers 把流程纪律作为硬约束,本 skill 是建立这种纪律的起点。

Open →

brainstorming

obra/superpowers

obra/superpowers 的创意头脑风暴 skill。任何"做新功能、加新组件、改行为" 类的工作都要先走它:通过逐条提问澄清意图、需求和设计,把模糊想法 推演成完整方案。设计未经用户拍板前不能写代码、不能搭项目。

Open →

writing-plans

obra/superpowers

obra/superpowers 的实施计划撰写 skill。假定执行者对项目一无所知,把 多步任务拆成"动哪些文件、写什么代码、怎么测、要看哪些文档"的细颗粒 清单。强调 DRY、YAGNI、TDD、勤提交,方便后续交给子 agent 或新 session 执行。

Open →

executing-plans

obra/superpowers

obra/superpowers 的计划执行 skill。在新 session 里加载已经写好的实施 计划,先做一轮批判性 review,再按顺序执行每个任务,完成后报告。如果 平台支持 subagent,会推荐改用 subagent-driven-development 提高质量。

Open →

test-driven-development

obra/superpowers

obra/superpowers 的 TDD skill。先写测试、看它失败、再写最少代码让它过。 适用于新功能、bug 修复、重构、行为变更——抛弃式原型、生成代码、 配置文件这类情况要先和人确认。铁律是没有失败的测试,就不写实现代码。

Open →

systematic-debugging

obra/superpowers

obra/superpowers 的系统化调试 skill。铁律是没找到根因不能动手修,杜绝 随便贴补丁掩盖问题。覆盖测试失败、生产 bug、构建报错、性能问题、集成 问题等各种技术故障,强制走完根因调查阶段才允许提出修复方案。

Open →

verification-before-completion

obra/superpowers

obra/superpowers 的完工前验证 skill。在声称"做完了 / 修好了 / 通过了" 之前,必须本轮对话里跑一遍验证命令并贴出输出。证据先于结论,提交、 开 PR 前都要走一道。专治"先喊完成再被打脸"的常见漏洞。

Open →

requesting-code-review

obra/superpowers

obra/superpowers 的代码评审请求 skill。派一个独立 subagent 做评审,给它 精心构造的上下文,而不会继承当前 session 的历史。这样评审视角聚焦在 产物本身,主 session 也保留自己的上下文继续干活。完成大功能或合并 主分支前都该走一次。

Open →

receiving-code-review

obra/superpowers

obra/superpowers 的接收评审 skill。强调技术严谨而非情绪化回应:先完整 读完反馈,再用自己的话复述需求,对照代码事实做核验,技术上站不住 就有理有据地反驳。一次实现一项,逐条测试,避免盲目接受或形式上 应付。

Open →

writing-skills

obra/superpowers

obra/superpowers 的 skill 写作 skill。把写 skill 类比成对流程文档做 TDD: 先用 subagent 跑压力场景看 baseline 表现,再写 skill,再验证 agent 是否 遵守,最后封堵漏洞。个人 skill 放在 `~/.claude/skills` 或 `~/.agents/skills/`。

Open →

subagent-driven-development

obra/superpowers

obra/superpowers 的子 agent 驱动开发 skill。一项任务起一个新 subagent, 完成后走两阶段评审——先核 spec 合规,再看代码质量。子 agent 拿到的 是精心拼好的上下文,不继承主 session 历史,既让它专注,又保护主线的 上下文预算。

Open →

dispatching-parallel-agents

obra/superpowers

obra/superpowers 的并行 agent 派发 skill。面对两个以上互不依赖、无共享 状态的任务时,串行调查浪费时间,改成并行派 agent 同时跑。每个 agent 拿到隔离的上下文与精确指令,主 session 只负责协调。典型场景:多个 不相关的测试失败同时排查。

Open →

using-git-worktrees

obra/superpowers

obra/superpowers 的 git worktree skill。在动新功能或执行计划前,确保自己 在一个隔离工作区里。优先用平台原生 worktree 工具,没得用时再退到手工 git worktree。先检测是否已在隔离环境,避免和 harness 打架,也避免污染 主分支。

Open →

finishing-a-development-branch

obra/superpowers

obra/superpowers 的开发分支收尾 skill。验证测试通过 → 探测当前环境 → 给出合并、开 PR、清理等结构化选项 → 按选择执行 → 收尾清理。测试没过 必须先修,避免半成品被 merge 进主线。

Open →

Obsidian 笔记(kepano/obsidian-skills)

View all →

Obsidian Markdown 方言、Canvas、Bases、命令行集成,配合 obsidian 笔记仓使用。

5 items

obsidian-markdown

kepano/obsidian-skills

kepano/obsidian-skills 里的 Obsidian Markdown 写作 skill。专门处理 Obsidian 对 CommonMark 和 GFM 的扩展语法:wikilinks、embeds、callouts、properties frontmatter、tags、注释。把笔记结构、属性、双向链接和嵌入这些 Obsidian-特有的写法理顺,新建或编辑 .md 时不踩坑。

Open →

obsidian-bases

kepano/obsidian-skills

kepano/obsidian-skills 里的 Obsidian Bases skill,用于编辑 .base 文件。 通过 YAML 描述 filters、formulas 和 table / cards / list / map 四种视图, 把笔记库当数据库查询。适合给研究项目做文献追踪表、任务面板、属性 汇总等动态视图。

Open →

obsidian-cli

kepano/obsidian-skills

kepano/obsidian-skills 里的 Obsidian CLI skill,通过 `obsidian` 命令行操作 正在运行的 vault:读写笔记、检索内容、管理任务和属性。还支持插件与 主题开发场景——reload 插件、跑 JS、抓错误、截图、看 DOM,方便在 终端里批量维护笔记或调试插件。

Open →

json-canvas

kepano/obsidian-skills

Obsidian Canvas 文件(.canvas)的读写规范 skill。Canvas 本质是带 nodes 和 edges 两个数组的 JSON,按 JSON Canvas Spec 1.0 组织。skill 给出 新建画布、追加节点、连线、修改属性的操作步骤,以及节点 id 用 16 位 hex、文本节点用 \n 换行等容易踩坑的细节。适合让 agent 帮你批量生成 思维导图或流程图。

Open →

defuddle

kepano/obsidian-skills

用 Defuddle CLI 把网页正文抽成干净 markdown 的 skill。相比 WebFetch 直接抓 HTML,它会去掉导航栏、广告、侧边推荐这些噪声,省 token。 典型用法是 defuddle parse <url> --md,也能单独取标题、描述、域名 等字段。URL 已经是 .md 结尾就不需要它,直接走 WebFetch 即可。

Open →

找 skill / 装 skill

View all →

通过 npx 命令搜索全网公开 skill 并一键安装。

1 items

UI / 设计(社区高分)

View all →

67 种 UI 风格、161 套配色、57 组字体配对,覆盖 15+ 技术栈的设计 skill。

1 items

论文 · 数据分析

View all →

实验规划、消融研究、结果分析、统计与表格整理。

7 items

ablation-planner

Chanw-research/claude-code-paper-writing

ablation-planner 是论文投稿前系统设计消融实验的 skill。主实验完成并形成初步结论后自动启动,从审稿人视角逐项提出必须验证的消融内容:每个新组件的贡献、关键超参数敏感性、替代设计对比。底层由 Codex 主导设计,CC 评估可行性并执行,适合需要为投稿补全实验证据的分析阶段。

Open →

analyze-results

Chanw-research/claude-code-paper-writing

这个 skill 针对机器学习实验的自动化分析。它从指定目录找出 JSON 或 CSV 结果,按自变量与因变量组织比较表,计算多次重复的均值与标准差,识别单调或 U 形趋势,标记异常值,最后给出每条发现的数值观察、可能原因与后续实验建议。适用于论文写作中需要快速从原始输出提炼核心结论并更新实验记录的场景。

Open →

experiment-plan

Chanw-research/claude-code-paper-writing

实验规划 skill,将稳定的方法提案转化为以核心 claim 驱动的实验路线图。给定问题锚点与主导贡献,输出包含运行顺序、消融矩阵与评估协议的紧凑验证方案,优先选用少量强 baseline 而非大量弱 baseline。适用于

Open →

results-analysis

Chanw-research/claude-code-paper-writing

Results Analysis 是一个面向论文实验数据分析的 Claude Code 技能。它读取 CSV、JSON、TensorBoard 日志等格式的数据,做均值、标准差、置信区间等统计摘要,并运行 t 检验、ANOVA 等显著性检验。输出包括结果文本与可直接用于论文的图表。适用于做完模型对比实验后整理数据、生成 Results 章节初稿。

Open →

run-experiment

Chanw-research/claude-code-paper-writing

Claude Code 的 run-experiment skill 负责将训练任务部署到本地 GPU、远程服务器、Vast.ai 或 Modal serverless 环境。自动检测目标机器的硬件状态与 conda 环境,完成代码同步与命令执行,省去反复 SSHand 配置的工作。适合需要频繁切换多台 GPU 机器跑消融实验或超参搜索的研究者。

Open →

statistical-analysis

Chanw-research/claude-code-paper-writing

Guided statistical analysis with test selection and reporting. Use when you need help choosing appropriate tests for your data, assumption checking, power analysis, and APA-formatted results. Best for academic research reporting, test selection guidance. For implementing specific models programmatically use statsmodels.

Open →

xlsx

Chanw-research/claude-code-paper-writing

用于处理 Excel、CSV 等电子表格文件的 Claude Code skill。定义了一套完整的格式规范:蓝色字体标记硬编码输入、黑色标记公式、绿色标记同工作簿引用,同时要求零公式错误、数字格式统一。适用于论文数据整理、财务模型搭建、批量数据清洗等场景,输出的表格可直接用于汇报或投稿。

Open →

论文 · 文档处理

View all →

docx / pdf / formula / proof reading 等论文素材处理。

6 items

docx

Chanw-research/claude-code-paper-writing

论文写作场景的 .docx 文件处理 skill。支持创建带目录、页眉页脚、修订标记的 Word 文档,也能读取现有文档的文本与 XML 结构。内部调用 JavaScript 的 docx 库生成内容,借助 pandoc 提取文本或接受修订。适合需要在 CLI 环境下自动化生成论文草稿、整理同行评审意见、或批量处理文档模板的研究者。

Open →

formula-derivation

Chanw-research/claude-code-paper-writing

帮助研究人员把散乱的公式笔记整理成一篇连贯的推导文档。skill 会先锁定推导目标、核对假设与符号定义,然后输出三种结果之一:完整的推导包、经过重构对象或假设修正后的推导包,或者一份 blocker 报告,解释当前笔记为什么无法支撑连贯推导。适用于论文写作者从理论草稿过渡到成稿的阶段。

Open →

markitdown

Chanw-research/claude-code-paper-writing

Microsoft 开源的 MarkItDown 工具,用于将 PDF、Office 文档、图片、音频、HTML 等十余种格式统一转为干净 Markdown。Markdown 对 LLM 处理更为节约 token,适合作为知识库预处理或文档管道的前端环节。此 skill 还融合了生成科学示意图的能力,可在转换完成后自动建议补充论文级插图。

Open →

pdf

Chanw-research/claude-code-paper-writing

这个 skill 封装了 pypdf 与 pdfplumber,能够从 PDF 中抽取文本与表格、合并或拆分文件、旋转页面、添加水印、填充表单、加密解密,以及用 ocrmypdf 对扫描件做 OCR。论文写作中处理文献、整理审稿意见、合并多个文档或生成自定义 PDF 时都用得上。

Open →

proof-checker

Chanw-research/claude-code-paper-writing

数学证明的自动化验证与修复工作流。该 skill 读取 LaTeX 证明文本,通过跨模型对抗审查(基于 GPT-5.4 高推理配置)识别逻辑缺口、量词错误、未证明断言等,逐条修正后重新审查,最终生成审计报告。适用于理论论文中需要多人轮值审查前的自动化扫查,或作为审稿环节的辅助工具。

Open →

proof-writer

Chanw-research/claude-code-paper-writing

proof-writer 专门用于书写严格的数学证明,覆盖定理、引理、命题与推论的起草与补全。它自动判定原始命题是否在给定假设下可证,若能则输出完整证明,若不能则给出修正后的命题或堵塞报告说明为什么证明不成立。适合在撰写机器学习理论论文时,需要逐条验证论证链条完整性的研究者。

Open →

论文 · 图表绘制

View all →

paper figure / illustration / mermaid / drawio / plotly / seaborn 等可视化与配图。

12 items

drawio

Chanw-research/claude-code-paper-writing

论文和汇报中需要精细化图表的场合,drawio 提供比 mermaid 更强的灵活度。这个 skill 调用 drawio XML 格式,配有 8900 余种模板,可用于网络拓扑图、UML、架构图以及含 AWS、Azure 专有图标的场景。适合对像素位置与颜色有精确要求的示意图,不适合简单流程图(用 mermaid)或数据驱动图表(用 vega)。

Open →

figure-description

Chanw-research/claude-code-paper-writing

figure-description 是面向专利撰写的 Claude Code skill。用户提供技术示意图,它按附图自动分配参考数字编号(Fig 1 用 100–199,Fig 2 用 200–299,以此类推),并参考发明公开书与权利要求书,生成形式规范的中文附图说明。适用于专利撰写阶段,将草图中的技术特征对应到权利要求,同时产出符合审查指南的附图说明文本。

Open →

figure-generation

Chanw-research/claude-code-paper-writing

Generate publication-quality scientific figures using matplotlib/seaborn with a three-phase pipeline (query expansion, code generation with execution, VLM visual feedback). Handles bar charts, line plots, heatmaps, training curves, ablation plots, and more. Use when the user needs figures, plots, or visualizations for a paper.

Open →

figure-planner

Chanw-research/claude-code-paper-writing

针对论文图表逻辑的设计与审计 skill。它解决的是单个主图信息过载、面板分工模糊、图例与正文脱节这类问题。核心做法是:先给每个主图写一句可辩护的 claim,再分配每个面板的唯一角色(证据、方法说明、验证、排序、转化示意等),然后调整主图与补图的归属。在草稿阶段,把图表从“按绘图方便组织”改成“按论证逻辑组织”时用得上。

Open →

figure-spec

Chanw-research/claude-code-paper-writing

从结构化 JSON 确定性生成出版级 SVG 矢量图(架构图、工作流图、管道图)的 Claude Code skill。每份 JSON 对应完全一致的 SVG 输出,支持矩形/圆/菱形等多形状节点与中文多行标签。无需联网或 API 密钥,适用于论文、技术报告中对节点位置和连接语义要求严格的正式图表场景。

Open →

mermaid-diagram

Chanw-research/claude-code-paper-writing

用于论文写作中快速生成 Mermaid 图表的 Claude Code skill。输入自然语言的需求描述,自动选出最合适的图类型、生成 Mermaid 代码并保存为 .mmd 文件到 figures/ 目录。内置语法校验,遇到错误反复修正最多三次。流程图

Open →

nature-data

Chanw-research/claude-code-paper-writing

针对 Nature Portfolio 期刊投稿流程而设计的 Data Availability 写作辅助。自动生成符合出版社要求的英文数据可用性声明,涵盖存储库选择、数据集引用格式与 FAIR 元数据检查。特别考虑中文作者常见的表述习惯,将“可向通讯作者索取”这类模糊说法转化为 Nature 认可的受限访问声明。适用于准备投稿 Nature 系列杂志时整理原始数据与补充材料的发布方案。

Open →

nature-figure

Chanw-research/claude-code-paper-writing

Submission-grade Nature/high-impact journal figure workflow for Python or R. Use whenever the user asks to create, revise, audit, or polish manuscript figures, multi-panel scientific plots, or journal-ready SVG/PDF/TIFF outputs, especially for Nature-family or other high-impact journals. Before plotting, define the figure's conclusion, evidence logic, export needs, and review risks. If the user has not chosen Python or R, ask "Python or R?" and stop. Use only the selected backend for figure generation, previewing, exporting, and QA. Supports matplotlib/seaborn and ggplot2/patchwork/ComplexHeatmap. Not for dashboards or Illustrator/Figma-first infographics.

Open →

paper-figure

Chanw-research/claude-code-paper-writing

基于实验数据自动生成出版级图表与 LaTeX 表格的 Claude Code skill。适用范围包括训练曲线、方法对比柱状图、热力图、箱线图等数据驱动图表,以及消融实验等对比表格。无法自动生成架构示意图或定性结果图——这类需要手动绘制并置于指定目录。适合在论文写作收尾阶段集中成图,减少逐张手动调整样式的工作量。

Open →

paper-illustration

Chanw-research/claude-code-paper-writing

用 Gemini 的图像生成能力配合 Claude 的审校迭代,构造一个多阶段工作流来生成学术论文的图表。专注于架构图和方法示意图,经过布局优化和风格验证环节来保证配色、间距与排版符合 CVPR 或 NeurIPS 的标准。适合在撰写论文需要生成图表但不想手动反复调整的场景。

Open →

plotly

Chanw-research/claude-code-paper-writing

Plotly 是一个 Python 交互式图表库,提供 50 余种图表类型。通过 Plotly Express 高层接口或 Graph Objects 底层控制,可以快速生成带悬停提示、缩放与平移功能的图表。适用于需要交互性的探索性数据分析、报告演示,以及论文中初步探索数据分布。最终出版的静态图表仍需依赖 matplotlib 或科学可视化工具。

Open →

seaborn

Chanw-research/claude-code-paper-writing

Seaborn 是基于 matplotlib 的统计绘图库,专门处理 DataFrame 数据与变量映射。内置箱线图、小提琴图、成对图、热力图等常见统计图表类型,能自动计算置信区间和分组统计量。论文写作中用于快速完成数据探索和

Open →

论文 · 文献综述

View all →

arxiv / pyzotero / systematic-review / citation-audit 等文献检索、引用核对与综述写作。

25 items

alphaxiv

Chanw-research/claude-code-paper-writing

AlphaXiv 是面向 Claude Code 的快速论文查阅工具。输入 arXiv ID 或 URL 即可拉取该论文的三级摘要——先尝试 AlphaXiv 的 LLM 优化概述,再降级到完整 Markdown,最后回退到 LaTeX 源码。适用于只想快速理解某一篇论文的核心贡献与结构,而非做文献检索的场景。属于单篇精读的快捷入口。

Open →

arxiv-database

Chanw-research/claude-code-paper-writing

基于 arXiv Atom API 的预印本检索工具。支持按关键词、作者、分类、日期范围与 arXiv ID 查询,结果以 JSON 格式返回标题、摘要、作者、分类及链接。适用于搭建文献综述数据集、跟踪子领域新投稿,或批量下载 PDF 做全文分析。

Open →

arxiv

Chanw-research/claude-code-paper-writing

Search, download, and summarize academic papers from arXiv. Use when user says "search arxiv", "download paper", "fetch arxiv", "arxiv search", "get paper pdf", or wants to find and save papers from arXiv to the local paper library.

Open →

citation-audit

Chanw-research/claude-code-paper-writing

Zero-context verification that every bibliographic entry in the paper is real, correctly attributed, and used in a context the cited paper actually supports. Uses a fresh cross-model reviewer with web/DBLP/arXiv lookup to catch hallucinated authors, wrong years, fabricated venues, version mismatches, and wrong-context citations (cite present but the cited paper does not establish the claim). Use when user says "审查引用", "check citations", "citation audit", "verify references", "引用核对", or before submission to ensure bibliography integrity.

Open →

citation-management

Chanw-research/claude-code-paper-writing

Citation-management 用于学术文献引用管理,从 Google Scholar 和 PubMed 查找论文,提取作者、标题、期刊、年份等完整元数据,验证引用准确性,并将 DOI、PMID 或 arXiv ID 转换为格式正确的 BibTeX 条目。写论文或整理文献综述时,可以用它快速核对参考文献、消除重复条目,保持引用格式一致。

Open →

citation-verifier

Chanw-research/claude-code-paper-writing

这个 skill 专门用来清理手稿的引用问题。它本地扫描正文与 BibTeX 文件,抓出占位符引用、重复键值、缺失标识符,以及从 Google Scholar 等来源导入时常见的元数据错误(作者名、年份、页码格式不一致)。适合提交或返修前做一轮文献卫生检查,与通用写作 skill 搭配使用。

Open →

comm-lit-review-claude-single

Chanw-research/claude-code-paper-writing

面向通信领域的文献综述 skill,用于无线通信、蜂窝、卫星、V2X、路由调度、MAC/PHY 等子方向的论文查找与相关工作总结。检索策略是知识库优先:依次搜索 Zotero、Obsidian、本地论文文件夹,再扩展到 IEEE Xplore、ScienceDirect 等外部数据库。适合需要快速掌握某细分方向的文献全貌或撰写 related work 的研究者。

Open →

deep-research

Chanw-research/claude-code-paper-writing

deep-research 是一个供 Claude Code 使用的文献综述 skill。它将综述拆解为六个有序阶段,从前沿检索、系统调查、深度阅读、代码库考察到最终合成与差距分析,每个阶段产生可检视的中间产物。适用于需要系统了解某个研究方向全貌的研究者,从零开始建立文献库与综述报告。

Open →

deepxiv

Chanw-research/claude-code-paper-writing

面向文献阅读场景的 DeepXiv 渐进式阅读 skill。支持按 arXiv ID 或关键词搜索论文,依次获取摘要、元数据与章节内容,避免一次性加载全文。也提供 trending 论文查询与网络搜索能力。在文献综述初期筛选大批文章,或针对某篇论文逐节细读时,比直接下载 PDF 更省时间。

Open →

exa-search

Chanw-research/claude-code-paper-writing

exa-search 是 Claude Code 中基于 Exa API 的网络搜索技能,专为内容提取设计。与仅覆盖学术数据库的 arXiv、Semantic Scholar 不同,它搜索博客、技术文档、公司官网与新闻等广义在线内容,支持按类别、日期、域名过滤,返回高亮片段或全文摘要。适合文献综述阶段补充学术数据库未能索引的技术博客或行业报告。

Open →

literature-review

Chanw-research/claude-code-paper-writing

Conduct comprehensive literature reviews using multi-perspective dialogue simulation. Generate diverse expert personas, conduct grounded Q&A conversations, and synthesize findings into structured knowledge. Use when starting a new research project or writing a survey section.

Open →

management-review-planner

Chanw-research/claude-code-paper-writing

用于管理学和战略领域正式文献综述的规划 skill。在完成论文列表构建和全文转换之后、进入正式写作之前使用。核心任务是把研究主题拆解为关键构念与机制,追踪每个构念的锚定来源,围绕它们搭建节段结构,并生成段落级蓝图。框架冻结为 `review_plan.md` 存储在 workspace,每一次修订都有时间戳存档,确保之后文献增补和写作不偏离已确认的结构。适合需要严谨追踪文献溯源和保持综述逻辑一致性的研究项目。

Open →

management-review-writer

Chanw-research/claude-code-paper-writing

管理综述写作 skill 用于在战略、创业、组织理论等管理学科领域,基于 OpenAlex 文献工作区或精选论文列表生成文献综述初稿。它要求先有一份经确认的 review_plan.md 作为结构蓝图,然后逐段填充证据并保持段落式学术散文与真实 APA 引用。适合在文献检索与理论框架搭建完成后,进入正式写作阶段使用。

Open →

nature-citation

Chanw-research/claude-code-paper-writing

针对 Nature/CNS 系列期刊的引用搜索与导出工具。它将长手稿切分成可引用的段落,仅搜索 Nature Portfolio、AAAS Science 系列及 Cell Press 认可的旗舰和子刊,按出版时间范围过滤,最终输出 ENW、RIS 或 Zotero RDF 格式的引用管理文件。每条候选引用附带强支撑、部分支撑、背景支撑三个层级的证据评价,有助于在正式投稿前补全并验证参考文献的准确性。

Open →

novelty-check

Chanw-research/claude-code-paper-writing

Verify research idea novelty against recent literature. Use when user says "查新", "novelty check", "有没有人做过", "check novelty", or wants to verify a research idea is novel before implementing.

Open →

openalex-ajg-insights

Chanw-research/claude-code-paper-writing

面向管理与商科研究的 Claude Code skill,内置 openalex-ajg-mcp 与 paper-download-mcp 两个后端。支持按 ABS/AJG 评级检索文献、创建可复用的综述语料库、增量下载 PDF、用 MinerU 将 PDF 转为 Markdown,并检索摘要或全文观点。适用于系统文献综述、理论构建与期刊投稿前的文献扫描。

Open →

prior-art-search

Chanw-research/claude-code-paper-writing

Prior Art Search 是用于专利和学术文献现有技术检索的 skill。它从发明描述中提取核心发明点、技术问题与关键特征,然后在 Google Patents 和 Espacenet 中执行多角度搜索,再深入抓取相关专利的摘要与权利要求。适用于专利申请前的查新、论文综述中的技术背景补全、以及侵权分析中的对比检索。

Open →

pyzotero

Chanw-research/claude-code-paper-writing

封装 pyzotero 的 Claude Code skill,通过 Zotero Web API v3 管理参考文献库。可以从 Zotero 中检索条目、创建和更新文献、上传 PDF 附件、管理标签和导出引文。适用于需要将文献管理与写作自动化结合的场景,比如按关键词批量导出引用条目、同步本地文件到 Zotero 群组库。

Open →

reference-audit-guide

Chanw-research/claude-code-paper-writing

Use when the user asks for citation-verification principles, reference-audit best practices, or guidance on preventing fake or inaccurate citations in academic writing.

Open →

research-lit

Chanw-research/claude-code-paper-writing

为 Claude Code 设计的文献检索技能,整合 arXiv、Semantic Scholar、Zotero 和本地 PDF 库作为数据源。用户可以指定搜索范围、下载论文全文或仅获取元数据,并支持对本地 PDF 进行内容扫描。适用于论文写作初期快速定位相关文献、生成摘要和组织参考文献列表。

Open →

research-refine-pipeline

Chanw-research/claude-code-paper-writing

一个端到端的方法论精炼与实验规划工作流。将模糊的研究方向逐步收束为聚焦的最终提案,再自动生成一份与论文核心主张绑定的实验路线图。它串联子技能 research-refine 和 experiment-plan,核心原则是先在稳定的方法上规划实验,而非在飘忽的草案上套实验框架。适合撰写论文初期需要同时定方法、写提案、排实验步骤的研究者。

Open →

research-refine

Chanw-research/claude-code-paper-writing

一个将模糊研究方向精炼为可执行方法方案的流程。核心围绕四个原则:锁定问题锚点不动摇、选最小直接机制改瓶颈、一篇论文只做一件主要贡献、用基础模型能力但不堆叠术语。通过多轮自我审查与 GPT-5.4 评审把方案打薄打实。适合已有问题但技术路线仍模糊时使用。

Open →

review-orchestrator

Chanw-research/claude-code-paper-writing

Review-orchestrator 是为长期文献综述项目设计的多 agent 工作流控制器。它把检索、框架规划与撰写拆成三个独立的子 agent,并强制在规划被批准后才能进入写作阶段。工作流状态保存在本地文件中而非对话记忆,因此能跨越多次会话持续管理。适用于需要反复迭代、多人协作或跨天执行的综述写作场景。

Open →

semantic-scholar

Chanw-research/claude-code-paper-writing

Semantic Scholar API 用于搜索已发表的期刊与会议论文,返回被引量、出处、TLDR 摘要。适用于查找 IEEE、ACM、Springer 等正式出版的文献,与 arXiv 预印本搜索配合使用。

Open →

systematic-literature-review

Chanw-research/claude-code-paper-writing

当用户明确要求"做系统综述/文献综述/related work/相关工作/文献调研"时使用。AI 自定检索词,多源检索→去重→AI 逐篇阅读并评分(1–10分语义相关性与子主题分组)→按高分优先比例选文→自动生成"综/述"字数预算→资深领域专家自由写作(固定摘要/引言/子主题/讨论/展望/结论),保留正文字数与参考文献数硬校验,强制导出 PDF 与 Word。支持多语言翻译与智能编译(en/zh/ja/de/fr/es)。

Open →

论文 · 写作流程与纪律

View all →

论文写作的全套纪律:bootstrap / plan / write / claim audit / rebuttal / submission audit。

29 items

academic-researcher

Chanw-research/claude-code-paper-writing

Academic Researcher 是面向文献综述与学术写作的 Claude Code skill。它内置了一套论文分析框架,从研究问题、方法论、关键发现、解释与意义到局限与未来方向,逐项结构化审读;同时整合 APA、MLA、Chicago 三种引用格式。适用于跨学科的场景:快速提取一篇论文的骨架、对比多篇文献的方法差异、或在校对时生成标准参考文献条目。

Open →

conference-paper-writing

Chanw-research/claude-code-paper-writing

Use when writing or revising ML or AI conference papers for venues such as NeurIPS, ICML, ICLR, ACL, AAAI, or COLM, especially when the workflow is conference-first rather than Nature-style journal-first.

Open →

idea-creator

Chanw-research/claude-code-paper-writing

Generate and rank research ideas given a broad direction. Use when user says "找idea", "brainstorm ideas", "generate research ideas", "what can we work on", or wants to explore a research area for publishable directions.

Open →

idea-discovery

Chanw-research/claude-code-paper-writing

Workflow 1: Full idea discovery pipeline. Orchestrates research-lit → idea-creator → novelty-check → research-review to go from a broad research direction to validated, pilot-tested ideas. Use when user says "找idea全流程", "idea discovery pipeline", "从零开始找方向", or wants the complete idea exploration workflow.

Open →

nature-portfolio-playbook

Chanw-research/claude-code-paper-writing

Use when choosing among Nature, Nature Methods, or Nature Biotechnology, or when preparing a Nature Portfolio life-science manuscript for venue fit, article-type framing, and policy-aware pre-submission checks.

Open →

paper-analyzer

Chanw-research/claude-code-paper-writing

Use when deeply analyzing a single paper and producing structured notes on claims, methods, figures, evaluation, strengths, limitations, and related work.

Open →

paper-backup-before-word

Chanw-research/claude-code-paper-writing

在编辑任何 .docx / Word 文件之前,必须先用 cp 创建带时间戳的备份副本, 并优先评估"用 markitdown 转 LaTeX 后再改"是否更安全; 只有在确认必须直接编辑 .docx 时才动手,且改完后必须提醒用户先打开 Word 验证完整性。 Use when 用户请求修改、润色、改写、重排任何 .docx 文件、 或调用 /docx skill、或 Edit/Write 操作目标是 .docx 文件时。

Open →

paper-bootstrap

Chanw-research/claude-code-paper-writing

Use when starting a new manuscript project or cleaning up an existing paper directory and you need a standard structure, active source files, project memory, and venue defaults before deeper writing begins.

Open →

paper-claim-audit

Chanw-research/claude-code-paper-writing

Zero-context verification that every number, comparison, and scope claim in the paper matches raw result files. Uses a fresh cross-model reviewer with NO prior context to prevent confirmation bias. Use when user says "审查论文数据", "check paper claims", "verify numbers", "论文数字核对", or before submission to ensure paper-to-evidence fidelity.

Open →

paper-claude-md-bootstrap

Chanw-research/claude-code-paper-writing

开始任何新的论文写作项目时(新建项目目录、第一次开会话、还没有 CLAUDE.md 文件), 在写任何论文内容、改任何文件之前,必须先帮用户建一份项目级 CLAUDE.md, 把研究主题、投稿目标、术语保护清单、文件结构、写作风格、导师偏好这六项写清楚。 Use when 用户说"开始写新论文"、"新开一个项目"、"帮我写第 X 章"且项目目录里没有 CLAUDE.md 时。

Open →

paper-compile

Chanw-research/claude-code-paper-writing

Compile LaTeX paper to PDF, fix errors, and verify output. Use when user says "编译论文", "compile paper", "build PDF", "生成PDF", or wants to compile LaTeX into a submission-ready PDF.

Open →

paper-confirm-before-doing

Chanw-research/claude-code-paper-writing

论文写作中遇到任何模糊指令(改、整理、润色、重写、找出、统一、清理、看看、处理一下…), 在调用任何写文件 / 编辑文件 / 批量操作工具之前,必须先用一段话向用户陈述 「我打算怎么做、改哪里、不改哪里」,并明确等待用户确认后再动手。 Use when 用户对论文 / 章节 / 段落 / 文献 / 图表 / 参考文献给出宽泛指令、 未指定具体范围或方法、未限定「只改 X 不改 Y」等边界。

Open →

paper-logical-consistency

Chanw-research/claude-code-paper-writing

当用户改动论文里的核心声明(研究问题、核心论点、因果关系、边界条件、假设、关键结论、对已有研究的态度)时, 必须先扫描该声明在全文其他章节的出现位置,列出来让用户核对哪些需要联动修改,再开始动手。 本 Skill 抓的是「论证一致性」(语义级),不是「术语一致性」(机械级)——两者互不替代。 Use when 用户改了核心论点、研究问题、主要结论、方法边界、假设; 或要求重写涉及核心声明的段落;或在交付前要求"检查一下逻辑"。

Open →

paper-one-session-one-task

Chanw-research/claude-code-paper-writing

当用户在一次对话里同时提出多个论文写作任务("顺便也帮我..."、"另外..."、"还有..."), 必须先把这些任务列出来让用户挑一个,拒绝在同一个会话里串行做完所有事。 Use when 用户的一条请求里出现两个以上独立的写作 / 修改 / 核查任务, 或在已经在做 A 任务时临时追加 B 任务。

Open →

paper-parallel-audit

Chanw-research/claude-code-paper-writing

在执行 ≥ 30 条目的批量核查 / 批量修改任务(引用核查、术语一致性检查、格式统一、文献元数据补齐)时, 必须采用"派多个 Agent 并行 + 每个 Agent 输出 JSON + 主进程汇总落盘 + 分批断点续跑"的标准模式, 不得在主会话里串行单线程跑全量。 Use when 任务规模 ≥ 30,涉及对独立条目的同质操作(每个条目处理逻辑相同、之间无依赖)。

Open →

paper-pilot-before-batch

Chanw-research/claude-code-paper-writing

在执行任何 ≥ 30 条目的批量任务(批量改文件、批量核查引用、批量重命名、批量格式统一)之前, 必须先在 3–5 个样本上跑一遍,把样本结果给用户看,确认逻辑正确后再推全量。 Use when 用户请求处理"全部"、"所有"、"批量"、"逐个"某类对象, 且对象数量 ≥ 30,或数量未知("把整个目录的...")。

Open →

paper-plan

Chanw-research/claude-code-paper-writing

Generate a structured paper outline from review conclusions and experiment results. Use when user says "写大纲", "paper outline", "plan the paper", "论文规划", or wants to create a paper plan before writing.

Open →

paper-protect-terminology

Chanw-research/claude-code-paper-writing

在跨多文件批改、术语统一、整篇论文润色、章节重写等可能改动专业术语 / 缩写 / 人名 / 概念命名的操作之前, 必须先显式列出"保护术语清单",让用户确认哪些词不得被同义替换或改写,再开始执行。 Use when 用户要求跨章节修改、批量替换、整篇润色、术语统一、规范化、 或对出现专业术语 / 缩写 / 模型名 / 算法名 / 自定义概念的段落做改写。

Open →

paper-reviewer

Chanw-research/claude-code-paper-writing

Use when acting as a journal or grant reviewer and writing formal reviewer-side evaluations focused on methodology, statistics, reporting standards, reproducibility, and constructive feedback.

Open →

paper-translate-advisor-feedback

Chanw-research/claude-code-paper-writing

当用户拿来导师的录音转写、便条、口头反馈、批注、邮件意见时, 禁止直接喂 AI 改文章;必须先把口语化 / 模糊 / 隐含的反馈翻译为 「位置 + 改什么 + 改成什么 + 标准 + 不动哪里」的可执行指令清单,让用户确认后再开始改。 Use when 用户提供导师反馈(录音、批注、便条、邮件、聊天截图、口述), 并要求"按导师意见改一下"。

Open →

paper-using-skills

Chanw-research/claude-code-paper-writing

《Claude Code 科研手记》论文写作纪律 skill 集的入口与强制触发器。 建立"1% 可能适用就必须调用"的硬规则,列出本系列各核心纪律 skill 的触发条件, 防止用户在赶论文 / 紧张 / 熟练之后跳过该有的检查动作。 Use when 开始任何科研写作场景:写论文、改论文、整理参考文献、 画图、整理导师反馈、跑批量任务、改 Word、提交前检查 等。

Open →

paper-verify-before-handoff

Chanw-research/claude-code-paper-writing

在把任何成果交付给用户("改完了"、"已完成"、"可以发给导师"、"可以提交")之前, 必须运行一份硬检查清单:术语一致性、引用完整性、数据正确性、图表编号、 内部交叉引用、字数 / 格式合规、未完成 todo 残留、AIGC pattern(涉及文段改写时跑 chinese-de-aigc 五维自评)、 论证一致性(涉及核心声明改动时跑 paper-logical-consistency 复核)、 改动概要——任意一项 fail 都不能宣告完成。 Use when 你即将说「改完了 / 完成了 / 可以提交了 / 可以发给导师了」、 或用户问「是不是可以了」「还有什么要检查的吗」。

Open →

paper-workflow

Chanw-research/claude-code-paper-writing

Use when deciding which paper-related skill to use or how to sequence manuscript work from project setup through submission and rebuttal.

Open →

paper-write

Chanw-research/claude-code-paper-writing

Draft LaTeX paper section by section from an outline. Use when user says "写论文", "write paper", "draft LaTeX", "开始写", or wants to generate LaTeX content from a paper plan.

Open →

paper-writing-discipline

Chanw-research/claude-code-paper-writing

当用户在科研写作过程中踩到一个本系列 paper-* skill 没覆盖的新坑、 并表示"以后...我都要这样做"、"下次记得..."、"这种情况要先..."、"加一条新规则"时, 帮用户把这条新规则按 4 个判断题筛过,合格则按本 skill 提供的模板提炼成一个新的 paper-* skill 落盘。 Use when 用户说"以后...都要..."、"下次记得..."、"这种情况要先..."、 "帮我把这个习惯固化下来"、"加一条新规则"。

Open →

paper-writing

Chanw-research/claude-code-paper-writing

Workflow 3: Full paper writing pipeline. Orchestrates paper-plan → paper-figure → figure-spec/paper-illustration/mermaid-diagram → paper-write → paper-compile → auto-paper-improvement-loop to go from a narrative report to a polished PDF. At `— effort: max | beast` (or explicit `— assurance: submission`), Phase 6 gates the Final Report on `tools/verify_paper_audits.sh`; the PDF is labelled `submission-ready` only when the external verifier is green. Use when user says "写论文全流程", "write paper pipeline", "从报告到PDF", "paper writing", or wants the complete paper generation workflow.

Open →

rebuttal-response

Chanw-research/claude-code-paper-writing

Use when responding to journal or conference reviewer comments and you need a structured author response, aligned manuscript edits, and clear decisions about when to clarify, add evidence, concede, or respectfully disagree.

Open →

rebuttal

Chanw-research/claude-code-paper-writing

Workflow 4: Submission rebuttal pipeline. Parses external reviews, enforces coverage and grounding, drafts a safe text-only rebuttal under venue limits, and manages follow-up rounds. Use when user says "rebuttal", "reply to reviewers", "ICML rebuttal", "OpenReview response", or wants to answer external reviews safely.

Open →

submission-audit

Chanw-research/claude-code-paper-writing

Use when a manuscript is close to submission or resubmission and you need a preflight audit for claim support, figure-panel coverage, legend sync, methods references, terminology stability, and venue-facing risks.

Open →

论文 · 演讲与海报

View all →

academic-presentations / pptx / paper-poster / paper-to-beamer 等演讲与海报。

6 items

academic-presentations

Chanw-research/claude-code-paper-writing

Create academic presentation slide decks and optionally demo videos from research papers. Use when the user asks to "make slides", "create a deck", "make a presentation", "demo video", "paper slides", "conference talk slides", or wants to turn a paper into a visual presentation. Covers slide generation, narration scripts, TTS audio, and video assembly.

Open →

nature-paper2ppt

Chanw-research/claude-code-paper-writing

Build a complete but efficient Nature-style Chinese PPTX presentation from a scientific paper, preprint, PDF, article text, abstract, figure legends, or reading notes. Use this skill whenever the user asks to make slides/PPT/PPTX for journal club, group meeting, paper sharing, thesis seminar, lab meeting, department report, or academic presentation from a research paper, not only medical papers. It identifies the paper type and argument, selects only the figures needed for the story, writes Chinese slide content and speaker notes, creates the actual .pptx deck, and performs lightweight verification with cross-platform Python tooling by default.

Open →

paper-poster

Chanw-research/claude-code-paper-writing

Generate a conference poster (article + tcbposter LaTeX → A0/A1 PDF + editable PPTX + SVG) from a compiled paper. Use when user says "做海报", "制作海报", "conference poster", "make poster", "生成poster", "poster session", or wants to create a poster for a conference presentation.

Open →

paper-slides

Chanw-research/claude-code-paper-writing

Generate conference presentation slides (beamer LaTeX → PDF + editable PPTX) from a compiled paper, with speaker notes and full talk script. Use when user says "做PPT", "做幻灯片", "make slides", "conference talk", "presentation slides", "生成slides", "写演讲稿", or wants beamer slides for a conference talk.

Open →

paper-to-beamer

Chanw-research/claude-code-paper-writing

Generate LaTeX Beamer presentations from academic papers. Use this skill whenever the user wants to create a Beamer/LaTeX presentation, academic slides, seminar talk slides, or paper reading slides from a research paper. Also trigger when the user mentions: 论文汇报PPT, 论文报告幻灯片, paper presentation, beamer slides, 做一个论文的PPT, 论文解读演示文稿, conference talk slides, or any request to turn a paper into slides. This skill handles the full pipeline: reading the paper, extracting figures, structuring slides, generating compilable LaTeX, and validating the output. Even if the user just says 'help me present this paper' or 'make slides for my lab meeting', this skill applies.

Open →

pptx

Chanw-research/claude-code-paper-writing

Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates, layouts, speaker notes, or comments. Trigger whenever the user mentions "deck," "slides," "presentation," or references a .pptx filename, regardless of what they plan to do with the content afterward. If a .pptx file needs to be opened, created, or touched, use this skill.

Open →

论文 · 语言润色

View all →

manuscript-optimizer / scientific-writing / humanizer-zh / 各档 polish 流程。

7 items

grant-proposal

Chanw-research/claude-code-paper-writing

Draft a structured grant proposal from research ideas and literature. Supports KAKENHI (Japan), NSF (US), NSFC (China, including 面上/青年/优青/杰青/海外优青/重点), ERC (EU), DFG (Germany), SNSF (Switzerland), ARC (Australia), NWO (Netherlands), and generic formats. Use when user says "write grant", "grant proposal", "申請書", "write KAKENHI", "科研費", "基金申请", "写基金", "NSF proposal", or wants to turn research ideas into a funding application.

Open →

humanizer-zh

Chanw-research/claude-code-paper-writing

去除文本中的 AI 生成痕迹。适用于编辑或审阅文本,使其听起来更自然、更像人类书写。 基于维基百科的"AI 写作特征"综合指南。检测并修复以下模式:夸大的象征意义、 宣传性语言、以 -ing 结尾的肤浅分析、模糊的归因、破折号过度使用、三段式法则、 AI 词汇、否定式排比、过多的连接性短语。

Open →

manuscript-optimizer

Chanw-research/claude-code-paper-writing

Use when reviewing or revising an academic manuscript whose central claim, evidence chain, figures, terminology, and prose may have drifted out of sync before submission or resubmission.

Open →

nature-polishing

Chanw-research/claude-code-paper-writing

Polish, restructure, or translate academic prose into Nature-leaning English using the paper-architecture and writing-strategy principles from Scientific English Writing & Communication, with phrase-level support from Academic Phrasebank. Use whenever the user asks to polish a manuscript paragraph, abstract, introduction, results, discussion, conclusion, title, methods section, or Chinese academic draft for publication-quality English.

Open →

paper-polish-workflow

Chanw-research/claude-code-paper-writing

Systematic top-down workflow for polishing academic papers. Structure to logic to expression with user confirmation at each step.

Open →

results-section-revision

Chanw-research/claude-code-paper-writing

Use when revising a scientific manuscript Results section whose figures, evidence, and main claims are mostly fixed, but subsection flow, paragraph openings, reader guidance, and argumentative progression still feel abrupt, repetitive, or figure-by-figure.

Open →

scientific-writing

Chanw-research/claude-code-paper-writing

Use when writing or revising scientific manuscripts, abstracts, figures, or references for journal submission and you need full-paragraph prose, scientific structure, citation-style guidance, or reporting-guideline support.

Open →