Terminology Normalizer
Triggers & routing
- Trigger: terminology, glossary, consistent terms, 术语统一, 统一叫法, 术语表.
- Use when: the draft has concept drift (same thing called 2–3 names) or global-review flags terminology inconsistency.
Purpose: make the draft read like one author wrote it by enforcing consistent naming (canonical terms + synonym policy), without changing citations or meaning.
Role cards (use explicitly)
Taxonomist (canonicalizer)
Mission: decide one canonical term per concept and a light synonym policy.
Do:
- Prefer taxonomy node names (
outline/taxonomy.yml) as canonical labels when available.
- Define a short synonym policy only where readers expect it (use sparingly).
- Keep headings and tables aligned with canonical terms.
Avoid:
- Renaming proper nouns (paper titles, benchmark names, model names).
- Over-normalizing away meaningful distinctions (e.g., collapsing two different mechanisms into one word).
Integrator (apply without drift)
Mission: apply replacements consistently without changing meaning or citations.
Do:
- Keep replacements local and conservative; reread sentences that become ambiguous.
- Preserve citation placement and subsection boundaries.
Avoid:
- Introducing new claims while rewriting for terminology.
- Moving citations across subsections.
Role prompt: Terminology Editor (one voice)
You are normalizing terminology in a technical survey draft.
Your job is to make the draft read like one author wrote it by enforcing consistent naming.
Constraints:
- do not add/remove citation keys
- do not move citations across ### subsections
- do not introduce new claims while renaming
Method:
- pick a canonical term per concept
- define allowed synonyms (optional, minimal)
- apply consistently across headings, prose, and tables
Inputs
output/DRAFT.md
- Optional (read-only context):
outline/outline.yml (heading consistency)
outline/taxonomy.yml (canonical labels)
Outputs
output/DRAFT.md (in place)
- Optional:
output/GLOSSARY.md (short appendix/glossary table, if useful)
Workflow
Use the role cards above.
Steps:
- Build a glossary candidate list from the draft (10–30 key terms):
- core objects (agent, tool, environment, protocol)
- key components (planner/executor, memory, verifier)
- evaluation terms (benchmark, metric, budget)
- Choose canonical names and a synonym policy:
- one concept = one canonical term
- define allowed synonyms only when readers expect them (and use them sparingly)
- if
outline/taxonomy.yml exists: prefer taxonomy node names as canonical labels (avoid inventing new names)
- if
outline/outline.yml exists: keep section headings aligned with the same canonical terms
- Apply replacements conservatively:
- do not alter paper names, model names, benchmark names
- keep terminology consistent across headings, prose, and table captions
- Optional: write a small
output/GLOSSARY.md:
term | canonical | allowed synonyms | notes
Mini examples (what to do / what to avoid)
Bad (term drift): tool API, tool interface, action schema used interchangeably without a rule.
Better (canonical + light synonym policy): pick one canonical term (e.g., tool interface) and allow one synonym only when first introduced (e.g., tool interface (API contract)), then stick to canonical thereafter.
Bad (over-normalization): replacing distinct terms so a contrast disappears.
Better: keep distinct terms when they encode different mechanisms; normalize only spelling and naming consistency.
Guardrails (do not violate)
- Do not add/remove citation keys.
- Do not move citations across
### subsections.
- Do not introduce new claims while renaming.
Troubleshooting
Issue: normalization changes citation keys or moves citations
Fix:
- Revert; this skill must not add/remove keys or move citations across subsections.
Issue: synonyms policy is unclear
Fix:
- Define one canonical term per concept and list allowed synonyms; apply consistently across headings, tables, and prose.
1---2name: terminology-normalizer3description: Normalize terminology across a draft (canonical terms + synonym policy) without changing citations or meaning.4---56# Terminology Normalizer78## Triggers & routing910- **Trigger**: terminology, glossary, consistent terms, 术语统一, 统一叫法, 术语表.11- **Use when**: the draft has concept drift (same thing called 2–3 names) or global-review flags terminology inconsistency.121314Purpose: make the draft read like one author wrote it by enforcing consistent naming (canonical terms + synonym policy), without changing citations or meaning.1516## Role cards (use explicitly)1718### Taxonomist (canonicalizer)1920Mission: decide one canonical term per concept and a light synonym policy.2122Do:23- Prefer taxonomy node names (`outline/taxonomy.yml`) as canonical labels when available.24- Define a short synonym policy only where readers expect it (use sparingly).25- Keep headings and tables aligned with canonical terms.2627Avoid:28- Renaming proper nouns (paper titles, benchmark names, model names).29- Over-normalizing away meaningful distinctions (e.g., collapsing two different mechanisms into one word).3031### Integrator (apply without drift)3233Mission: apply replacements consistently without changing meaning or citations.3435Do:36- Keep replacements local and conservative; reread sentences that become ambiguous.37- Preserve citation placement and subsection boundaries.3839Avoid:40- Introducing new claims while rewriting for terminology.41- Moving citations across subsections.4243## Role prompt: Terminology Editor (one voice)4445```text46You are normalizing terminology in a technical survey draft.4748Your job is to make the draft read like one author wrote it by enforcing consistent naming.4950Constraints:51- do not add/remove citation keys52- do not move citations across ### subsections53- do not introduce new claims while renaming5455Method:56- pick a canonical term per concept57- define allowed synonyms (optional, minimal)58- apply consistently across headings, prose, and tables59```6061## Inputs6263- `output/DRAFT.md`64- Optional (read-only context):65 - `outline/outline.yml` (heading consistency)66 - `outline/taxonomy.yml` (canonical labels)6768## Outputs6970- `output/DRAFT.md` (in place)71- Optional: `output/GLOSSARY.md` (short appendix/glossary table, if useful)7273## Workflow7475Use the role cards above.7677Steps:78791) Build a glossary candidate list from the draft (10–30 key terms):80- core objects (agent, tool, environment, protocol)81- key components (planner/executor, memory, verifier)82- evaluation terms (benchmark, metric, budget)83842) Choose canonical names and a synonym policy:85- one concept = one canonical term86- define allowed synonyms only when readers expect them (and use them sparingly)87- if `outline/taxonomy.yml` exists: prefer taxonomy node names as canonical labels (avoid inventing new names)88- if `outline/outline.yml` exists: keep section headings aligned with the same canonical terms89903) Apply replacements conservatively:91- do not alter paper names, model names, benchmark names92- keep terminology consistent across headings, prose, and table captions93944) Optional: write a small `output/GLOSSARY.md`:95- `term | canonical | allowed synonyms | notes`9697## Mini examples (what to do / what to avoid)9899- Bad (term drift): `tool API`, `tool interface`, `action schema` used interchangeably without a rule.100- Better (canonical + light synonym policy): pick one canonical term (e.g., `tool interface`) and allow one synonym only when first introduced (e.g., `tool interface (API contract)`), then stick to canonical thereafter.101102- Bad (over-normalization): replacing distinct terms so a contrast disappears.103- Better: keep distinct terms when they encode different mechanisms; normalize only spelling and naming consistency.104105## Guardrails (do not violate)106107- Do not add/remove citation keys.108- Do not move citations across `###` subsections.109- Do not introduce new claims while renaming.110111## Troubleshooting112113### Issue: normalization changes citation keys or moves citations114115Fix:116- Revert; this skill must not add/remove keys or move citations across subsections.117118### Issue: synonyms policy is unclear119120Fix:121- Define one canonical term per concept and list allowed synonyms; apply consistently across headings, tables, and prose.