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.