translate-pptx

translate-pptx is a skill for Claude Code from smartdatabrokers/slideforge-mcp. It costs 90 tokens per session (962 once invoked), scanned A, original, MIT.

A translation tool for PowerPoint files that changes the presentation’s text into another language while keeping its layout and media.

In plain words
What is it for?
Use it to translate or localize an existing deck into languages such as German, French, or Spanish.
Why use it?
It avoids rebuilding slides after translation and keeps charts, tables, images, and formatting in place.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the slideforge plugin — 4 skills, 1 MCP server shipped together

Good fit Use it to translate or localize an existing deck into languages such as German, French, or Spanish.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/smartdatabrokers/slideforge-mcp/translate-pptx
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add smartdatabrokers/slideforge-mcp --skill translate-pptx
Clone the repo
git clone --depth 1 https://github.com/smartdatabrokers/slideforge-mcp

Made for: Claude Code.

Or install slideforge, the plugin that ships this one along with the rest of its 4 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for translate-pptx

README.md
[![agentmods](https://agentmods.dev/badge/skills/smartdatabrokers/slideforge-mcp/translate-pptx/github.svg)](https://agentmods.dev/skills/smartdatabrokers/slideforge-mcp/translate-pptx)
Your own site
<a href="https://agentmods.dev/skills/smartdatabrokers/slideforge-mcp/translate-pptx"><img src="https://agentmods.dev/badge/skills/smartdatabrokers/slideforge-mcp/translate-pptx/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for translate-pptx

Your own site · 80×15
<a href="https://agentmods.dev/skills/smartdatabrokers/slideforge-mcp/translate-pptx"><img src="https://agentmods.dev/badge/skills/smartdatabrokers/slideforge-mcp/translate-pptx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 962 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00090 $0.00962
Opus 5 $0.00045 $0.00481
Sonnet 5 $0.00018 $0.00192
Haiku 4.5 $0.00009 $0.00096

Measured 8d ago against content hash 00fab9f55ba8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

translate-pptx scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/translate-pptx/SKILL.md · 103 lines

How it starts

The opening of the file, as written. The whole thing — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Translate PPTX

Use the slideforge MCP server to translate an existing PowerPoint deck without re-creating it from scratch. Every shape, chart, table, and embedded image stays exactly where it was — only the text content changes.

When to trigger

Any request to translate, localize, or change the language of a PowerPoint file. Examples:

  • "Translate this deck to German"
  • "Can you localize this presentation into Spanish?"
  • "Convert my PPTX from English to French"

Tools used

  • translate_deck — main tool
  • upload_asset with purpose=translate — if the user uploads a file rather than passing a URL or job_id

Workflow

If the user has a prior slideforge job (preferred)

{
  "target_language": "de",
  "job_id": "<previous slide or deck job_id>"
}

No file transfer needed — fastest path.

If the user pastes a public URL to a PPTX

{
  "target_language": "de",
  "pptx_url": "https://example.com/deck.pptx"
}

If the user uploads a file

First upload via upload_asset:

{
  "purpose": "translate",
  "data": "<base64-encoded .pptx>",
  "filename": "my-deck.pptx",
  "target_language": "de"
}

Returns a job_id; poll or set include_preview to get the result inline.

Supported languages

32 languages, grouped by script family. source_language is auto-detected by default; override if needed. No CJK or RTL scripts yet.

Script Codes
Latin en, de, fr, es, it, pt, nl, sv, da, no, fi, is, pl, cs, sk, hu, ro, hr, sl, et, lt, lv, tr, ca, gl, id, vi
Cyrillic ru, uk, bg, sr
Greek el

Full names: English, German, French, Spanish, Italian, Portuguese, Dutch, Swedish, Danish, Norwegian, Finnish, Icelandic, Polish, Czech, Slovak, Hungarian, Romanian, Croatian, Slovenian, Estonian, Lithuanian, Latvian, Russian, Ukrainian, Bulgarian, Serbian, Turkish, Catalan, Galician, Indonesian, Vietnamese, Greek.

Useful options

  • include_notes: true — translate speaker notes (default false)
  • include_tables: true — translate table cells (default true)
  • concise_mode: true — prefer shorter translations when text boxes are tight (e.g., German is ~30% longer than English; enable to keep layouts clean)

Read the full file on GitHub · 103 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 103 lines · 90 tokens per session scan A 00fab9f55ba8

Subscribe to this mod's changes

translate-pptx is a skill published in the GitHub repository smartdatabrokers/slideforge-mcp (4 stars, last pushed 9d ago), licensed MIT. It adds 90 tokens to every session and 962 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

n8n-binary-and-data

Handle files and binary data in n8n correctly. Use when working with files, images, PDFs, attachments, uploads or downloads, base64, vision/multimodal input, or when an AI agent needs a file as tool input or output — and whenever the user mentions $binary, binaryPropertyName, "read the PDF", "attach the file", "send…

czlonkowski/n8n-mcp · 135 tokens

translate-book

Translate books (PDF/DOCX/EPUB) into any language using parallel sub-agents. Converts input -> Markdown chunks -> translated chunks -> HTML/DOCX/EPUB/PDF.

deusyu/translate-book · 42 tokens

pdf_translator

Extract text from PDF files, translate it to a target language, and save the result as a Markdown file. Use this skill when the user wants to translate a PDF document or asks to "convert PDF to Chinese".

ForceInjection/AI-fundamentals · 47 tokens

excel-cli

Excel CLI automation skill for Windows workbooks. Use when a coding agent needs token-efficient, scriptable, or unattended Excel automation via excelcli commands. Best for CI/CD, scheduled jobs, batch processing, PowerShell workflows, and bulk workbook edits. Supports Power Query, DAX, PivotTables, Tables, Ranges…

sbroenne/mcp-server-excel · 114 tokens

excel-mcp

Excel MCP Server skill for Windows workbook automation. Use when an assistant needs rich MCP tools to create, inspect, modify, format, or analyze Excel files. Supports Power Query (M), Data Model/DAX, PivotTables, Tables, Ranges, Charts, Slicers, formatting, screenshots, VBA macros, connections, and calculation mode.…

sbroenne/mcp-server-excel · 106 tokens

azure-ai-translation-document-py

Client library for Azure AI Translator document translation service for batch document translation with format preservation.

benjaminasterA/antigravity-awesome-skills · 0 tokens