| name | presentations |
| description | Subagent for generating PPTX presentations via Claude Code CLI + official pptx skill. Trigger: "presentation", "slides", "deck".
|
Presentations — PPTX Subagent
When to Use
When the user asks to create a presentation, slides, or deck.
API
from skills.presentations.api import PresentationAgent
agent = PresentationAgent()
result = agent.create(
topic="AI in Medicine",
audience="doctors",
slide_count=12,
style="professional",
language="uk",
output_dir="/tmp/presentations",
)
print(result.summary())
Parameters
| Parameter | Default | Description |
|---|
topic | required | Presentation topic |
audience | "general" | Target audience |
slide_count | 10 | Number of slides |
style | "professional" | Visual style |
language | "uk" | Content language |
output_dir | "/tmp/presentations" | Directory for .pptx |
model | from registry | Claude model |
max_budget_usd | from registry | Spending limit |
Subagent Skills
/Users/docua/Skills/Anthropic skills/skills/pptx — official pptx skill (PptxGenJS, editing, QA)
🇺🇦 Українською
Субагент для генерації PPTX презентацій через Claude Code CLI та офіційний pptx skill. Підтримує різні стилі, мови контенту та налаштування кількості слайдів.