面向本科计科学生的一键论文初稿 Skill,支持样文/开题报告/模板驱动生成,并补全流程图、ER 图和项目截图
npx skills add https://github.com/doryoku1223/lunwen-skill --skill lunwenInstall this skill with the CLI and start using the SKILL.md workflow in your workspace.
“论文不是把字堆满,而是把项目事实、样文规范、图表截图和 Word 交付一次性闭环。”
面向本科计科学生推出的一键论文初稿 Skill。
不会写毕业论文初稿,开题报告和项目代码不知道怎么落成正文?
历届样文、学校模板、格式要求很多,但拼不出完整结构?
流程图、用例图、E-R 图、系统截图和测试内容总是缺一块?
最后要交 .docx,却还停留在零散材料和碎片化笔记里?
把零散材料快速整理成论文初稿的 Skill。
可以结合历届样文、开题报告、学校模板和真实项目内容生成初稿,
自动补充流程图、用例图、E-R 图等论文图表,并补齐项目截图与常见配图位,形成一套可继续精修的论文初稿工作流。
python "${HOME}\.codex\skills\.system\skill-installer\scripts\install-skill-from-github.py" --repo Doryoku1223/lunwen-skill --path . --name lunwen
git clone https://github.com/Doryoku1223/lunwen-skill.git "${HOME}\.codex\skills\lunwen"
安装后重启 Codex,即可让它发现这个 skill。
如果你使用 Claude Code,也可以把仓库放到项目中直接复用其中的 .claude/commands/ 和 .claude/agents/ 兼容层,详细说明见 INSTALL.md。
仓库同时补充了 .trae/commands/ 与 .trae/agents/ 兼容包装,方便在 Trae 这类只读取入口命令/代理定义的环境里尽量完整传递工作流。
推荐优先在 Codex 中使用本 skill。
最简单的使用方法:
为这个项目写一篇论文建议你在第一次使用时优先提供:
这样 Codex 才能按“先分析模板,再确认目录样式,最后生成 .docx 成稿”的正确流程工作。
以下是这次实战迭代中证明有价值的搭配:
lunwendocx.docx 模板与成稿,尤其适合处理样式、结构和文档对象planning-with-filessystematic-debuggingverification-before-completion.docx 存在性检查如果论文工作流中还涉及以下任务,也建议按需搭配:
pdfdoc.doc 而不是 .docx,且需要先转换后再分析时使用playwrightlunwen/
├── SKILL.md
├── README.md
├── INSTALL.md
├── agents/
│ └── openai.yaml
├── prompts/
├── references/
├── tools/
├── docs/
└── examples/
建议按下面顺序使用本 skill:
.docx。python tools/count_chapter_words.py thesis.md
python tools/analyze_sample_pdf.py sample.pdf
python tools/build_reference_pool.py thesis.md
python tools/analyze_docx_styles.py sample.docx output/style-profile.json
python tools/extract_screenshot_placeholders.py thesis.md --json-out labels.json
python tools/build_image_map.py labels.json output/doc image-map.json
python tools/extract_mermaid_blocks.py thesis.md tmp/mermaid --manifest tmp/mermaid/manifest.json
python tools/render_mermaid.py tmp/mermaid/diagram-01.mmd tmp/mermaid/diagram-01.png
python tools/generate_thesis_docx.py thesis.md thesis.docx --style-spec output/style-profile.json --image-map image-map.json
.claude/commands/ 与 .claude/agents/ 兼容层。