← 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:

  1. Maintain structural consistency with base slide
  2. Document design decisions in comments
  3. Keep iteration focused on the core message
  4. Test accessibility of variant designs
  5. 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 draft
  • 0.0.0.2 - Iteration based on feedback
  • 0.1.0.0 - First major version after initial iteration