Claude Code Skill
StellarDeck ships a Claude Code skill that turns a source text — a blog post, talk transcript, tweet thread, meeting notes — into a StellarDeck presentation.
The skill is agent-native: it understands the Deckset-compatible markdown format, knows when autoflow handles a layout, picks themes and schemes, validates the result via the CLI, and scores the deck against benchmarks from 331 real presentations. It’s focused on one thing — generating valid .md files from real content. Exporting, embedding, and running the desktop app are handled by the CLI and the docs.
Install
Section titled “Install”The skill lives in the repository at .claude/skills/stellardeck/SKILL.md.
Clone the repo and Claude Code picks it up automatically when you work inside the project:
git clone https://github.com/peas/stellardeck.gitcd stellardeckclaude # inside the repo, the stellardeck skill is availableTo use the skill in any other project, copy the file into your own .claude/skills/ directory:
mkdir -p /your/project/.claude/skills/stellardeckcp stellardeck/.claude/skills/stellardeck/SKILL.md \ /your/project/.claude/skills/stellardeck/SKILL.mdOr install it globally under ~/.claude/skills/stellardeck/SKILL.md so it’s available in every session.
What it does
Section titled “What it does”The skill transforms a complete source text into Deckset markdown. It requires real content to work from — a draft you already have, a transcript, an article, a thread. It will refuse a request like “create a presentation about X” without a source, because the alternative is inventing facts.
When given a source text, the skill:
- Reads the whole thing before generating anything.
- Identifies the spine: the hook, 3-5 main points, the ending.
- Outlines the deck: 15-30 slides (Paulo’s median is 18).
- Drafts markdown, preserving the author’s original words. Edits allowed: filler conjunctions, spelling, grammar, excessive abbreviations. Edits not allowed: paraphrasing, adding examples, filling gaps with new claims.
- Picks a theme and color scheme based on content tone.
- Validates the output via
npm run export -- --validate deck.mdand fixes overflow, missing images, theme mismatches. - Scores the result 0-100 across four dimensions and suggests improvements to both the deck and the source text.
The four principles
Section titled “The four principles”Preserve the author’s words
Section titled “Preserve the author’s words”Slide text is a recognizable fragment of the original. The skill doesn’t paraphrase; it restructures. The author’s voice stays intact.
One idea per slide
Section titled “One idea per slide”Long paragraphs become multiple slides. Median target: 9 words per slide (matching real decks). A single dense sentence with three distinct ideas becomes three slides.
Autoflow handles layout
Section titled “Autoflow handles layout”Default autoflow: true. The skill relies on autoflow to pick layouts from content shape (Z-pattern, split, diagonal, divider) instead of adding explicit directives. Directives like ![right], :::columns, [.background-color] are used only when the content genuinely needs them.
Balance visuals
Section titled “Balance visuals”Target ~50% image density — matches Paulo’s real decks. When the source mentions a person, tool, or concept with an obvious image, the skill suggests  or . It doesn’t invent stock photo references.
Scoring
Section titled “Scoring”At the end of generation, the skill prints a 0-100 score across four dimensions (each 0-25):
- Conciseness — median words per slide, penalty for slides over 50 words
- Visual balance — image density 30-60% is ideal,
![right]:![left]ratio - Narrative structure — title slide, closing slide, mix of content types
- Autoflow readiness — no manual directives,
#[fit]on 20-40% of slides
The feedback is split into two sections. “To improve the DECK” lists slide-level fixes (add an image, split a dense slide, add a closer). “To improve the SOURCE TEXT” suggests changes the author can make to the original text so the next generation scores higher:
- “The section about market size (slides 5-7) is dense prose. Splitting it into three short observations in your text would let autoflow do more with it.”
- “Your text has no visual references. Mentioning specific tools, people, or charts by name would give the skill something to turn into images.”
- “The text ends mid-argument. A concluding sentence would become a natural closing slide.”
This lets you iterate on what you own — your text — instead of only patching the output.
Example
Section titled “Example”Source text (an excerpt from a blog post):
Na minha visão, nos próximos anos vamos ver uma explosão de desenvolvedoresque não vieram da formação tradicional. Gente de marketing, de produto, dedesign, todos usando ferramentas de IA para criar software.What the skill produces:
---
Nos próximos anos vamos ver uma explosãode desenvolvedores fora da formação tradicional
---
Gente de marketing, de produto, de design
Todos usando IA para criar softwareThe author’s words are preserved. “Na minha visão” (filler) is removed. The dense paragraph becomes two slides, each with one idea. Autoflow will apply #[fit] to the first (statement pattern) and [.alternating-colors: true] to the second (three short lines).
Use the skill
Section titled “Use the skill”Inside any project with the skill installed, ask Claude Code:
“I have a blog post draft at
draft.md. Turn it into a StellarDeck deck.”
Or pipe a source directly:
“Read this Twitter thread at
thread.txtand generate a conference deck from it using the stellardeck skill.”
The skill will refuse if the source isn’t substantial enough, and will tell you what’s missing if the score is low.
Related
Section titled “Related”- Format spec — full 66-feature Deckset syntax reference
- Autoflow — how the layout inference rules work
- Themes & colors — the 10 themes the skill picks from
- CLI — the
--validate,--list-themes,--list-schemescommands the skill uses