← スキル一覧に戻る

terminology-management
by wayne930242
A customizable Astro + Starlight template for game documentation sites
⭐ 0🍴 0📅 2026年1月22日
SKILL.md
name: terminology-management description: 術語表管理與一致性檢查。Use when managing glossary, checking term consistency, or making terminology decisions.
Terminology Management
Glossary Structure
Location: glossary.json (project root)
{
"Move": {
"zh": "動作",
"notes": "PbtA 系統核心機制"
},
"Playbook": {
"zh": "劇本",
"notes": "角色模板,也可譯為「職業書」"
}
}
Operations
Add Term
- Check if term exists in glossary
- If new, add with translation and context notes
- Update all existing documents with new term
Check Consistency
Scan all .md files in docs/src/content/docs/:
- Extract English terms (capitalized words, quoted terms)
- Cross-reference with
glossary.json - Report:
- Missing terms (not in glossary)
- Inconsistent usage (same term, different translations)
- Untranslated terms (English in final output)
Batch Replace
When terminology decision is made:
- Record in
style-decisions.json - Find all occurrences across docs
- Replace with consistent translation
- Verify no orphaned terms remain
Style Decisions
Location: style-decisions.json (project root)
{
"dice_notation": {
"decision": "保留原文",
"alternatives": ["翻譯為中文"],
"reason": "2d6 等骰子標記為國際通用,保留更清晰"
},
"game_title": {
"decision": "使用官方中文名",
"alternatives": ["音譯", "意譯"],
"reason": "遵循官方授權翻譯"
}
}
Consistency Report Format
## Terminology Report
### Missing from Glossary
- `Harm` (found in: combat.md:15, conditions.md:23)
- `Hold` (found in: basic-moves.md:42)
### Inconsistent Usage
- `Move`: "動作" (5x), "行動" (2x)
- Files: rules/index.md, combat.md
### Untranslated
- "Experience" in characters/advancement.md:18
Priority Categories
| Category | Handling |
|---|---|
| Core mechanics | Must be consistent, add to glossary first |
| Proper nouns | Check official translations, record decision |
| Flavor text | More flexible, prioritize readability |
| UI/System terms | Match Starlight conventions |
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です