Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
RY avatar

Translation

  • Updated December 28, 2025
  • Yomiamy/claude-code-plugin

translation is a Claude Code plugin that provides on-demand text translation as a callable service inside agent workflows.

About

A text translation service exposed as a Claude Code plugin. The description is minimal (Chinese: translation service), so supported languages and options are not specified. A developer would use it to add on-demand translation as a callable tool within an agent workflow rather than prompting the base model each time.

  • Text translation service
  • Claude Code plugin

Translation by the numbers

  • Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add Yomiamy/claude-code-plugin
/plugin install translation@ry-plugins

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Last updatedDecember 28, 2025
RepositoryYomiamy/claude-code-plugin

How do I translate text reliably inside my Claude Code workflow without manual copy-paste to external tools?

Provide a text translation service callable from Claude Code.

Who is it for?

A developer using Claude Code who needs a dedicated translation tool callable from the agent.

Skip if: High-volume localization pipelines or teams needing glossary-managed enterprise translation.

When should I use this skill?

When the agent or user needs text translated as part of a Claude Code session.

What you get

Translated text returned through the plugin's translation service.

README.md

Claude Code Plugin Collection

A collection of useful plugins for Claude Code CLI, focusing on translation and text processing capabilities.

Features

Translation Commands

  • /to-ch - Translate text to Traditional Chinese
  • /to-en - Translate text to English

Both commands maintain technical terminology accuracy during translation.

Math Commands

  • /abs - 計算數值的絕對值。若輸入不是數字,則回報錯誤訊息。

Installation

Local Installation

  1. Clone this repository:
git clone https://github.com/yourusername/claude-code-plugin.git
cd claude-code-plugin
  1. Install the plugin to Claude Code:
claude plugin add ./

NPM Installation (Coming Soon)

claude plugin add @ry/claude-code-plugins

Usage

取絕對值(/abs 指令)

claude /abs "-15"

Output:

15

如果輸入非數字:

claude /abs "hello"

Output:

請輸入數值

Translate to Chinese

claude /to-ch "Hello, World! This is a technical document."

Output:

你好,世界!這是一個技術文件。

Translate to English

claude /to-en "這是一個測試訊息,包含技術術語。"

Output:

This is a test message containing technical terminology.

Plugin Structure

claude-code-plugin/
├── plugin.json                  # Plugin configuration
├── plugins/
│   ├── math/
│   │   ├── .claude-plugin/
│   │   │   └── plugin.json      # math plugin 設定檔
│   │   └── commands/
│   │       └── abs.md           # abs(絕對值)指令 prompt
│   └── translation/
│       ├── .claude-plugin/
│       │   └── plugin.json
│       └── commands/
│           ├── to-ch.md        # Chinese translation prompt
│           └── to-en.md        # English translation prompt
├── package.json                 # NPM package configuration
├── README.md                   # This file
├── LICENSE                     # MIT License
├── .gitignore                  # Git ignore rules
└── .npmignore                  # NPM ignore rules

Development

Adding New Commands

  1. Create a new prompt file in commands/ directory:
touch commands/your-command.md
  1. Add command definition to plugin.json:
{
  "name": "your-command",
  "description": "Command description",
  "prompt": "commands/your-command.md"
}
  1. Test the command:
claude /your-command "test input"

Testing

npm run validate

Requirements

  • Claude Code CLI >= 0.1.0
  • Node.js >= 18.0.0

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

RY

Changelog

v1.0.1 (2025-12-28)

  • 新增 Math 指令 /abs

v1.0.0 (2025-12-21)

  • Initial release
  • Added Chinese translation command (/to-ch)
  • Added English translation command (/to-en)

Support

If you encounter any issues or have questions, please open an issue.

Related Links

Related skills

FAQ

What does the translation plugin do?

Provides a text translation service callable from Claude Code.

How is it invoked?

As a plugin tool within Claude Code agent workflows.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.