From all-skills
Guides Slidev setup, presentation planning, content strategy, brand extraction, interactive demos, syntax, code blocks, exports, and troubleshooting via skills and agents.
npx claudepluginhub vinnie357/claude-skills --plugin alliumThis skill uses the workspace's default tool permissions.
Entry point for Slidev development. Provides an overview and routes to focused skills.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Entry point for Slidev development. Provides an overview and routes to focused skills.
Activate when:
This plugin provides focused skills for specific Slidev topics:
Three agents compose into a pipeline for end-to-end presentation creation:
Each agent works independently or in sequence. The recommended pipeline:
content-strategist to define what the presentation needsbrand-discoverer if brand compliance is requiredslide-builder to construct the deck from both outputs# Create a new Slidev project
npm init slidev@latest
# Or start from an existing markdown file
npx slidev slides.md
---
theme: default
title: My Presentation
---
# Welcome
First slide content
---
# Second Slide
More content here
---
layout: center
---
# Centered Slide
This slide uses the center layout
my-presentation/
├── slides.md # Main slide content
├── package.json # Dependencies
├── components/ # Custom Vue components (auto-imported)
├── layouts/ # Custom layouts
├── pages/ # Additional slide files
├── public/ # Static assets
├── styles/ # Custom CSS/UnoCSS
└── snippets/ # External code snippets
slidev-theme-*)Global configuration goes in the first slide's frontmatter:
---
theme: default
title: My Talk
info: |
Description of the presentation
author: Your Name
download: true
exportFilename: my-talk
highlighter: shiki
lineNumbers: true
drawings:
persist: false
transition: slide-left
mdc: true
---
See templates/mise.toml for project task definitions.