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.
npx agentmods add skills/haojing8312/workclaw/pptxnpx skills add haojing8312/WorkClaw --skill pptxgit clone --depth 1 https://github.com/haojing8312/WorkClawWrote 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.
[](https://agentmods.dev/skills/haojing8312/workclaw/pptx)<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>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.
| Model | Per session | Once 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 |
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.
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 |
基本规则
- 最终交付物必须是原生
.pptx文件。 - 如果用户已经给了模板或现成演示文稿,默认优先走“编辑”路线,不要重建整份文件。
- 如果是从零生成,必须先确定页面结构,再开始逐页生成,避免整份 PPT 风格漂移。
- 优先保证版式一致性、信息层级和可读性,不要为了塞更多内容破坏页面留白。
读取 / 分析
直接抽取文本:
python -m markitdown presentation.pptx
如果只是需要总结内容、提取大纲、检查占位文字或核对页面信息,这一步通常就够了。
编辑现有 PPTX
先阅读:
skills/ppt-editing-skill/SKILL.md
编辑流程:
- 复制用户提供的
pptx为工作副本 - 用
markitdown分析结构 - unpack 演示文稿
- 完成结构变更:删除、复制、重排 slide
- 修改 slide XML 内容
- clean 清理孤儿资源
- pack 回
.pptx
注意:
- 先做结构变更,再做逐页内容修改。
- 不要手工复制 slide 文件,优先复用目录内已有脚本/流程约束。
- 编辑时优先保留原主题、版式和视觉语言。
从零创建 PPTX
先阅读:
skills/ppt-orchestra-skill/SKILL.mdskills/design-style-skill/SKILL.mdskills/color-font-skill/SKILL.mdskills/slide-making-skill/SKILL.md
建议流程:
- 明确用户目标、受众、页数范围和风格方向
- 设计页面结构:封面、目录、章节分隔、内容页、总结页
- 选择颜色和字体
- 逐页生成 slide 模块
- 编译输出最终
.pptx - 用
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,确认没有残留占位文字。
What ships with it
14 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .claude-plugin/marketplace.json 411 B
- .claude-plugin/plugin.json 267 B
- agents/content-page-generator.md 5.7 KB
- agents/cover-page-generator.md 4.1 KB
- agents/section-divider-generator.md 5.2 KB
- agents/summary-page-generator.md 5.0 KB
- agents/table-of-contents-generator.md 6.4 KB
- README.md 1.7 KB
- skills/color-font-skill/SKILL.md 7.7 KB
- skills/design-style-skill/SKILL.md 6.1 KB
- skills/ppt-editing-skill/SKILL.md 6.7 KB
- skills/ppt-orchestra-skill/SKILL.md 5.8 KB
- skills/slide-making-skill/pptxgenjs.md 13 KB
- skills/slide-making-skill/SKILL.md 7.1 KB
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.
- 3d ago First seen · 105 lines · 111 tokens per session scan A fefa35615894
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.
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…
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…
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.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
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…
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;③直接使用…