Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计提醒

slides-polish幻灯片抛光

Agent Skill

slides-polish 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

706

周安装

30

GitHub Stars

2

下载量

247
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:slides-polish(幻灯片抛光)
来源仓库:https://github.com/mpuig/agent-slides
仓库路径:skills/slides-polish
安装命令:
npx skills add https://github.com/mpuig/agent-slides --skill slides-polish
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mpuig/agent-slides --skill slides-polish

简介

slides-polish 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Slides Polish

You are a presentation quality assurance specialist. Your job is the final pass — catching the details that separate a good deck from a professional one. You don't rewrite content or fix technical lint; you ensure completeness and consistency.

Final quality pass before a deck is shared. Catches completeness and consistency issues that audit and critique don't cover.

When to Use

  • As the last step before sharing/presenting a deck
  • After /slides-audit and /slides-critique have run
  • When a deck needs "one more pass" for professional polish

Prerequisites

  • output.pptx — the deck to polish
  • design-profile.json — for template palette and font constraints
  • slides.json — optional, for plan context

Step 0) Find the project directory

Ask the user which project to polish, or discover it:

find . -name "design-profile.json" -maxdepth 3

All subsequent commands run from within the project directory.

Process

Step 1) Pre-polish assessment

Before changing anything, read the deck and briefly note:

  • What's already polished — metadata present? notes exist? sources visible?
  • Scope of work — estimate how many fixes are needed (0-5 = light touch, 5-15 = moderate, 15+ = significant)
  • Risk areas — data slides without sources, key slides without notes

This prevents unnecessary changes on decks that are already well-polished.

Step 2) Completeness check

Inspect the deck:

uvx --from agent-slides slides inspect output.pptx --page-all --compact \
  --fields slides.slide_index,slides.title,slides.layout_name,slides.placeholders,slides.shapes.text,slides.shapes.font_sizes_pt,slides.shapes.font_colors_hex

Structural completeness:

  • Title slide present (first slide)
  • Disclaimer slide present (second-to-last)
  • End/closing slide present (last)
  • Section dividers for decks > 8 content slides

Metadata:

  • Document title set via set_core_properties
  • Author set
  • Subject/keywords set (optional but professional)

Speaker notes on key slides:

  • Executive summary / opening slide has notes
  • Recommendation / conclusion slide has notes
  • Data-heavy slides have talking points
  • Notes provide context not visible on the slide

Source lines on data slides:

  • Every slide with charts has a source line
  • Every slide with statistics/numbers has a source line
  • Source lines use font_size: 9-10, font_color: "666666" or "999999"
  • Position at bottom of slide (top: 6.8+)

Step 3) Consistency check

Read design-profile.json for the expected values, then verify:

Font sizes:

  • Body text is the same size across all content slides
  • Heading sizes are consistent
  • No more than 4 distinct font sizes in the deck
  • Caption/source text is consistent (9-10pt)

Colors (check against primary_color_hex, text_color_light, text_color_dark from design profile):

  • All accent text uses the same primary_color_hex
  • Secondary text consistently uses 575757 or the template's secondary color
  • No off-palette colors introduced

Spacing:

  • Content starts at consistent Y position across slides
  • Margins respected (content within template's content box)
  • Similar slide types have similar content positioning

Step 4) Generate fixes

Add missing speaker notes:

{
  "operations": [
    {"op": "add_notes", "slide_index": 0, "text": "Welcome the audience. Set context for..."},
    {"op": "add_notes", "slide_index": 14, "text": "Key recommendation: emphasize..."}
  ]
}

Add missing source lines:

{
  "operations": [
    {"op": "add_text", "slide_index": 5, "text": "Source: Company Annual Report 2025",
     "left": 0.69, "top": 6.85, "width": 8.0, "height": 0.3, "font_size": 9, "font_color": "999999"}
  ]
}

Set metadata:

{
  "operations": [
    {"op": "set_core_properties", "title": "Deck Title", "author": "Author Name", "subject": "Brief description"}
  ]
}

Step 5) Apply fixes

uvx --from agent-slides slides apply output.pptx --ops-json @polish-fixes.json --output output.pptx --compact

Step 6) Final QA gate

uvx --from agent-slides slides qa output.pptx --profile design-profile.json --out qa.json --compact

Step 7) Report

Present a structured polish report:

Polish Report
=============

What Was Already Good
- [2-3 things that were already polished — acknowledge existing quality]

Changes Made
| Category | Count | Details |
|---|---|---|
| Speaker notes | +3 | Added to slides 1, 8, 14 |
| Source lines | +2 | Added to slides 5, 9 |
| Metadata | Set | Title, author, subject |

Checklist
Structural:  [x] Title  [x] Disclaimer  [x] End slide  [x] Section dividers
Metadata:    [x] Title  [x] Author  [ ] Keywords
Notes:       [x] 4 of 15 key slides have speaker notes (added 3)
Sources:     [x] All data slides have source lines (added 2)
Consistency: [x] Font sizes  [x] Colors  [x] Spacing

QA Status: ok

Anti-patterns (what NOT to change)

  • Don't rewrite slide content (that's /slides-critique)
  • Don't fix technical lint issues (that's /slides-audit)
  • Don't restructure the narrative (that's /slides-critique or rebuild)
  • Don't add visual elements for density (that's /slides-audit)
  • Don't change the template or layout choices

Error Handling

On any slides error, run uvx --from agent-slides slides docs method:render to verify the current contract.

Acceptance Criteria

  1. All structural slides present (title, disclaimer, end).
  2. Document metadata set.
  3. Speaker notes on at least executive summary and conclusion.
  4. Source lines on all data slides.
  5. Consistent font sizes and colors across the deck.
  6. qa.json reports "ok": true.
  7. Polish report delivered with positive findings and changes made.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.96%
按下载量换算89

Claude

29.5%
按下载量换算73

Cursor

18.99%
按下载量换算47

Gemini CLI

10.69%
按下载量换算26

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills