← Corpus / dididecks-ai / agent-skill
Slide Variant Template
- Path
- agent-skills/deck-iteration-workflow/templates/slide-variant.md
- Authors
- Michael Staton
- Tags
- Template · Slide · Variant
Slide Variant Template
Template for creating slide variants using the deck iteration workflow.
Base Slide Structure
---
// Frontmatter properties for this slide variant
slug: "slide-slug"
title: "Slide Title"
---
<!-- Slide Content -->
<div class="relative w-full h-full flex flex-col items-center justify-center p-8 bg-white">
<h1 class="text-4xl font-bold text-gray-900 mb-6">Slide Title</h1>
<div class="text-lg text-gray-700">
<!-- Slide content goes here -->
</div>
</div>
Variant-Specific Considerations
When creating variants:
- Maintain structural consistency with base slide
- Document design decisions in comments
- Keep iteration focused on the core message
- Test accessibility of variant designs
- Note key differences from base in frontmatter
Example Usage
---
slug: "overview"
title: "Overview Slide"
variant: "v1"
---
<!-- Implementation details would go here -->
Versioning Guidelines
Each variant gets its own semantic version:
0.0.0.1- Initial draft0.0.0.2- Iteration based on feedback0.1.0.0- First major version after initial iteration