Guide for Slidev markdown-based presentation framework. Use when creating slide decks, setting up Slidev projects, or needing an overview of Slidev development workflows.
Guides Slidev presentation development with markdown syntax, code features, and export options.
npx claudepluginhub vinnie357/claude-skillsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
templates/mise.tomlEntry point for Slidev development. Provides an overview and routes to focused skills.
Activate when:
This plugin provides focused skills for specific Slidev topics:
# 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.
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.