원클릭으로
presentations
Subagent for generating PPTX presentations via Claude Code CLI + official pptx skill. Trigger: "presentation", "slides", "deck".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Subagent for generating PPTX presentations via Claude Code CLI + official pptx skill. Trigger: "presentation", "slides", "deck".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Automated research subagent. Accepts a natural-language query, gathers sources from the knowledge graph (KG + BM25 + E5 + Web + Notion), performs SGR synthesis, generates validated knowledge cards, and writes them to the graph. Explicit trigger: "autosearch" — activates the subagent without confirmation. Soft triggers (require confirmation): "research", "analyze", "compare", "deep dive", "review".
SGR-guided knowledge graph node creation with canonical schema validation. Use when creating new nodes, updating existing nodes, or auditing graph health. Enforces closed vocabularies for node types, clusters, and relation types to prevent taxonomy drift. Triggers on: "create node", "add to graph", "new insight", "graph audit", "validate graph", "taxonomy check".
SGR-enhanced pool of cheap specialized subagents based on sgr-agent-core. Uses Schema-Guided Reasoning to boost mini/Flash models to near-Sonnet quality. Trigger: "sgr", "sgr pool", "cheap agent", "mini agent", "sgr-researcher", "sgr-verifier", "sgr-summarizer".
Safe OpenClaw gateway configuration changes with validation and auto-rollback
Design-before-code protocol. Routes new features, refactors, and complex changes through the appropriate design artifact BEFORE implementation begins. Use when the user asks to design a feature, write an RFC, think through architecture, plan a new skill, structure a large refactor, or define the implementation approach before coding. Triggers: "design", "RFC", "architecture", "new skill", "new feature", "large change", "need a plan", "design-architect", "tech spec", "ADR".
Multi-subagent framework. Allows the main agent to spawn specialized Claude Code subagents with specific skills. Each subagent runs autonomously (full agentic loop) and returns a structured result. Engine: Claude Code CLI (claude --bare -p). Trigger: "subagent", "spawn agent".
| name | presentations |
| description | Subagent for generating PPTX presentations via Claude Code CLI + official pptx skill. Trigger: "presentation", "slides", "deck". |
When the user asks to create a presentation, slides, or deck.
from skills.presentations.api import PresentationAgent
agent = PresentationAgent()
result = agent.create(
topic="AI in Medicine",
audience="doctors",
slide_count=12,
style="professional", # professional, creative, minimal, academic
language="uk",
output_dir="/tmp/presentations",
)
print(result.summary())
# result.pptx_path — path to the .pptx file
# result.slide_count — number of slides
| 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 |
/Users/docua/Skills/Anthropic skills/skills/pptx — official pptx skill (PptxGenJS, editing, QA)Субагент для генерації PPTX презентацій через Claude Code CLI та офіційний pptx skill. Підтримує різні стилі, мови контенту та налаштування кількості слайдів.