azure-ai-translation-ts
Text and document translation with REST-style clients.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
--- 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
- Installation
- Environment Variables
- Text Translation Client
- Authentication
- Translate Text
- Translate with Options
- Get Supported Languages
- Transliterate
- Detect Language
- Document Translation Client
- Single Document Translation
- Batch Document Translation
- Get Translation Status
- Get Supported Formats
Text translation npm install @azure-rest/ai-translation-text @azure/identity Document translation npm install @azure-rest/ai-translation-document @azure/identity
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.
