kai
09f681beb5
v0.7.2: 前置件排版重构 + emoji 禁令 + 引文核查
...
用户反馈 7 个 bug 修复:
1. 禁止 LLM 使用 emoji(全链路)
- scripts/prompts/translate_system.txt 增加规则 12
- scripts/prompts/polish_system.txt 增加规则 7
- .opencode/agents/dr-analyst.md Hard Rules 增加第 10 条(同时把 prompt 自身的 ✅ ❌ 改为 MUST / MUST NOT)
- .opencode/agents/dr-editor-in-chief.md 禁止事项加入 emoji 条款
- .opencode/skills/output-hygiene/SKILL.md 新增 §J emoji 强制禁用
2. 术语表位置错误(应在目录之后)
重构 build_body 为两阶段:
(a) 扫描所有前置件(第一个正文 H1 前的所有 H1/H2),按 title_kind 分组收集
(b) 按固定顺序渲染:免责声明 → 执行摘要 → 目录 → 术语表 → 正文 → 参考文献
无论 Markdown 原文顺序如何,排版都一致。
3. 执行摘要/术语表提升为一级标题 + 分页空页 bug
统一所有独立章节(disclaimer/executive_summary/toc/glossary/references)用 h1 样式,
章节前 PageBreak;但第一个独立章节不 PageBreak(封面后已换页,避免空白)。
去掉 build_toc 内部末尾 PageBreak(原双 PageBreak 夹出空白页)。
4. 参考文献分页
已作为独立章节自动分页。
5. 附录章节自动删除
_title_kind 识别 "appendix" / "version_history" / "abstract" 全部跳过。
正文中若写了这些章节,模板直接丢弃。
6. 信源完整性核查
新增 scripts/check_citations.py:
- 孤立引用(正文有 sources 无)检测
- 孤岛信源(sources 有正文无)检测
- emoji 扫描
- 实测发现项目中 61 条孤立引用(dr-analyst 编造的占位符)+ 5 条孤岛信源
7. git commit message 中文转义 bug
之前 commit 用 shell 双引号 + 反斜杠导致 \uXXXX 字面保留。
本 commit 用 heredoc 保证中文以 UTF-8 直接写入。
已 push 的历史不改,之后都用本 commit 的写法。
PDF 验证结果:55 页,0 空白页。
章节起始页:封面(1) - 免责声明(2) - 执行摘要(3) - 目录(5) - 术语表(7) -
第一章(12) - 第十章(48) - 参考文献(52)。
2026-04-22 16:31:01 +08:00
kai and User <human>
743d189dee
v0.6: deprecate dr-translator/polisher agents, rewire /dr-finalize to Python pipeline
...
\u6765\u5b8c\u6210 v0.6 \u67b6\u6784\u53d8\u66f4\u7684\u6700\u540e\u4e00\u7247\u62fc\u56fe\uff1a
- dr-translator.md / dr-polisher.md \u6807\u8bb0 [DEPRECATED v0.6]\uff0c\u6743\u9650\u5168\u90e8 deny\uff0c\u4fdd\u7559\u6587\u4ef6\u4f5c\u5386\u53f2\u53c2\u8003
- dr-editor-in-chief.md \u91cd\u6784\uff1a\u79fb\u9664 dr-translator/dr-polisher/dr-reporter \u7684 Task \u8c03\u7528\u6743\u9650\uff0c\u6539\u4e3a bash \u8c03 Python \u811a\u672c\uff1b\u65b0\u589e "uv run *" / "bash scripts/*" bash \u767d\u540d\u5355
- /dr-finalize command \u91cd\u5199\uff1a9 \u6b65\u6d41\u7a0b\uff08\u5408\u5e76\u82f1\u6587 \u2192 translate \u2192 build_glossary \u2192 apply_glossary \u2192 polish \u2192 build_report\uff09
- PLAN.md \u00a712 \u8865 v0.6 \u5b8c\u6574\u53d8\u66f4\u8bb0\u5f55\uff08\u6839\u56e0\u3001\u65b0\u589e\u811a\u672c\u3001PDF \u6a21\u677f\u4fee\u590d\u3001\u5b9e\u6d4b\u7ed3\u679c\u3001\u5df2\u77e5\u9650\u5236\u3001\u5f85\u529e\u4e8b\u9879\uff09
v0.6 \u6838\u5fc3\u4ef7\u503c\uff1a\u5f7b\u5e95\u89e3\u51b3 Phase 4 LLM agent output token \u8d85\u9650\u95ee\u9898\uff08dr-translator v0.5.2 \u591a\u8f6e\u5361\u6b7b\u7684\u6839\u56e0\uff09\uff0c\u540c\u65f6\u901a\u8fc7 build_glossary \u5f15\u5165\u4e8b\u5b9e\u6838\u67e5\u80fd\u529b\uff0c\u53d1\u73b0\u5e76\u81ea\u52a8\u4fee\u6b63\u4e86\u591a\u5904\u8f6f\u4e8b\u5b9e\u9519\u8bef\uff08Mabwell \u62fc\u5199\u3001\u516c\u53f8\u4e2d\u6587\u8bd1\u540d\u8bef\u7528\uff09\u3002
Co-authored-by: User <human>
2026-04-22 13:31:05 +08:00
kai
333b7bb8d5
v0.5.1: disable apply_patch in agents prone to append-mode failures
...
Root cause: apply_patch finds anchor lines in read-cached file state,
but file may have been modified between read and patch, causing stalls.
Changes:
- dr-verifier: disable apply_patch AND edit; force read-then-write protocol for evidence file appends
- dr-analyst: document write-preferred protocol for sources.jsonl appends
- dr-polisher: disable apply_patch; keep edit for small string replacements
- dr-editor-in-chief / dr-translator: disable apply_patch
Recovery procedure documented in dr-verifier for write failures.
2026-04-21 14:44:03 +08:00
kai
a092af4398
v0.5: deep quality refactor (P0+P1+P2)
...
- Split dr-chief-editor (Phase 3 read-only) vs new dr-editor-in-chief (Opus, Phase 4 lead)
- New dr-translator (en->zh) and new humanizer-cn / output-hygiene / en-zh-translation skills
- Switch to English working language (Phase 2-3), final Chinese translation (Phase 4)
- /dr-init: add report title proposals + word budget mode
- /dr-frame: bilingual framework
- /dr-finalize: new chain editor->translator->polisher->reporter
- report-template.py: widows/orphans/keepWithNext, 3-color hierarchy, confidentiality banner
- dr-reporter: mandatory citations backfill + output hygiene check
- dr-pm: batch-level context compression via manifest.batches_summary
- mckinsey-method: SCQA only for Executive Summary + chapter intros (no explicit labels)
- length-budget: 4 word-budget modes + en/zh 1:1.4 ratio
2026-04-21 13:02:54 +08:00