A centralized repository for storing and managing presentation slides for build reviews, planning sessions, and technical discussions.
This repository serves as the single source of truth for all build-related presentations, ensuring easy access, version control, and collaborative editing of slide decks.
.
├── README.md
├── YYYY-MM-DD-topic/ # Date-prefixed folder for each presentation
│ ├── slides.pdf # Final exported slides (PDF format)
│ ├── slides.pptx # Editable source file (optional)
│ ├── assets/ # Images, diagrams, and supporting files
│ └── notes.md # Speaker notes or additional context
└── templates/ # Reusable slide templates
├── build-review-template.pptx
└── planning-template.pptx
Folders should follow the pattern: YYYY-MM-DD-<topic>
Examples:
2026-04-26-q2-build-review/2026-05-15-performance-optimization/
| Format | Purpose |
|---|---|
.pdf |
Final version for distribution and archiving |
.pptx |
Editable source (include if future edits are likely) |
.md |
Speaker notes, summaries, or supplementary documentation |
- Create a new folder for each presentation using the naming convention
- Export to PDF before committing to ensure consistent rendering
- Include speaker notes in
notes.mdfor context and key talking points - Compress images before adding to keep repository size manageable
# Create a new presentation folder
mkdir YYYY-MM-DD-your-topic
cd YYYY-MM-DD-your-topic
# Add your slides and notes
cp ../templates/build-review-template.pptx slides.pptx
# ... edit your slides ...
# Export to PDF and commit
git add .
git commit -m "Add slides for YYYY-MM-DD build review"
git push- Ensure all slides are properly named and organized
- Include a brief summary in the folder's
notes.md - Keep individual files under 50MB when possible
For questions or template requests, please open an issue or contact the build team.