PPTX 演示助手

PPTX 演示助手 is a skill for Claude Code, Codex from haojing8312/WorkClaw. It costs 111 tokens per session (1,003 once invoked), scanned A, original, Apache-2.0.

A Chinese-language assistant for reading, creating, editing, and restructuring PowerPoint presentations.

In plain words
What is it for?
Use it to extract slide text, edit existing presentations or templates, create new decks, and produce native .pptx files.
Why use it?
It routes presentation work through separate processes for analysis, safe editing, and new slide creation while preserving templates and visual consistency.

Skill for Claude CodeCodex

Part of the pptx plugin — 6 skills, 5 agents shipped together

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.

agentmods
npx agentmods add skills/haojing8312/workclaw/pptx
Any agent
npx skills add haojing8312/WorkClaw --skill pptx
Clone the repo
git clone --depth 1 https://github.com/haojing8312/WorkClaw

Made for: Claude Code, Codex.

Or install pptx, the plugin that ships this one along with the rest of its 6 skills, 5 agents.

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 PPTX 演示助手

README.md
[![agentmods](https://agentmods.dev/badge/skills/haojing8312/workclaw/pptx.svg)](https://agentmods.dev/skills/haojing8312/workclaw/pptx)
Your own site
<a href="https://agentmods.dev/skills/haojing8312/workclaw/pptx"><img src="https://agentmods.dev/badge/skills/haojing8312/workclaw/pptx.svg" alt="Measured on agentmods" height="20"></a>
Per session 111 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,003 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00111 $0.01003
Opus 5 $0.00056 $0.00502
Sonnet 5 $0.00022 $0.00201
Haiku 4.5 $0.00011 $0.00100

Measured 3d ago against content hash fefa35615894, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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 3d 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.

apps/runtime/src-tauri/builtin-skills/pptx/SKILL.md · 105 lines

What it actually says

PPTX 演示助手

使用这个技能处理 .pptx 文件时,先按任务类型路由,再读取本目录中的对应参考文件。

路由

任务类型 做法 主要参考
读取/分析现有 PPTX python -m markitdown presentation.pptx 抽取文本 README.md
编辑现有模板或演示文稿 走 XML-safe 编辑流程:分析 → unpack → 改 slide XML → clean → pack skills/ppt-editing-skill/SKILL.md
从零创建新 PPTX 先规划 deck 结构,再用 PptxGenJS 生成 slide JS 并编译 skills/ppt-orchestra-skill/SKILL.md

基本规则

  1. 最终交付物必须是原生 .pptx 文件。
  2. 如果用户已经给了模板或现成演示文稿,默认优先走“编辑”路线,不要重建整份文件。
  3. 如果是从零生成,必须先确定页面结构,再开始逐页生成,避免整份 PPT 风格漂移。
  4. 优先保证版式一致性、信息层级和可读性,不要为了塞更多内容破坏页面留白。

读取 / 分析

直接抽取文本:

python -m markitdown presentation.pptx

如果只是需要总结内容、提取大纲、检查占位文字或核对页面信息,这一步通常就够了。

编辑现有 PPTX

先阅读:

  • skills/ppt-editing-skill/SKILL.md

编辑流程:

  1. 复制用户提供的 pptx 为工作副本
  2. markitdown 分析结构
  3. unpack 演示文稿
  4. 完成结构变更:删除、复制、重排 slide
  5. 修改 slide XML 内容
  6. clean 清理孤儿资源
  7. pack 回 .pptx

注意:

  • 先做结构变更,再做逐页内容修改。
  • 不要手工复制 slide 文件,优先复用目录内已有脚本/流程约束。
  • 编辑时优先保留原主题、版式和视觉语言。

从零创建 PPTX

先阅读:

  • skills/ppt-orchestra-skill/SKILL.md
  • skills/design-style-skill/SKILL.md
  • skills/color-font-skill/SKILL.md
  • skills/slide-making-skill/SKILL.md

建议流程:

  1. 明确用户目标、受众、页数范围和风格方向
  2. 设计页面结构:封面、目录、章节分隔、内容页、总结页
  3. 选择颜色和字体
  4. 逐页生成 slide 模块
  5. 编译输出最终 .pptx
  6. markitdown 回读文本做 QA

目录提示

  • README.md: 总体工作流摘要
  • skills/ppt-editing-skill/SKILL.md: 模板编辑和 XML 工作流
  • skills/ppt-orchestra-skill/SKILL.md: 从零生成整份 deck 的编排方法
  • skills/design-style-skill/SKILL.md: 风格与视觉约束
  • skills/color-font-skill/SKILL.md: 配色与字体策略
  • skills/slide-making-skill/SKILL.md: 单页 PptxGenJS 实现细节
  • agents/: 多种页面类型的页面生成说明

输出要求

  • 保持整份演示文稿的视觉一致性。
  • 标记需要人工设计复核的页面。
  • 交付前至少做一次文本抽取 QA,确认没有残留占位文字。
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. 3d ago First seen · 105 lines · 111 tokens per session scan A fefa35615894

Subscribe to this mod's changes

PPTX 演示助手 is a skill published in the GitHub repository haojing8312/WorkClaw (140 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 111 tokens to every session and 1,003 once invoked, about $0.0006 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-30.

Related

Other skills, from other repositories

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

notion

Notion API for creating and managing pages, databases, and blocks. Use when the user wants to create a Notion page, query a Notion database, update Notion properties, search Notion, add content to Notion, manage Notion blocks, or interact with Notion data sources and workspaces via the API.

elizaOS/eliza · 69 tokens

feishu

Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.

Hmbown/CodeWhale · 33 tokens

ondb

A logical analysis and reasoning tool for AI. Use when decomposing documents into structured knowledge, querying entities and relations, validating consistency, or indexing files. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", "analyze this document", entity CRUD, or cross-skill…

x-cmd/x-cmd · 71 tokens

sn-da-large-file-analysis

万行以上 Excel 数据集的高性能分析引擎。提供 openpyxl readonly 流式读取(iterrows 支持 10 万行以上)、Parquet 转换加速、内存优化、分块处理和大文件写入模式。遇到以下任一情况就主动使用本 skill:①数据行数 ≥ 10k(由 sn-da-excel-workflow 的行数评估步骤触发);②用户出现触发词:大文件 / 大数据量 / 性能优化 / 内存不足 / OOM / 百万行 / 十万行 / 流式读取 / Parquet / 分块处理 / large file / big data / streaming read / chunked processing;③直接使用…

OpenSenseNova/SenseNova-Skills · 218 tokens