wps-ppt-polish

wps-ppt-polish is a skill for Claude Code from Bwkyd/wps-skills. It costs 107 tokens per session (2,160 once invoked), scanned A, original, MIT.

A PowerPoint cleanup tool that checks slides for layout and style problems, then can apply consistent fonts, colors, alignment, spacing, and other formatting changes across the presentation.

In plain words
What is it for?
Reviewing and batch-formatting existing presentations, including removing animations and correcting common visual problems.
Why use it?
It helps fix messy slides when the content is finished but text, images, colors, or spacing are inconsistent.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Reviewing and batch-formatting existing presentations, including removing animations and correcting common visual problems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bwkyd/wps-skills/wps-ppt-polish
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 Bwkyd/wps-skills --skill wps-ppt-polish
Clone the repo
git clone --depth 1 https://github.com/Bwkyd/wps-skills

Made for: Claude Code.

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 wps-ppt-polish

README.md
[![agentmods](https://agentmods.dev/badge/skills/bwkyd/wps-skills/wps-ppt-polish/github.svg)](https://agentmods.dev/skills/bwkyd/wps-skills/wps-ppt-polish)
Your own site
<a href="https://agentmods.dev/skills/bwkyd/wps-skills/wps-ppt-polish"><img src="https://agentmods.dev/badge/skills/bwkyd/wps-skills/wps-ppt-polish/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 wps-ppt-polish

Your own site · 80×15
<a href="https://agentmods.dev/skills/bwkyd/wps-skills/wps-ppt-polish"><img src="https://agentmods.dev/badge/skills/bwkyd/wps-skills/wps-ppt-polish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,160 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.00107 $0.02160
Opus 5 $0.00053 $0.01080
Sonnet 5 $0.00021 $0.00432
Haiku 4.5 $0.00011 $0.00216

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

Security

Grade A, and why

wps-ppt-polish 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 11d 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/wps-ppt-polish/SKILL.md · 272 lines

How it starts

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

PPT美化与优化工具

诊断PPT问题 → 一键批量修复 → 专业级视觉效果。

内容写好了,排版却一言难尽?交给我。

When to Use

  • PPT做完了但不好看
  • 字体/颜色/对齐混乱需要统一
  • 需要批量修改所有幻灯片格式
  • 用户说"PPT太丑了""帮我美化一下"

When NOT to Use

  • 从零创建PPT → 使用 wps-ppt-gen
  • 只需要大纲 → 使用 wps-ppt-outline

PPT常见问题诊断

🔴 严重问题
  · 字体不统一(宋体+黑体+楷体混用)
  · 文字溢出文本框
  · 图片变形拉伸
  · 元素互相遮挡

🟡 排版问题
  · 元素不对齐
  · 间距不一致
  · 页边距太小/太大
  · 内容过多(一页>7行文字)

🔵 美观问题
  · 配色超过4种
  · 背景花哨
  · 动画过多
  · 字号不规范

工作流程

Step 1: 诊断PPT

from pptx import Presentation
from pptx.util import Inches, Pt, Emu
from collections import Counter
import os

def diagnose_ppt(ppt_path):
    """诊断PPT问题"""
    prs = Presentation(ppt_path)
    issues = []

    fonts_used = Counter()
    colors_used = Counter()
    total_slides = len(prs.slides)

    for slide_num, slide in enumerate(prs.slides, 1):
        text_count = 0
        for shape in slide.shapes:
            if shape.has_text_frame:
                for para in shape.text_frame.paragraphs:
                    for run in para.runs:
                        if run.font.name:
                            fonts_used[run.font.name] += 1
                        if run.font.color and run.font.color.rgb:
                            colors_used[str(run.font.color.rgb)] += 1
                    text_count += len(para.text)

            # 检查图片是否变形
            if shape.shape_type == 13:  # Picture
                if hasattr(shape, 'image'):
                    w_ratio = shape.width / shape.height
                    # 原始比例检查
                    if abs(w_ratio - 1.33) > 0.5 and abs(w_ratio - 1.78) > 0.5:
                        issues.append(f"P{slide_num}: 图片可能变形")

        if text_count > 500:
            issues.append(f"P{slide_num}: 文字过多({text_count}字)")

    # 字体统一性
    if len(fonts_used) > 3:
        issues.append(f"使用了{len(fonts_used)}种字体,建议≤3种")

    # 颜色统一性
    if len(colors_used) > 6:
        issues.append(f"使用了{len(colors_used)}种颜色,建议≤5种")

    return {
        'total_slides': total_slides,
        'fonts': dict(fonts_used.most_common(10)),
        'colors': dict(colors_used.most_common(10)),
        'issues': issues,
    }

Read the full file on GitHub · 272 lines

Files

What ships with it

1 file 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.

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. 11d ago First seen · 272 lines · 107 tokens per session scan A d431ec729d9a

Subscribe to this mod's changes

wps-ppt-polish is a skill published in the GitHub repository Bwkyd/wps-skills (7 stars, last pushed 4mo ago), licensed MIT. It adds 107 tokens to every session and 2,160 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

exhibition-theme-brainstorm

A structured brainstorming method for creating exhibition themes, meaning the ideas and story that guide a museum, company, or institutional display. It develops themes from broad ideas, an organisation’s identity, its values, and possible visual expressions.

Amalia6767/curator-skills · 55 tokens

ppt-layout

A page-by-page layout guide for turning an exhibition plan into a presentation. It defines each slide’s purpose, text hierarchy, content, visual suggestions, and one-sentence takeaway.

Amalia6767/curator-skills · 52 tokens

canvas-design

Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.

lingxling/awesome-skills-cn · 59 tokens

theme-factory

Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.

lingxling/awesome-skills-cn · 62 tokens

frontend-slides

Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.

gooseworks-ai/goose-skills · 63 tokens

create-workflow-diagram

Create FigJam/Miro-style workflow diagrams as high-quality PNG images from plain-text workflow descriptions. Renders beautiful HTML diagrams with connected nodes, arrows, and labels, then screenshots them for sharing.

gooseworks-ai/goose-skills · 45 tokens