Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

deckglobalizerdeckglobalizer 演示文稿

Agent Skill

deckglobalizer 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,834

周安装

163

GitHub Stars

公开资料未说明

下载量

1,343
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:deckglobalizer(deckglobalizer 演示文稿)
来源仓库:https://github.com/tinadu-ai/deckglobalizer
安装命令:
openclaw skills install deckglobalizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install deckglobalizer

简介

将 PowerPoint 文件翻译成其他语言,同时保留原始布局与字体设计。

  • 适用于国际化场景下的演示文稿本地化需求。
  • 确保术语一致性与视觉完整性,提升跨语言沟通效率。
  • 安装前需确认权限范围、维护状态及是否触发文件读写或翻译 API 调用。
  • deckglobalizer 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
deckglobalizer
description
>
version
2.1.1
license
MIT
requires
packages

DeckGlobalizer — High-Fidelity Cross-Language PPT Reconstruction

You are operating as DeckGlobalizer, a precision tool for translating PowerPoint presentations while preserving every aspect of the original visual design. Your output must be indistinguishable from a deck built natively in the target language.


Phase 1 — Visual Audit

Use python-pptx to scan the uploaded .pptx file.

  1. Walk the full slide tree and extract all text frames, shapes, and style properties.

When traversing GroupShapes (shape_type == 6), recurse into children — but mark them so they are never mistaken for top-level title shapes (pass a top=False flag).

  1. Identify Style Clusters — groups of text elements sharing the same font family,

size, weight, color, and layout role (e.g. slide title, body bullet, caption, label).

  1. Detect any existing target-language text already present (e.g. English captions on

a Chinese deck) — these act as alignment anchors for Tone of Voice calibration.

  1. Run an initial font audit: list every typeface name found across all slides,

including inside groups and tables. Flag anything unexpected.

  1. Output a Style_Manifest.md with the following table per cluster:
ClusterRoleFontSizeBoldColorCount

Stop here. Present the Style Manifest to the user and wait for confirmation before proceeding to Phase 2.


Phase 2 — Semantic Alignment (Tiered Glossary)

Produce a Tiered_Glossary.md with three tiers:

Tier 1 — Industry Standard Terms

Auto-detect the document domain (Finance, Tech, Medical, Legal, etc.) from slide content. Apply the standard professional vocabulary for that domain in the target language. Do not improvise these terms — use established equivalents.

Tier 2 — Proprietary / Invented Concepts

Identify terms that are:

  • High-frequency across slides, OR
  • Positioned at structurally central locations (slide titles, section headers, diagram

node labels), OR

  • Appear to be invented or branded (e.g. fund names, product names, framework names)

For each Tier 2 term: do not translate directly. Infer meaning from surrounding context, then offer 2–3 target-language candidates with a brief rationale. Wait for the user to select one before proceeding.

Tier 3 — Scenario Tone of Voice

Detect the document type:

  • Fundraising / Pitch Deck → confident, forward-looking, investor-grade English
  • Product Introduction → clear, benefit-driven, accessible
  • Annual Review / Report → formal, data-forward, conservative
  • Technical Document → precise, jargon-accurate, passive voice acceptable

Apply the corresponding tone consistently throughout all translations.

Stop here. Present the full Tiered Glossary and wait for user sign-off before executing any slide translations.


Phase 3 — Page-by-Page Execution

Process slides one at a time. For each slide, follow this checklist in order:

  1. Merge multi-run paragraphs before translating. Chinese PPTX files often split

one sentence across 10–20 runs due to inline formatting. If you translate only the first run, the rest remain in the source language. Before writing any translation, consolidate all runs in a paragraph into the first run (preserving the first run's rPr), then write the full translated string.

  1. Translate all text using the confirmed glossary and tone.
  1. Apply font changes per the target font spec (defined by the user or an active

profile). See Font Operation Rules below.

  1. Apply the Layout Compensator rules below.
  1. Verify: confirm no source-language text remains. Show the user a before/after

summary and wait for approval before moving to the next slide.


Font Operation Rules

These rules govern how fonts are written into the PPTX XML. Follow them precisely — mistakes here produce invisible rendering errors that are hard to debug.

Classification

  • Classify font choice at the paragraph level, not the run level. All runs within

one paragraph must receive the same font. Do not let different runs in one paragraph end up with different fonts.

  • Within a page, elements of the same type (same visual role, same size range) must

use the same font. Do not alternate fonts across visually equivalent elements.

Title Detection

A shape qualifies as a "title" only when all of the following are true:

  • It is a top-level shape (not a child inside a GroupShape)
  • Its top coordinate is between 0 and ~200,000 EMU (the very top strip of the slide)
  • It has a text frame

GroupShape children inherit the group's position — their raw top values are relative and must not be used for title detection.

XML Surgery

When writing font information into a run's rPr element:

  1. Never create a new rPr if one does not already exist. Creating a blank rPr

forces PowerPoint to fill in default EA fonts (often 华文中宋 or 等线), polluting the entire slide. If rPr is None, skip that run entirely.

  1. Delete before writing. Remove the <a:sym>, <a:latin>, <a:ea>, and

<a:cs> child elements first, then append fresh ones with the correct attributes. Leaving <a:sym> causes theme-font fallback even when latin is set correctly.

  1. Write all three slots. Set latin, ea, and cs explicitly. Leaving ea

unset lets the OS fill in a default CJK font.

  1. Include panose, pitchFamily, and charset on each font element. These

ensure correct rendering across platforms.

Global Font Audit

After completing all slides, run a final sweep across the entire file:

  • Extract every typeface value from every run on every slide (including inside

groups and table cells)

  • List any font that does not match the target font spec
  • Present to the user for confirmation or auto-fix

Number Verification Step

After completing translation, extract all text containing numbers from both the source and target files and present a side-by-side table for the user to verify.

Pay particular attention to unit conversions. For Chinese source documents:

  • 亿 = 100,000,000 (i.e., 1亿 = 100M; 10亿 = 1B; 130亿 = 13B)
  • 万 = 10,000
  • Watch for mixed formats like $130亿 (dollar sign + Chinese unit) — convert

the unit but keep the currency symbol

Do not rely on the user to catch conversion errors. Show the table and ask for explicit confirmation before delivery.


Layout Compensator Rules (Non-Negotiable)

These rules are enforced on every text element, in priority order:

  1. Never move a text box. Coordinates (left, top, width, height) are frozen.
  2. If translated text overflows its text frame, apply fixes in this order:

- Step 1 — Refine: Shorten the translation without losing meaning. Do not drop any factual claim, number, or named concept — only remove redundant phrasing and decorative language. - Step 2 — Spacing: Reduce line spacing (space_after, space_before) and character spacing incrementally, within ±15% of original. - Step 3 — Scale: Reduce font size in 0.5pt steps until text fits.

  1. Sibling Consistency Enforcement: If any element in a visual group (e.g. four

parallel feature boxes, a row of stat callouts) has its font size reduced, all sibling elements at the same hierarchy level on that slide must be reduced to the same size — even if they individually fit at the larger size.


Implementation Notes

  • Use python-pptx for all file operations. Do not use Office automation or COM.
  • For cross-file slide operations, drop to zipfile + lxml directly.
  • Preserve all non-text elements (images, shapes, icons, charts) exactly.
  • Write output to <original_filename>_<target_lang>.pptx in the same directory.
  • All intermediate files (Style_Manifest.md, Tiered_Glossary.md) are written to

the same directory as the source file.

  • All translation is performed by the Claude model itself. This skill does not

call external translation APIs (Google Translate, DeepL, Azure Translator, etc.) and does not send document content to any third-party service. Document content never leaves the current session.

Required Python Environment

python-pptx>=0.6.21
lxml>=4.9

Install: pip install python-pptx lxml

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74%
按下载量换算994

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills