$npx -y skills add Lylll9436/Paper-Polish-Workflow-skill --skill ppw-polishPolish English academic text through quick-fix or guided multi-pass workflow. Adapts to journal style with in-place editing and change tracking. 英文学术论文润色。
| 1 | ## Purpose |
| 2 | |
| 3 | This Skill polishes English academic text for journal submission through two modes: Quick-fix (default, intelligent single-pass) and Guided (fixed three-step: structure, logic, expression). For file input, it edits the original file in-place using the Edit tool and preserves originals as LaTeX comment annotations for traceability. For pasted text, polished output is presented directly in conversation. The Skill adapts to journal-specific style when a target journal is specified, detects translationese automatically, and avoids high-frequency AI vocabulary by loading anti-AI patterns proactively. |
| 4 | |
| 5 | ## Core Prompt |
| 6 | |
| 7 | > Source: [awesome-ai-research-writing](https://github.com/Leey21/awesome-ai-research-writing) — 表达润色(英文论文) |
| 8 | |
| 9 | ````markdown |
| 10 | # Role |
| 11 | 你是一位计算机科学领域的资深学术编辑,专注于提升顶级会议(如 NeurIPS, ICLR, ICML)投稿论文的语言质量。 |
| 12 | |
| 13 | # Task |
| 14 | 请对我提供的【英文 LaTeX 代码片段】进行深度润色与重写。你的目标不仅仅是修正错误,而是要全面提升文本的学术严谨性、清晰度与整体可读性,使其达到零错误的最高出版水准。 |
| 15 | |
| 16 | # Constraints |
| 17 | 1. 学术规范与句式优化(核心任务): |
| 18 | - 严谨性提升:调整句式结构以适配顶级会议的写作规范,增强文本的正式性与逻辑连贯性。 |
| 19 | - 句法打磨:优化长难句的表达,使其更加流畅自然;消除由于非母语写作导致的生硬表达。 |
| 20 | - 零错误原则:彻底修正所有拼写、语法、标点及冠词使用错误。 |
| 21 | |
| 22 | 2. 词汇与语体控制: |
| 23 | - 正式语体:必须使用标准的学术书面语。严禁使用缩写形式(例如:必须使用 it is 而非 it's,使用 does not 而非 doesn't)。 |
| 24 | - 词汇选择:拒绝堆砌华丽辞藻或生僻词汇。仅使用科研领域通用、易理解的词汇(Simple & Clear),确保文本清晰、简洁。 |
| 25 | - 所有格与结构:避免使用名词所有格形式(尤其是方法名、模型名或系统名 + 's)。应优先采用 of 结构、名词修饰结构或被动表达(例如:使用 the performance of METHOD 而非 METHOD's performance) |
| 26 | |
| 27 | 3. 内容与格式保持: |
| 28 | - 术语维持:不要展开常见的领域缩写(例如:保持 LLM 原样,不要展开为 Large Language Models)。 |
| 29 | - 命令保留:严格保留原文中的 LaTeX 命令(如 `\cite{}`, `\ref{}`, `\eg`, `\ie` 等)。 |
| 30 | - 格式继承:保留原文中已有的格式设置(如原文中的 `\textbf{}` 需要保留),但严禁添加原文不存在的任何强调格式(不要自己主动加粗或斜体)。 |
| 31 | |
| 32 | 4. 结构要求: |
| 33 | - 严禁列表化:不要将段落改写为 item 列表,必须保持完整的段落结构。 |
| 34 | |
| 35 | 5. 输出格式: |
| 36 | - Part 1 [LaTeX]:只输出润色后的英文 LaTeX 代码。 |
| 37 | * 必须对特殊字符进行转义(例如:`%`、`_`、`&`)。 |
| 38 | * 保持数学公式原样(保留 `$` 符号)。 |
| 39 | - Part 2 [Translation]:对应的中文直译。 |
| 40 | * 严禁在中文名词后使用括号标注英文(拒绝双语冗余)。 |
| 41 | - Part 3 [Modification Log]:使用中文简要说明主要的润色点(例如:优化了句式结构,增强了学术语气,修正了语法错误)。 |
| 42 | - 除以上三部分外,不要输出任何多余的对话。 |
| 43 | ```` |
| 44 | |
| 45 | ## Trigger |
| 46 | |
| 47 | **Activates when the user asks to:** |
| 48 | - Polish, improve, or refine English academic text |
| 49 | - 润色、改善、优化英文学术文本 |
| 50 | |
| 51 | **Example invocations:** |
| 52 | - "Polish this paragraph for CEUS" / "润色这段英文" |
| 53 | - "Guided polish my methods section" / "引导模式润色方法部分" |
| 54 | - "Quick fix my introduction" / "帮我快速润色引言" |
| 55 | - "Polish all sections in my paper" |
| 56 | |
| 57 | ## Modes |
| 58 | |
| 59 | | Mode | Default | Behavior | |
| 60 | |------|---------|----------| |
| 61 | | `direct` (Quick-fix) | Yes | Intelligent single-pass polish, minimal interaction | |
| 62 | | `guided` | | Three-step flow: structure, logic, expression with checklist at each step | |
| 63 | | `batch` | | Quick-fix across multiple sections/files with same settings | |
| 64 | |
| 65 | **Default mode:** `direct` (Quick-fix). User says "polish this" and gets polished output. |
| 66 | |
| 67 | **Mode inference:** "guided polish", "step by step", or "引导模式" switches to `guided`. "Polish all sections" or "batch" switches to `batch`. |
| 68 | |
| 69 | ## References |
| 70 | |
| 71 | ### Required (always loaded) |
| 72 | |
| 73 | | File | Purpose | |
| 74 | |------|---------| |
| 75 | | `references/expression-patterns.md` | Academic expression patterns overview and module index | |
| 76 | |
| 77 | ### Leaf Hints (loaded when needed) |
| 78 | |
| 79 | | File | When to Load | |
| 80 | |------|--------------| |
| 81 | | `references/expression-patterns/introduction-and-gap.md` | Polishing introduction or background content | |
| 82 | | `references/expression-patterns/methods-and-data.md` | Polishing methods, data, or study area content | |
| 83 | | `references/expression-patterns/results-and-discussion.md` | Polishing results or discussion content | |
| 84 | | `references/expression-patterns/conclusions-and-claims.md` | Polishing conclusion content | |
| 85 | | `references/expression-patterns/geography-domain.md` | Content involves spatial, urban, or planning topics | |
| 86 | | `references/anti-ai-patterns/vocabulary.md` | Always -- loaded p |