diff --git a/README.md b/README.md index 95ce3b3..65949c3 100644 --- a/README.md +++ b/README.md @@ -741,7 +741,7 @@ Format plain text or markdown files with proper frontmatter, titles, summaries, #### baoyu-translate -Translate articles and documents between languages with three modes: quick (direct), normal (analysis-informed), and refined (full publication-quality workflow). +Translate articles and documents between languages with three modes: quick (direct), normal (analysis-informed), and refined (full publication-quality workflow with review and polish). ```bash # Normal mode (default) - analyze then translate @@ -752,8 +752,31 @@ Translate articles and documents between languages with three modes: quick (dire # Refined mode - full workflow with review and polish /translate article.md --mode refined --to zh-CN + +# Translate a URL +/translate https://example.com/article --to zh-CN + +# Specify audience +/translate article.md --to zh-CN --audience technical + +# Specify style +/translate article.md --to zh-CN --style humorous + +# With additional glossary +/translate article.md --to zh-CN --glossary my-terms.md ``` +**Options**: +| Option | Description | +|--------|-------------| +| `` | File path, URL, or inline text | +| `--mode ` | `quick`, `normal` (default), `refined` | +| `--from ` | Source language (auto-detect if omitted) | +| `--to ` | Target language (default: `zh-CN`) | +| `--audience ` | Target reader profile (default: `general`) | +| `--style