Install
openclaw skills install @urnotlhh/paper-style-review结构化审校中文论文:从参考论文学习风格,统一结构图谱,执行格式/术语/逻辑/风格融合审查,并将结果回写为 Word 批注。
openclaw skills install @urnotlhh/paper-style-review用这个 skill 处理中文论文的“风格学习 + 结构化审校 + Word 批注回挂”任务。
.doc 附件或本地工作区绝对路径。refs,仓库不内置参考论文。scripts/run_review.py
-> orchestrators/review_orchestrator.run_review()
-> style-profile handoff or build
-> format checker
-> target style units
-> fused review runtime
-> annotation assembly
-> inject Word comments
refs 风格学习
paragraphType 聚类style-profile.json 与 ref-style-basis.mdtarget 审查
Word 批注回挂
annotations.json<target>-annotated.docxstyle-profile.json,不在 target 阶段回读 refs 原文。chapterScope 只收窄 target-side LLM 审查;格式检查仍是文档级。完整主链:
python3 scripts/run_review.py --config ./references/review-config.example.json
独立阶段:
python3 scripts/run_review.py --config ./references/review-config.example.json --stage style_profile
python3 scripts/run_review.py --config ./references/review-config.example.json --stage style_annotation
python3 scripts/run_review.py --config ./references/review-config.example.json --stage annotation
限制章节范围:
python3 scripts/run_review.py --config ./references/review-config.example.json --chapters abstract,1
{
"target": {
"path": "./inputs/target.docx"
},
"refs": [
{
"id": "ref-style-01",
"path": "./inputs/ref-style-01.docx",
"enabled": true,
"styleProfileEnabled": true
}
],
"outputDir": "./outputs"
}
scripts/job_defaults.py / scripts/runtime_config.py:配置归一化scripts/paper_structure_anchor.py:统一结构图谱scripts/profilers/ref_style_profiler.py:refs 风格学习scripts/fused_review_runtime.py:target-side fused 审查scripts/annotation_anchor_infra.py / scripts/annotation_assembler.py / scripts/inject_word_comments.py:批注链路references/format-rules.json / references/format-rule-matrix.md:公开可分发的派生格式规则references/style-profile-extractor.md:风格画像提取约束target 与 refs。outputDir、检查项和可选 chapterScope。style-profile.json,可直接通过 styleProfilePath 复用。target-structure-map.json、target-style-units.json、annotations.json。