Generate a PowerPoint deck from a YAML spec without leaving your machine
Let a small local LLM author slide content while a CLI handles layout and theming
Build branded decks using one of seven built-in themes or a custom theme dir
Render long bullet or table content with automatic pagination across continuation slides
Needs Node and npm install, then a single CLI call produces a pptx.
yamldeck is a command-line tool that turns a short YAML file into a real PowerPoint deck. You write the slide content in a simple structured format, run the tool, and get back a .pptx file you can open and edit in PowerPoint. The README describes the tool as local-first, meaning the whole conversion happens on your own machine. The project is built around a specific division of labor. A small AI model running locally writes the YAML spec, with one entry per slide, and yamldeck does the heavy lifting of validation, layout, theme rendering, and producing the binary PowerPoint file. The README points out that this matters for sensitive material: the small local model can handle the slide text and any private data, while large external design models only contribute themes that can be reused offline. The YAML format is short. A deck has a title, a chosen theme, and a list of slides. Each slide picks a layout, such as cover, bullets, metric_row, comparison, chart, table, timeline, or image, and fills in the matching fields. You can also declare resources at the top, such as an image path, and reference them by key from any slide. The CLI embeds the image bytes into the .pptx itself, so the final file does not depend on the original paths. Several discovery commands help an AI agent or a human pick the right layout and theme. You can list themes, search for layouts by keyword, or get a minimal description of a single layout in a compact key-value form designed to fit a low-token context window. Output can be tabular text, minimal key-value lines, or JSON. Seven built-in themes ship with the tool, including clean, editorial, executive, forest, midnight, minimal, and playful, and external themes can be loaded from a directory. One feature called auto pagination splits oversized content across continuation slides automatically. Defaults include six bullets per slide, four metrics per row, eight table rows per slide, and five timeline events per slide. Themes can override these splits. The repository ships example decks and a script to build them all at once.
Generated 2026-05-22 · Model: sonnet-4-6 · Verify against the repo before relying on details.