Agent skill · DevOps & Cloud

azure-ai-translation-ts

Text and document translation with REST-style clients.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill azure-ai-translation-ts --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/ai-llm/azure-ai-translation-ts/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

--- name: azure-ai-translation-ts description: Build translation applications using Azure Translation SDKs for JavaScript (@azure-rest/ai-translation-text, @azure-rest/ai-translation-document). Use when implementing text translation, transliteration, language detection, or batch document translation. package: @azure-rest/ai-translation-text, @azure-rest/ai-translation-document --- # Azure Translation SDKs for TypeScript Text and document translation with REST-style clients. ## Installation ```bash # Text translation npm install @azure-rest/ai-translation-text @azure/identity # Document translation npm install @azure-rest/ai-translation-document @azure/identity ``` ## Environment Variables ```bash TRANSLATOR_ENDPOINT=https://api.cognitive.microsofttranslator.com TRANSLATOR_SUBSCRIPTION_KEY=<your-api-key> TRANSLATOR_REGION=<your-region> # e.g., westus, eastus ``` ## Text Translation Client ### Authentication ```typescript import TextTranslationClient, { TranslatorCredential } from "@azure-rest/ai-translation-text"; // API Key + Region const credential: TranslatorCredential = { key: process.env.TRANSLATOR_SUBSCRIPTION_KEY!, region: process.env.TRANSLATOR_REGION!, }; const client = Tex

What's inside
Steps it walks through
  1. Installation
  2. Environment Variables
  3. Text Translation Client
  4. Authentication
  5. Translate Text
  6. Translate with Options
  7. Get Supported Languages
  8. Transliterate
  9. Detect Language
  10. Document Translation Client
  11. Single Document Translation
  12. Batch Document Translation
  13. Get Translation Status
  14. Get Supported Formats
Ships with 1 file
  • metadata.json
Commands it runs
Text translation
npm install @azure-rest/ai-translation-text @azure/identity
Document translation
npm install @azure-rest/ai-translation-document @azure/identity
More from claude-skill-registry
All skills →
About this skill
What does the azure-ai-translation-ts skill do?

Text and document translation with REST-style clients.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill azure-ai-translation-ts --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going