Create a new Slidev presentation on a topic
Generates a complete Slidev presentation with 8-15 slides, proper configuration, and topic-specific content.
/plugin marketplace add clearfunction/claude-skills/plugin install cf-devtools@cf-devtools[topic] e.g., 'React hooks' or 'our new API design'slidev/Create a new Slidev presentation about: $ARGUMENTS
Create linting configuration first - Before writing any slides, ensure .markdownlint.json exists in the target directory:
{
"MD003": false,
"MD024": false,
"MD025": false,
"MD026": false,
"MD033": false,
"MD041": false
}
This prevents linters from corrupting Slidev's multi-frontmatter syntax.
Determine the presentation type based on the topic:
Generate a complete slides.md file with:
v-clicks) for key pointsUse appropriate layouts:
cover for title slidesection for major topic divisionstwo-cols or two-cols-header for comparisonsfact for key statistics or highlightscenter for impactful statementsSave the file as slides.md in the current directory (or a subdirectory if specified)
Provide setup instructions:
npm init slidev@latest # If not installed
npx slidev # Start dev server
Reference the slidev-presentations skill for syntax details.