Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By jiang1997
Automatically check prompts for grammar issues and translate them into a configurable target language before Claude processes them.
npx claudepluginhub jiang1997/claude-code-language-coach --plugin language-coachThis plugin requires configuration values that are prompted when the plugin is enabled. Sensitive values are stored in your system keychain.
modelModel name accepted by the configured OpenAI-compatible provider.
${user_config.model}api_keyAPI key for the external model provider used to evaluate or translate prompts.
${user_config.api_key}base_urlBase URL for the provider, such as https://api.openai.com/v1 or another OpenAI-compatible endpoint.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
${user_config.base_url}timeout_msMaximum time to wait for the external model before letting the prompt continue without feedback.
${user_config.timeout_ms}source_languageYour native or source language. When set, the tutor produces a back-translation into this language whenever you write a prompt in another language, letting you verify your wording matches your intent. Leave empty to disable.
${user_config.source_language}target_languageThe language to translate prompts into or check grammar against. Default is English.
${user_config.target_language}max_prompt_charsPrompts longer than this are skipped to avoid sending large code blocks or logs to the external provider.
${user_config.max_prompt_chars}Shows grammar suggestions and translates prompts into a configurable target language.
Scores and rewrites every user prompt in your chosen target language (English, Chinese, Spanish, or Japanese) via a UserPromptSubmit hook. Feedback is shown to you only, not added to the model's context.
English language coach for non-native speakers — auto-corrects prompts, translates non-English, refines with :: prefix, tracks improvement over time
AI-powered translation plugin with /tr command (--hq for high-quality)
Claude Code를 한국어로 자연스럽게 사용할 수 있게 해주는 플러그인. 설치만 하면 한국어 자연어로 커맨드를 찾고, 워크플로우를 따라하고, 프로젝트를 셋업할 수 있습니다. Transparent Korean language plugin for Claude Code — just install and speak Korean naturally.
Translate text between multiple languages with high accuracy
Shows grammar suggestions and translates prompts into a configurable target language.
This repository contains two versions of the Language Coach plugin for Claude Code.
Write Claude Code prompts in languages you're not fluent in — with grammar checks, translation, and back-translation to verify your intent.
source_language to see a back-translation, so you can verify the translated prompt still means what you intended.Neither version modifies your input. The feedback is visible only to you and is never inserted into Claude's model context.
| Feature | Original (Recommended) | Statusline |
|---|---|---|
| Delivery | Inline system message in chat | CLI Status Line (footer) |
| UX | Delays Claude's response slightly | Instant response (runs in background) |
| Visibility | Prominent, before Claude's reply | Subtle, appears during/after reply |
| Setup | Configure API key, base URL, and model | Configure API + manual settings.json edit |
The classic version that provides blocking, inline feedback before each prompt.

Install:
Add the marketplace:
/plugin marketplace add jiang1997/claude-code-language-coach
Install the plugin:
/plugin install language-coach@language-coach
Configure — open the plugin manager (/plugin → Installed → Language Coach) and set:
api_key: Your OpenAI-compatible API keybase_url: Provider base URL (e.g. https://api.openai.com/v1)model: Model name accepted by that providerThe non-blocking version that provides feedback in the CLI status line.

Install:
Add the marketplace:
/plugin marketplace add jiang1997/claude-code-language-coach
Install the plugin:
/plugin install language-coach-statusline@language-coach
Configure — same API settings as the Original version (api_key, base_url, model).
Mandatory Setup:
To see the feedback, you must add a statusLine entry to your ~/.claude/settings.json:
{
"statusLine": {
"type": "command",
"command": "node /absolute/path/to/plugins/language-coach-statusline/scripts/language-statusline.js",
"refreshInterval": 3
}
}
(Tip: Use find ~/.claude/plugins -name language-statusline.js to find the absolute path after installation.)
Because this is a monorepo, you must point the CLI to a specific sub-directory when testing locally:
To develop the Original version:
claude --plugin-dir ./plugins/language-coach
To develop the Statusline version:
claude --plugin-dir ./plugins/language-coach-statusline