| name | super-translate |
| description | Use when high-quality translation is needed with multi-agent review and quality gates before overwriting source files. |
| user-invocable | true |
| disable-model-invocation | true |
Super Translate
Overview
Iterative translation pipeline: translator → reviewer → refiner (max 2 iterations).
Core principle: No overwrite unless reviewer passes. Draft isolation until quality confirmed.
Task Initialization (MANDATORY)
Before ANY action, create tasks using TaskCreate:
- One task per target file (sub-steps: draft, review, refine, writeback)
- One task for batch checkpoint
- One task for final verification
The Process
Step 1: Resolve Scope and Preconditions
-
Verify required files: data/translation-progress.json, glossary.json, style-decisions.json. Stop if missing.
-
Resolve target files:
$ARGUMENTS specifies files → use directly.
- No args /
all / next → auto-select from translation-progress.json:
- Resume
in_progress files first.
- Then
not_started in chapter order. Default batch = 3 files.
- Display and confirm:
翻譯進度:已完成 X / Y 個章節
本批次自動選取以下 N 個檔案:
- [in_progress 繼續] <file>
- [not_started 新增] <file>
是否繼續?或請指定其他範圍。
Verification: Target file list confirmed by user; all 3 required files exist.
Step 2: Terminology Preflight (Fail-Closed)
uv run python scripts/validate_glossary.py
uv run python scripts/term_read.py --fail-on-missing --fail-on-forbidden
If fails → stop and fix terminology first.
Verification: Both commands exit 0 with no missing/forbidden terms.
Step 3: Resolve Translation Mode
Read style-decisions.json.translation_mode.mode. If missing, ask user:
- 完整翻譯:完整翻譯所有內容,保留原始結構與細節
- 摘要翻譯:精簡翻譯重點規則,省略範例與冗長說明
Verification: translation_mode.mode is persisted in style-decisions.json.
Step 4: Pipeline Execution
Pre-read shared context once per batch:
GLOSSARY_CONTENT = glossary.json
STYLE_CONTENT = style-decisions.json (includes translation_notes as hard constraints)
For each target file, run the pipeline:
- Update task →
in_progress; update translation-progress.json → in_progress
- Read source content; resolve draft path:
uv run python scripts/draft.py --skill super-translate path <TARGET_FILE>
- Dispatch translator (Agent tool, general-purpose) using
./translator-prompt.md
- Inline all context: source, glossary, style, draft path
- Translator must not read files; all context is pre-inlined
- Read draft content after translator returns
- Dispatch reviewer (Agent tool, general-purpose) using
./reviewer-prompt.md
- Inline: source, draft, glossary, style
- If reviewer fails → dispatch refiner using
./refiner-prompt.md
- Inline: source, draft, review JSON, glossary, style
- Re-read draft → re-run reviewer. Cap at 2 total iterations.
- If 2 iterations still fail, ask user:
- 保留草稿,稍後手動修正
- 停止此檔案,先處理術語或規則歧義
Unknown terms: Run term_edit.py --set-zh workflow, then rerun file.
Parallel dispatch: When batch has 2+ independent files and no shared terminology conflicts, dispatch multiple translator agents concurrently using Agent tool. Reviewer/refiner remain sequential per file.
Verification: Per file: reviewer JSON returns "pass": true, or iteration cap reached and user consulted.
Step 5: Controlled Writeback
Only if reviewer passes:
uv run python scripts/draft.py --skill super-translate writeback <TARGET_FILE>
Immediately update translation-progress.json: status → completed, recalculate _meta.completed, update _meta.updated. Update task → completed.
If blocked: keep source unchanged, status stays in_progress, mark task blocked.
Verification: Writeback script exits 0; translation-progress.json shows file as completed with updated _meta; task marked completed.
Step 6: Batch Checkpoint
After each batch:
- Report: completed/blocked count, iteration counts,
已完成 X / Y 個章節
- Stage only batch-touched files and commit:
git commit -m "progress: X/Y"
- If remaining files exist → ask user to continue (re-run Step 1) or proceed to verification.
Verification: git log -1 shows checkpoint commit with progress: X/Y message; report displayed to user.
Step 7: Final Verification
uv run python scripts/validate_glossary.py
uv run python scripts/term_read.py --fail-on-missing --fail-on-forbidden
Invoke check-consistency skill. Resolve violations before marking run complete.
Verification: Both validation commands exit 0; check-consistency reports no violations; all tasks marked completed.
Prompt Templates
Colocated with this skill. Orchestrator inlines all placeholders before dispatch:
./translator-prompt.md — draft generation
./reviewer-prompt.md — source fidelity + quality check
./refiner-prompt.md — apply reviewer findings
Flowchart
digraph super_translate {
rankdir=TB;
start [label="Resolve scope\n& preconditions", shape=box];
preflight [label="Terminology\npreflight", shape=box];
mode [label="Resolve\ntranslation mode", shape=box];
translate [label="Dispatch\ntranslator", shape=box];
review [label="Dispatch\nreviewer", shape=box];
pass [label="Pass?", shape=diamond];
refine [label="Dispatch\nrefiner", shape=box];
cap [label="Iteration\ncap?", shape=diamond];
writeback [label="Writeback +\nupdate progress", shape=box];
ask [label="Ask user", shape=box];
checkpoint [label="Batch checkpoint\n& commit", shape=box];
more [label="More files?", shape=diamond];
verify [label="Final\nverification", shape=box];
start -> preflight -> mode -> translate;
translate -> review;
review -> pass;
pass -> writeback [label="yes"];
pass -> cap [label="no"];
cap -> refine [label="< 2"];
cap -> ask [label="= 2"];
refine -> review;
writeback -> checkpoint;
checkpoint -> more;
more -> start [label="yes"];
more -> verify [label="no"];
}
Progress Sync Contract
- Sync tasks and
translation-progress.json at file start, every review loop, and file close.
- NEVER defer sync until end-of-run.
- Create batch checkpoint commit immediately after each completed batch.
Red Flags
| Thought | Reality |
|---|
| "Just overwrite source, reviewer will pass next time" | Draft isolation exists for a reason. NEVER overwrite without pass. |
| "Skip task updates until the end" | Sync contract is per-file, not per-run. |
| "I'll invent a translation for this unknown term" | Run term_edit.py --set-zh workflow. No exceptions. |
| "Skip terminology preflight, it was fine last time" | Glossary changes between runs. Always preflight. |
| "One file left, no need for checkpoint commit" | Every completed batch gets a commit. No exceptions. |
| "I can batch-replace with regex for speed" | Manual translation only. Script-generated prose is forbidden. |
When to Stop and Ask
- Repeated critical findings remain after iteration cap
- Subagent output is malformed and not safely recoverable
- Unknown term requires user decision (rare characters, puns, culturally nuanced)
References
See ./translator-prompt.md, ./reviewer-prompt.md, ./refiner-prompt.md for full dispatch context and placeholder specifications.