with one click
output-pptx
Convert a slide outline (JSON or markdown with
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Convert a slide outline (JSON or markdown with
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Cockpit-manager. VERPLICHT te activeren bij elke gebruiker-instructie in de cockpit die een worker, blog, post, deliverable, spawn, parallel-run, of "voor klant X" vraagt. Trigger-keywords: blog, post, artikel, schrijf, maak, spawn, launch, parallel, beide, voor klant, voor [naam], demo, vergelijk, marktonderzoek, factuur, voorstel, deck, brief, mail, rapport. ALTIJD eerst deze skill activeren — niet rechtstreeks Bash of tmux gebruiken om te spawnen.
Poll the active workers and surface their completion. Primary mechanism: file-watch on ~/.claude-launcher/output/ for <task-id>.done marker files. Designed to run every 30s via /loop 30s /cockpit-monitor, or manually after spawning workers.
Quality gate editor for blog posts. Reviews a completed blog post against brand-voice, SEO compliance, length, frontmatter integrity, source verification, and tone. Produces a structured verdict: PASS, PASS WITH NOTES, or FAIL. Triggers on: "check blog", "review blog", "blog quality check", "blog editor", "qa blog", "is deze blog klaar", "controleer blog". Use this skill AFTER blog-writer finishes and BEFORE publishing.
Route a natural-language user instruction to the right workspace + skill, rewrite the prompt for clarity, and spawn a worker via cockpit launch. Trigger on EVERY user instruction in the cockpit that asks for content or a deliverable.
Convert markdown content into a clean Word (.docx) document with basic styling. Use this skill when the user asks for a Word document, .docx export, factuur, contract, NDA, proposal, brief, or wants to convert generated markdown to docx. Triggers on: "docx", "Word", "factuur", "contract", "NDA", "voorstel", "brief", "rapport als Word".
Write SEO-optimized blog posts in markdown with frontmatter. Use this skill whenever the user wants to write a blog, create a blog post, draft an article, or mentions "blog", "artikel", "post schrijven", "pillar page", or "supporting article". This skill handles the full blog writing process: research, outline, writing, frontmatter, and image placeholders.
| name | output-pptx |
| description | Convert a slide outline (JSON or markdown with --- separators) into a PowerPoint (.pptx) deck. Use this skill when the user asks for a pitch deck, presentation, slides, or .pptx export. Triggers on: "pptx", "PowerPoint", "deck", "slides", "presentatie", "pitch deck". |
Converteer een slide-outline naar een PowerPoint-deck met basis-layouts: titel-slide, content-slide met bullets, sectie-headers. Gebruikt python-pptx (MIT license).
Deze skill is cross-cutting: hij wordt aangeroepen vanuit elke workspace die een PowerPoint-deliverable nodig heeft. De skill genereert geen inhoud — die wordt door de calling-skill in een outline geleverd.
python3 scripts/outline2pptx.py <input.md> <output.pptx>
Een markdown-bestand waarin elke slide gescheiden wordt door ---:
# Pitch deck: AI-impact op MKB-marketing
Auteur: Voornaam Achternaam
Datum: 2026-05-20
---
# Probleem
- Marketeers spenderen 60% van hun tijd aan herhalend werk
- Geen overzicht over parallel-AI-tabs
- Brand-voice consistentie kost mentaal werk
---
# Oplossing
- Eén centrale cockpit
- Vooraf geconfigureerde workspaces
- Natuurlijke instructies, directe oplevering
---
# Volgende stap
Plan een korte demo via [contact].
Regels:
# Titel + optionele meta-regels)--- start een nieuwe slide# Titel op een content-slide wordt slide-titel- ...) worden bullet-content$CLAUDE_LAUNCHER_HOME/output/<basename>.outline.mdpython3 ~/.claude-launcher/skills/output/pptx/scripts/outline2pptx.py \
"$CLAUDE_LAUNCHER_HOME/output/<basename>.outline.md" \
"$CLAUDE_LAUNCHER_HOME/output/<basename>.pptx"
cockpit msg deliver $CLAUDE_LAUNCHER_HOME/output/<basename>.pptx --format pptx --bytes
| Slide-type | Detectie | Layout |
|---|---|---|
| Title | Eerste slide met alleen # Titel + meta | Centered title + subtitle |
| Section header | # Titel zonder bullets | Section header layout |
| Content | # Titel + bullets | Title + content bullets |
| Closing | Laatste slide | Section header layout |
[image: pad] blijft als tekst)Voor v0.5+ overwegen, niet voor de demo.
python-pptx (pip3 install python-pptx)install.sh controleert beide.
Default: $CLAUDE_LAUNCHER_HOME/output/<basename>.pptx. Anders het pad dat als tweede argument is meegegeven.
python-pptx