init-slidedev-project
星标0
分支3
更新时间2026年3月27日 16:11
Initialize a new Slidev project with slides.md and configuration.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Initialize a new Slidev project with slides.md and configuration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyze code-to-spec coverage in an Openspec project and generate a compliance score and report.
Update existing Openspec spec files to match the standard spec template format. Ensures consistency and completeness across all specs in a project.
Add Mermaid diagrams to a Slidev presentation slide.
Add new slides with various layouts to a Slidev presentation.
Build a static SPA or export a Slidev presentation to PDF.
| name | init-slidedev-project |
| description | Initialize a new Slidev project with slides.md and configuration. |
| license | MIT |
| compatibility | Requires Slidev, pnpm, and project template. |
| metadata | {"author":"user","version":"1.0","generatedBy":"copilot"} |
Description: Initialize a new Slidev presentation project from scratch, including starter slides and configuration.
context7 for the latest Slidev configuration options using /slidevjs/slidev._project_template_ to a new project directory (e.g., my-new-presentation).
cp -r _project_template_ my-new-presentation
slides.md in the new directory with starter content (see below for example).pnpm install in the new project directory to install dependencies.pnpm dev to start the development server and preview the presentation.package.json, and update the theme field in slides.md frontmatter.---
theme: default
title: My Presentation
info: |
A presentation created with Slidev
highlighter: shiki
transition: slide-left
mdc: true
---
# Welcome to Slidev
Presentation slides for developers
---
# What is Slidev?
Slidev is a slides maker and presenter designed for developers.
- 📝 **Markdown-based** - focus on content
- 🎨 **Themable** - themes can be shared and reused
- 🧑💻 **Developer Friendly** - code highlighting, live coding
- 🤹 **Interactive** - embed Vue components
- 🎥 **Recording** - built-in recording and camera view
---
layout: center
---
# Thank You!
[Documentation](https://sli.dev) · [GitHub](https://github.com/slidevjs/slidev)
pnpm for all dependency management and commands.slides.md and package.json exist after setup.