add-slide
Add new slides with various layouts to a Slidev presentation.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Add new slides with various layouts to a Slidev presentation.
التثبيت باستخدام 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.
Build a static SPA or export a Slidev presentation to PDF.
Initialize a new Slidev project with slides.md and configuration.
| name | add-slide |
| description | Add new slides with various layouts to a Slidev presentation. |
| license | MIT |
| compatibility | Requires Slidev project with slides.md. |
| metadata | {"author":"user","version":"1.0","generatedBy":"copilot"} |
Description: Add new slides to an existing Slidev presentation, supporting multiple layouts and markdown content.
slides.md file in your Slidev project.slides.md.pnpm dev or your Slidev dev server.---
# Slide Title
Regular content with markdown support.
- Bullet points
- **Bold text**
- `inline code`
---
layout: center
---
# Centered Title
This content is vertically and horizontally centered.
---
layout: two-cols
---
::left::
- Left column content
::right::
- Right column content
To showcase the contents of a directory (such as generated specs), use a code block with the sh language and format the output as if from the tree command. This is ideal for technical audiences and PDF exports.
$ tree specs/ changes/
specs/
├── cpp_specifics_spec.md
├── header_interfaces_spec.md
├── json_rpc_handling_spec.md
├── transport_layer_spec.md
├── transport_recommendations_spec.md
changes/
├── archive/
└── waffle-wpebrowser-extension/
slides.md file (e.g., presentations/my-slides/slides.md).presentations/openspec-with-copliot-experience/slides.md.presentations/transport-slides/slides.md./slidevjs/slidev for more layouts and options.two-cols layout in Slidev does not support rendering code blocks (including mermaid diagrams) or HTML tags inside the ::left:: and ::right:: slots. Only plain markdown and text are reliably rendered in columns.