From e38a95aa5cfd908db89b5c41190956ae50b63c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Kope=C4=87?= Date: Thu, 16 Jul 2026 17:59:53 +0200 Subject: [PATCH] Fix invalid YAML frontmatter in prepare-presentation SKILL.md The description contained an unescaped colon+space, which YAML parses as a nested mapping key. Switched to a folded block scalar (>), matching the convention already used by ghost-writer's SKILL.md. --- plugins/common/skills/prepare-presentation/SKILL.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/common/skills/prepare-presentation/SKILL.md b/plugins/common/skills/prepare-presentation/SKILL.md index 3db6920..72dbbde 100644 --- a/plugins/common/skills/prepare-presentation/SKILL.md +++ b/plugins/common/skills/prepare-presentation/SKILL.md @@ -1,6 +1,7 @@ --- name: prepare-presentation -description: Use this skill whenever a user asks to prepare, build, put together, or create a presentation, pitch deck, slide deck, or board of slides from scratch or from raw material. Trigger on requests like "help me build a presentation about X", "I need a deck for the board meeting", "can you put together slides on Y", "make me a presentation", "turn this into a deck", or mentions of Miro boards, Google Slides, PowerPoint decks, or slide decks in a planning context — even if the user hasn't gathered their source material yet or named a tool. This skill runs BEFORE any slide-building tool: it gathers source material (links, text, documents, a folder, or an interview), clarifies purpose/audience/focus, and agrees a plan with the user before anything gets built. Do not use it when the user already has finished, ready-to-build content and just wants a file produced (e.g. "turn this outline into a pptx") — in that case go straight to the matching build skill (pptx, docx, etc). +description: > + Use this skill whenever a user asks to prepare, build, put together, or create a presentation, pitch deck, slide deck, or board of slides from scratch or from raw material. Trigger on requests like "help me build a presentation about X", "I need a deck for the board meeting", "can you put together slides on Y", "make me a presentation", "turn this into a deck", or mentions of Miro boards, Google Slides, PowerPoint decks, or slide decks in a planning context — even if the user hasn't gathered their source material yet or named a tool. This skill runs BEFORE any slide-building tool: it gathers source material (links, text, documents, a folder, or an interview), clarifies purpose/audience/focus, and agrees a plan with the user before anything gets built. Do not use it when the user already has finished, ready-to-build content and just wants a file produced (e.g. "turn this outline into a pptx") — in that case go straight to the matching build skill (pptx, docx, etc). --- # Prepare presentation skill