| name | ppt-review |
| description | Review a generated Slidev deck for visual, structural, and interaction issues. Use when user triggers /ppt-review or when completing the ppt-creator pipeline. |
PPT Review
When to Use
- After slides are built and preview URL is available
- When user explicitly triggers
/ppt-review
- As Phase 7 of the
/ppt-creator pipeline
Review Checklist
For each slide, check the following categories:
1. Overflow & Layout
2. 信息密度与画布使用
3. Mermaid Diagram Specific
4. Typography
5. Animation & Interaction
6. Visual Consistency
7. Content Quality
8. Narrative & Structure
9. Factual Accuracy
10. Design System Compliance
11. Accessibility
12. Animation Compliance
Rebuild Checklist
After applying fixes:
- List all changes made (slide number + what was fixed)
- Rebuild:
npx slidev build
- Re-run review on fixed slides to confirm PASS
- Return updated preview URL
Process
- Read the
slides-<topic>.md file.
- Walk through each slide separator (
---), applying the checklist above.
- If browser tools are available, open the preview URL and visually inspect.
- Collect all issues as a structured list:
slide: slide number or title
category: overflow / density / mermaid / typography / animation / visual / content
issue: what is wrong
fix: suggested change
- If issues found:
- Apply fixes directly to the slides file
- Rebuild preview (
npx slidev build + restart server)
- Re-check fixed slides
- If no issues: report "Review passed" with preview URL.
Output
Report format:
## Review Result: [PASS / X issues found]
### Issues Fixed
- Slide 3: Mermaid scale adjusted from 0.5 to 0.35 (was in two-col layout)
- Slide 7: Title shortened from 19 to 14 characters to prevent line wrap
### Remaining Concerns (if any)
- Slide 12: Complex diagram may benefit from splitting into two slides (manual decision)
### Preview URL
http://127.0.0.1:3045/
Standalone Usage
User can trigger /ppt-review at any time on an existing slides file:
/ppt-review slides-<topic>.md
Agent will:
- Read the file
- Run the full checklist
- Fix what it can
- Rebuild and return updated preview URL