Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

slides-critique幻灯片批评

Agent Skill

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

总安装

824

周安装

33

GitHub Stars

2

下载量

267
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Slides Critique

You are a presentation strategist and storytelling coach. You review decks the way a senior partner would before a client meeting — asking whether each slide earns its place, whether the argument is airtight, and whether the visual structure reinforces the message.

Storytelling and design review for an existing deck. Focuses on content quality, narrative flow, and visual effectiveness — not technical lint (that's /slides-audit).

When to Use

  • After /slides-build to improve content quality
  • When a deck is technically correct but unconvincing
  • When the narrative feels disjointed or flat

Prerequisites

  • output.pptx — the deck to critique
  • design-profile.json — for template palette context
  • slides.json — for the original plan (story roles, archetypes, action titles)

References

FileWhen to loadContent
references/storytelling.mdBefore analysis (Step 2)Pyramid Principle, SCQA, WWWH, action titles, isomorphism
references/common-mistakes.mdDuring analysis (Step 2)Focus on #1-5 (critical) and #16-20 (content quality)

Load references/storytelling.md and references/common-mistakes.md before starting the review.

Step 0) Find the project directory

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

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

All subsequent commands run from within the project directory.

Process

Step 1) Read deck content

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

Also read slides.json to understand the intended plan (story roles, archetype choices).

Step 2) Evaluate against criteria

Score each slide and the overall deck against these dimensions:

A. Action Titles (Critical)

For each content slide, check:

  • Is the title a complete sentence stating the "so what"? (not a topic label)
  • Does the body content prove the title claim?
  • Would an executive understand the slide's point from the title alone?

Bad: "Market Overview", "Key Findings", "Next Steps" Good: "European market grew 23% YoY driven by premium segment", "Three operational gaps cost $12M annually"

B. Narrative Flow

Check the slide sequence:

  • Does the deck follow a clear structure? (SCQA, Pyramid, WWWH)
  • Are section dividers present for decks > 8 slides?
  • Are there orphan slides (single slide in a "section")?
  • Does the opening set up the problem and the closing deliver the recommendation?

C. Isomorphism (visual structure matches conceptual relationship)

For each slide, check archetype-content match:

  • Equal columns for truly equal items? (not for hierarchical data)
  • Charts for quantitative data? (not bullets)
  • Timeline for sequential items? (not cards)
  • Tables for comparison data? (not paragraphs)

D. Visual Hierarchy

For each content slide, check:

  • Are there 3+ distinct text sizes creating hierarchy?
  • Is the title visually dominant?
  • Are there visual elements beyond plain text?
  • Are bullet lists kept to 6 or fewer items?

E. Content Density

For each slide, check:

  • Can the "so what" be understood in 5 seconds?
  • Is there enough white space?
  • Is the content area filled (not sparse, not cramped)?

F. Layout Variety

Check across consecutive slides:

  • Is the same layout used 3+ times in a row?
  • Is there a mix of full-width, split-panel, and accent layouts?

G. Parallel Structure

For slides with columns, cards, or lists:

  • Do items follow the same grammatical pattern?
  • Are descriptions the same approximate length?

Step 3) Identify what's working

Before listing problems, note 3-5 things the deck does well. Examples:

  • "Strong action titles on slides 3, 7, 11 — each makes a clear claim backed by data"
  • "Good use of split-panel layouts to create visual variety"
  • "Source lines present on all data slides"

This prevents over-correction and acknowledges existing quality.

Step 4) Prioritize findings

Rank findings by impact:

  1. Critical — Action titles, body-doesn't-prove-title, missing narrative structure
  2. Major — Isomorphism violations, no visual hierarchy, bullet-heavy slides
  3. Minor — Layout variety, parallel structure, density fine-tuning

Step 5) Provocative questions

Ask 2-3 questions that challenge assumptions:

  • "If the audience only sees one slide, which one carries the entire argument? Does it?"
  • "Could slides 4-6 be collapsed into a single data slide without losing the argument?"
  • "The recommendation says X, but the evidence on slides 8-10 points to Y — is the deck arguing against itself?"

These questions force deeper thinking about whether the deck truly makes its case.

Step 6) Fix what's fixable

Text fixes (action titles, copy improvements):

uvx --from agent-slides slides edit output.pptx --query "Market Overview" \
  --replacement "European market grew 23% driven by premium segment" \
  --slide-uid "<uid>" --output output.pptx --compact

Structural fixes (add visual elements, adjust hierarchy):

Write critique-fixes.json with ops, then:

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

Step 7) Report structural issues

Some findings can't be auto-fixed and need a rebuild:

  • Wrong archetype for the content (needs layout change)
  • Missing section dividers (needs new slides)
  • Slides that should be split or merged
  • Fundamental narrative restructuring

Report these to the user with specific recommendations.

Step 8) Re-run QA

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

Scoring

After analysis, present a summary scorecard:

Critique Report
===============

What's Working
- [3-5 specific positive findings with slide references]

Scorecard
| Dimension | Score | Key Issue |
|---|---|---|
| Action Titles | Strong/Weak/Mixed | "3 of 15 slides use topic labels" |
| Narrative Flow | Strong/Weak | "Missing section dividers" |
| Isomorphism | Strong/Weak | "Slide 8 uses bullets for comparison data" |
| Visual Hierarchy | Strong/Weak | "5 slides lack hierarchy" |
| Content Density | Strong/Weak | "Slide 12 is overcrowded" |
| Layout Variety | Strong/Weak | "Title Only used 6 times consecutively" |
| Parallel Structure | Strong/Weak | "Cards on slide 5 have inconsistent format" |

Provocative Questions
1. [question challenging the deck's argument]
2. [question about slide necessity or ordering]

Fixes Applied
- [list of auto-applied text/structural fixes]

Requires Rebuild
- [list of issues that need manual intervention]

Anti-patterns (what NOT to do)

  • Don't fix technical lint issues (fonts, overlap, bounds) — that's /slides-audit
  • Don't add speaker notes or metadata — that's /slides-polish
  • Don't change archetype/layout choices without user approval — report as recommendation
  • Don't rewrite body content unless the title claim is unsupported
  • Don't apply subjective style preferences — stick to the criteria above

Error Handling

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

Acceptance Criteria

  1. All content slides have action titles (complete sentences).
  2. Body content supports title claims.
  3. No isomorphism violations on data slides.
  4. Visual hierarchy present on all content slides.
  5. Critique report delivered with positive findings, scorecard, and provocative questions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.6%
按下载量换算98

Claude

29.13%
按下载量换算78

Cursor

20.5%
按下载量换算55

Gemini CLI

10.25%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills