Loading...
Loading...
This skill should be used when creating markdown-based presentations with expandable sections, timing guides, and speaker-friendly formatting. Use for team onboarding, technical deep-dives, and knowledge transfer sessions.
npx skill4agent add plinde/claude-plugins markdown-presentation# Presentation Title
## Subtitle or Context
**Duration:** X minutes
**Audience:** Target audience
**Date:** YYYY-MM-DD
---
## Agenda
1. Topic 1 (X min)
2. Topic 2 (X min)
3. Topic 3 (X min)
...
---
## 1. First Section
Content here...
---
## 2. Second Section
Content here...
---
## Questions?
### Contact
- Channel/email
- Resources
---
*Presentation created: YYYY-MM-DD*
*Built with [markdown-presentation@plinde/claude-plugins](https://github.com/plinde/claude-plugins/tree/main/markdown-presentation)*---## Section 1
Content...
---
## Section 2
Content...<details><details>
<summary><b>📋 Click to expand detailed info</b></summary>
Long content here...
- Bullet points
- Code blocks
- Tables
</details><b>📋 Title</b>## Agenda
1. Introduction (2 min)
2. Architecture Overview (5 min)
3. Demo (8 min)
4. Q&A (5 min)
**Total: 20 minutes**undefinedundefined┌ ┐ └ ┘─ │├ ┤ ┬ ┴ ┼▶ ▼ ◀ ▲ → ← ↑ ↓| Feature | Option A | Option B |
|---------|----------|----------|
| Speed | Fast | Slow |
| Cost | High | Low |## Quick Reference Card
### Key Commands
| Command | Purpose |
|---------|---------|
| `cmd1` | Does X |
| `cmd2` | Does Y |
### Important Links
- [Doc 1](url)
- [Doc 2](url)| Duration | Slides/Sections | Content Depth |
|---|---|---|
| 5 min | 3-5 | Overview only |
| 15 min | 6-10 | Key concepts + examples |
| 30 min | 10-15 | Deep dive with demos |
| 60 min | 15-25 | Comprehensive with exercises |
code presentation.md
# Use Ctrl+Shift+V (or Cmd+Shift+V) for previewmarp presentation.md -o presentation.pdf
marp presentation.md -o presentation.html| Use Case | Format | Reason |
|---|---|---|
| GitHub/GitLab viewing | Markdown | Native rendering |
| Browser presentations | HTML | Full CSS control |
| Complex diagrams | HTML | Precise alignment |
| Print/PDF export | Either | Marp for MD, browser for HTML |
| Slideshow mode | Markdown + Marp | Better tooling |
:root {
--bg-primary: #1a1b26;
--bg-secondary: #24283b;
--bg-tertiary: #1f2335;
--text-primary: #c0caf5;
--text-secondary: #a9b1d6;
--text-muted: #565f89;
--accent-blue: #7aa2f7;
--accent-teal: #73daca;
--accent-purple: #bb9af7;
--accent-amber: #e0af68;
--accent-green: #9ece6a;
--accent-coral: #f7768e;
--border-color: #3b4261;
}
body {
background-color: var(--bg-primary);
color: var(--text-primary);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
pre, code {
background-color: var(--bg-tertiary);
border: 1px solid var(--border-color);
}
h1, h2, h3 { color: var(--accent-blue); }
a { color: var(--accent-teal); }<div style="display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;">
<div style="border: 2px solid var(--accent-teal); border-radius: 8px;
padding: 15px; min-width: 200px; background: rgba(115,218,202,0.1);">
<strong style="color: var(--accent-teal);">Component A</strong>
<ul><li>Feature 1</li><li>Feature 2</li></ul>
</div>
<div style="border: 2px solid var(--accent-purple); border-radius: 8px;
padding: 15px; min-width: 200px; background: rgba(187,154,247,0.1);">
<strong style="color: var(--accent-purple);">Component B</strong>
<ul><li>Feature 1</li><li>Feature 2</li></ul>
</div>
</div><div style="display: flex; align-items: center; justify-content: center;
gap: 10px; flex-wrap: wrap; padding: 20px;">
<div style="background: var(--accent-blue); color: var(--bg-primary);
padding: 10px 20px; border-radius: 8px;">
<strong>Step 1</strong>
</div>
<span style="color: var(--accent-teal); font-size: 1.5em;">→</span>
<div style="background: var(--accent-purple); color: var(--bg-primary);
padding: 10px 20px; border-radius: 8px;">
<strong>Step 2</strong>
</div>
<span style="color: var(--accent-teal); font-size: 1.5em;">→</span>
<div style="background: var(--accent-green); color: var(--bg-primary);
padding: 10px 20px; border-radius: 8px;">
<strong>Step 3</strong>
</div>
</div><table style="width: 100%; border-collapse: collapse;">
<thead>
<tr style="background: var(--bg-secondary);">
<th style="padding: 12px; border: 1px solid var(--border-color);">Feature</th>
<th style="padding: 12px; border: 1px solid var(--border-color);">Option A</th>
<th style="padding: 12px; border: 1px solid var(--border-color);">Option B</th>
</tr>
</thead>
<tbody>
<tr>
<td style="padding: 12px; border: 1px solid var(--border-color);">Speed</td>
<td style="padding: 12px; border: 1px solid var(--border-color);
color: var(--accent-green);">Fast</td>
<td style="padding: 12px; border: 1px solid var(--border-color);
color: var(--accent-coral);">Slow</td>
</tr>
</tbody>
</table>/* Example: Multi-environment architecture */
--env-production: #73daca; /* teal - production */
--env-staging: #bb9af7; /* purple - staging */
--env-development: #e0af68; /* amber - development */<div style="border: 2px solid var(--env-production);
background: rgba(115,218,202,0.1);
border-radius: 8px; padding: 15px;">
Production Environment Content
</div># Service X Onboarding
## For New Team Members
**Duration:** 15 minutes
**Audience:** New engineers
---
## Agenda
1. What is Service X? (2 min)
2. Architecture (5 min)
3. Local Development (5 min)
4. Resources (3 min)
---
## 1. What is Service X?
Service X handles authentication for all internal tools.
**Key Facts:**
- Processes 10M requests/day
- 99.99% uptime SLA
- Deployed in 3 regions
---
## 2. Architecture
<details>
<summary><b>📋 Component Details</b></summary>
**Service X Components:**
- API Gateway (Kong)
- Auth Service (Go)
- Token Store (Redis)
- Audit Logger (Kafka → ES)
</details>
---
## 3. Local Development
```bash
# Clone and setup
git clone git@github.com:org/service-x.git
cd service-x
make setup
# Run locally
make run
# Run tests
make testlsof -i :8080
kill -9 <PID>make db-reset| Resource | Link |
|---|---|
| Docs | Wiki |
| Runbooks | Notion |
| Slack | #service-x |
## Self-Test
```bash
# Verify skill exists
ls -la ~/.claude/plugins/marketplaces/plinde-plugins/markdown-presentation/skills/markdown-presentation/SKILL.md
# Or if installed locally
ls -la ~/.claude/skills/markdown-presentation/SKILL.md