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.