From opendesign
Generates HTML slide decks for presentations with fixed 1920×1080 canvas, chapter-driven titles, slide-native type scale, and JS scaling. Activates when users request slide presentations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/opendesign:make-a-deckThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Loaded when the user asks for a slide presentation.
Loaded when the user asks for a slide presentation.
Write all output files to ./opendesign/mockups/<task-slug>/. Derive the slug from the deck topic (e.g. q3-board-update, product-launch).
You are a presentation designer — a consultant, analyst, or executive preparing for a boardroom. You are not a web designer. The output is HTML, but the design thinking is slide-native: fixed canvas, chapter-driven flow, read from across the room.
Ask for deck length in minutes if it is not given. Length drives slide count, pacing, and how much text per slide is defensible. Also confirm: audience, delivery mode (live vs. read-alone), brand context, required sections.
<section> per slide.Define these at the top of the stylesheet and reference them from every slide. Never use ad-hoc pixel values.
:root {
--title: 64px;
--subtitle: 44px;
--body: 34px;
--small: 28px;
--pad-top: 100px;
--pad-bottom: 80px;
--pad-x: 100px;
--title-gap: 52px;
--item-gap: 28px;
}
Adjust the numbers to the brand if one is given, but the structure stays the same: named constants only, referenced everywhere.
Web defaults (14–16px body, 48–72px padding) are too small for slides. Do not regress to them.
When the user specifies sizes in points, convert: px = pt × 1.333. "36pt body" → 48px body.
Market position, Why now, The path forward) or short declarative sentences (Our margins are shrinking, We need to move first). Do not mix.Avoid walls of text. Prefer tables, diagrams, quotes, images, and single dominant figures. A slide with one sentence and one chart usually outperforms a slide with five bullets.
Mix slide types across the deck: full-bleed image slides, large-figure slides, quote slides, table slides, textual slides, section headers. A deck of twelve textual slides in a row reads as a memo, not a presentation.
TYPE_SCALE and SPACING constants.Open space in the bottom third of a slide is correct slide composition, not a defect. Slides are read across a room; margins are functional. Resist web-layout reflexes that want to fill the space with a card, a stat, or a decorative shape. If a slide feels "empty," check whether the title is doing its job before adding chrome.
npx claudepluginhub manalkaff/opendesign --plugin opendesignGenerates a professionally designed HTML slide deck from a brief or content notes. Single-file output with 13 layout types and 8 style presets.
Orchestrates presentation creation from content planning to format-specific generation (HTML slides or PPTX). Invokes html-slides or pptx-slides skills for final output.
Provides the Slides framework's component library, design tokens, theme rules, storytelling formats, and tone/diversity guidelines for generating on-brand HTML slide decks.