Talk Stage 6: Revision
Produces revision sheets usable during and after the talk. Quick navigation by act, master concept table with URLs to share, Q&A cheat-sheet, and glossary.
When to Use This Skill
- After Stage 5 (Script), which provides pitch + slides
- Before a talk where Q&A is expected
- To create a shareable resource for attendees
What This Skill Does
- Reads all inputs: pitch + slides + concepts (+ timeline if available)
- Extracts navigation: table of contents with anchors per act
- Rebuilds by act: key concepts + metrics + anecdotes + probable Q&A
- Builds master table: all concepts + definitions + URLs
- Builds Q&A cheat-sheet: 6-10 questions + short answers + links
- Builds glossary: technical terms from the talk
- Lists external resources
- Assembles and saves
Input
talks/{YYYY}-{slug}-pitch.md (required)
talks/{YYYY}-{slug}-slides.md (required)
talks/{YYYY}-{slug}-concepts.md (required)
talks/{YYYY}-{slug}-timeline.md (optional, for metrics accuracy)
Output
talks/{YYYY}-{slug}-revision-sheets.md
Output Format
# Revision Sheets: {title}
**Date**: {date} · **Talk duration**: {n} min + {n} min Q&A
**Purpose**: Someone asks a question -> find the section -> share the URL in 5 seconds
---
## Quick navigation
| Section | Content |
|---------|---------|
| [Act 1](#act-1) | {1-line summary} |
| [Act 2](#act-2) | {1-line summary} |
| [Act 3](#act-3) | {1-line summary} |
| [Act 4](#act-4) | {1-line summary} |
| [Act 5](#act-5) | {1-line summary} |
| [Conclusion](#conclusion) | {1-line summary} |
| [Master Table](#master-table) | All concepts + URLs |
| [Q&A Cheat-sheet](#qa-cheat-sheet) | {n} anticipated questions + answers |
| [Resources](#external-resources) | Links mentioned in the talk |
---
## ACT 1: {Title} (Slides 1-{n})
**~{n} min · {period or context}**
### Key concepts
| Concept | Short definition | URL to share |
|---------|-----------------|--------------|
| **{Concept}** | {1-2 concrete sentences} | {URL or "no direct link"} |
...
### Metrics to know
{Metrics as code block, one per line, format: value -> context}
### Storytelling / Anecdotes
- **{Anecdote name}**: "{Quote or summary}"
### Probable Q&A for Act {n}
| Question | Short answer |
|----------|-------------|
| "{probable question}" | {direct answer, 2-3 sentences max} |
---
[Repeat for each act]
---
## Conclusion (Slides {n}-{n})
**~{n} min**
### Summary metrics (the big numbers)
{All summary metrics, one per line}
### {N} actions for Monday (if applicable)
1. **{Action 1}**: {description + why}
2. **{Action 2}**: {description + why}
3. **{Action 3}**: {description + why}
---
## Master Table: Concept -> Definition -> URL to share
**The core deliverable. Every technical concept from the talk.**
| Concept | Definition (1-2 sentences) | Slide | URL to share | Notes |
|---------|--------------------------|-------|--------------|-------|
| **{Concept}** | {precise, concise definition} | {n} | {URL or "pure storytelling"} | {guide section if applicable} |
...
---
## Q&A Cheat-sheet
**The {n} most probable questions + short answers + URL to send**
---
### Q1: "{Question}"
**Short answer**:
{Answer in 3-5 bullets}
**To go further**:
- {Link 1 with context}
- {Link 2 with context}
---
[Q2 through Q{n}: same structure]
---
## External Resources Mentioned in the Talk
### Priority URLs to share
| Resource | URL | Context |
|----------|-----|---------|
| **{Resource}** | `{url}` | {why it's important} |
...
### Studies and external sources (if applicable)
| Source | URL | How used in the talk |
|--------|-----|---------------------|
| **{Source}** | `{url}` | {how it's cited} |
---
## Quick Glossary (memory aid if you blank)
| Term | Ultra-short definition |
|------|----------------------|
| {term} | {10 words max} |
...
---
*Generated {date}. Source: slides, concepts, pitch.*
Construction Rules
Master Table
- Include ALL technical concepts mentioned in pitch and slides
- URL = link to a public resource (GitHub, docs, guide), no dead links
- If no link: note "pure storytelling, no guide section" or "concept specific to the project"
- Definition = what you'd say if someone in the room asked "what's that?"
Q&A Cheat-sheet
- 6 questions minimum, 10 maximum
- Select the most probable questions for the audience
- Short answer = what you'd say orally in 20 seconds max
- "To go further" = actionable links, not vague references
Metrics
- Code block format for metrics (faster to scan)
- One metric per line:
{value} ({context})
- Always with units (%, ms, K, days...)
Anecdotes
- Extract verbatim from pitch where possible (for memorization)
- Quote format for phrases to say exactly
Anti-patterns
- Incomplete Master Table (missing concepts = unusable in Q&A)
- Q&A answers that are too long (if it exceeds 5 bullets, cut)
- Invented or approximate URLs (verify every link is real)
- Copy-pasting pitch descriptions without adapting to cheat-sheet format
- Forgetting the glossary (essential when you have a memory blank)
Validation Checklist
Tips
- The revision sheets are the most re-used output: attendees ask for links, you pull up the master table in 5 seconds
- Build the Q&A from the audience profile (what are the 3 most skeptical questions a senior dev in that room would ask?)
- The glossary is your safety net: you blank on a term mid-talk, glance at the glossary, recover in 2 seconds
Related
1---2name: talk-stage6-revision3description: Produces revision sheets with quick navigation by act, a master concept-to-URL table, Q&A cheat-sheet with 6-10 anticipated questions, glossary, and external resources list. Use when preparing for a talk with Q&A, creating shareable reference material for attendees, or building a safety-net glossary for live delivery.4---5
6# Talk Stage 6: Revision
7
8Produces revision sheets usable during and after the talk. Quick navigation by act, master concept table with URLs to share, Q&A cheat-sheet, and glossary.
9
10## When to Use This Skill
11
12- After Stage 5 (Script), which provides pitch + slides
13- Before a talk where Q&A is expected
14- To create a shareable resource for attendees
15
16## What This Skill Does
17
181. **Reads all inputs**: pitch + slides + concepts (+ timeline if available)
192. **Extracts navigation**: table of contents with anchors per act
203. **Rebuilds by act**: key concepts + metrics + anecdotes + probable Q&A
214. **Builds master table**: all concepts + definitions + URLs
225. **Builds Q&A cheat-sheet**: 6-10 questions + short answers + links
236. **Builds glossary**: technical terms from the talk
247. **Lists external resources**
258. **Assembles and saves**
26
27## Input
28
29- `talks/{YYYY}-{slug}-pitch.md` (required)
30- `talks/{YYYY}-{slug}-slides.md` (required)
31- `talks/{YYYY}-{slug}-concepts.md` (required)
32- `talks/{YYYY}-{slug}-timeline.md` (optional, for metrics accuracy)
33
34## Output
35
36`talks/{YYYY}-{slug}-revision-sheets.md`
37
38## Output Format
39
40```markdown
41# Revision Sheets: {title}
42
43**Date**: {date} · **Talk duration**: {n} min + {n} min Q&A
44**Purpose**: Someone asks a question -> find the section -> share the URL in 5 seconds
45
46---
47
48## Quick navigation
49
50| Section | Content |
51|---------|---------|
52| [Act 1](#act-1) | {1-line summary} |
53| [Act 2](#act-2) | {1-line summary} |
54| [Act 3](#act-3) | {1-line summary} |
55| [Act 4](#act-4) | {1-line summary} |
56| [Act 5](#act-5) | {1-line summary} |
57| [Conclusion](#conclusion) | {1-line summary} |
58| [Master Table](#master-table) | All concepts + URLs |
59| [Q&A Cheat-sheet](#qa-cheat-sheet) | {n} anticipated questions + answers |
60| [Resources](#external-resources) | Links mentioned in the talk |
61
62---
63
64## ACT 1: {Title} (Slides 1-{n})
65
66**~{n} min · {period or context}**
67
68### Key concepts
69
70| Concept | Short definition | URL to share |
71|---------|-----------------|--------------|
72| **{Concept}** | {1-2 concrete sentences} | {URL or "no direct link"} |
73...
74
75### Metrics to know
76
77```
78{Metrics as code block, one per line, format: value -> context}
79```
80
81### Storytelling / Anecdotes
82
83- **{Anecdote name}**: "{Quote or summary}"
84
85### Probable Q&A for Act {n}
86
87| Question | Short answer |
88|----------|-------------|
89| "{probable question}" | {direct answer, 2-3 sentences max} |
90
91---
92
93[Repeat for each act]
94
95---
96
97## Conclusion (Slides {n}-{n})
98
99**~{n} min**
100
101### Summary metrics (the big numbers)
102
103```
104{All summary metrics, one per line}
105```
106
107### {N} actions for Monday (if applicable)
108
1091. **{Action 1}**: {description + why}
1102. **{Action 2}**: {description + why}
1113. **{Action 3}**: {description + why}
112
113---
114
115## Master Table: Concept -> Definition -> URL to share
116
117**The core deliverable. Every technical concept from the talk.**
118
119| Concept | Definition (1-2 sentences) | Slide | URL to share | Notes |
120|---------|--------------------------|-------|--------------|-------|
121| **{Concept}** | {precise, concise definition} | {n} | {URL or "pure storytelling"} | {guide section if applicable} |
122...
123
124---
125
126## Q&A Cheat-sheet
127
128**The {n} most probable questions + short answers + URL to send**
129
130---
131
132### Q1: "{Question}"
133
134**Short answer**:
135{Answer in 3-5 bullets}
136
137**To go further**:
138- {Link 1 with context}
139- {Link 2 with context}
140
141---
142
143[Q2 through Q{n}: same structure]
144
145---
146
147## External Resources Mentioned in the Talk
148
149### Priority URLs to share
150
151| Resource | URL | Context |
152|----------|-----|---------|
153| **{Resource}** | `{url}` | {why it's important} |
154...
155
156### Studies and external sources (if applicable)
157
158| Source | URL | How used in the talk |
159|--------|-----|---------------------|
160| **{Source}** | `{url}` | {how it's cited} |
161
162---
163
164## Quick Glossary (memory aid if you blank)
165
166| Term | Ultra-short definition |
167|------|----------------------|
168| {term} | {10 words max} |
169...
170
171---
172
173*Generated {date}. Source: slides, concepts, pitch.*
174```
175
176## Construction Rules
177
178### Master Table
179- Include ALL technical concepts mentioned in pitch and slides
180- URL = link to a public resource (GitHub, docs, guide), no dead links
181- If no link: note "pure storytelling, no guide section" or "concept specific to the project"
182- Definition = what you'd say if someone in the room asked "what's that?"
183
184### Q&A Cheat-sheet
185- 6 questions minimum, 10 maximum
186- Select the most probable questions for the audience
187- Short answer = what you'd say orally in 20 seconds max
188- "To go further" = actionable links, not vague references
189
190### Metrics
191- Code block format for metrics (faster to scan)
192- One metric per line: `{value}` ({context})
193- Always with units (%, ms, K, days...)
194
195### Anecdotes
196- Extract verbatim from pitch where possible (for memorization)
197- Quote format for phrases to say exactly
198
199## Anti-patterns
200
201- Incomplete Master Table (missing concepts = unusable in Q&A)
202- Q&A answers that are too long (if it exceeds 5 bullets, cut)
203- Invented or approximate URLs (verify every link is real)
204- Copy-pasting pitch descriptions without adapting to cheat-sheet format
205- Forgetting the glossary (essential when you have a memory blank)
206
207## Validation Checklist
208
209- [ ] Quick navigation with working anchor links
210- [ ] Each act has its section (concepts + metrics + Q&A)
211- [ ] Master Table covers all pitch concepts (cross-check)
212- [ ] Minimum 6 questions in Q&A cheat-sheet
213- [ ] External resources listed with verified URLs
214- [ ] Glossary present
215- [ ] File saved: `talks/{YYYY}-{slug}-revision-sheets.md`
216
217## Tips
218
219- The revision sheets are the most re-used output: attendees ask for links, you pull up the master table in 5 seconds
220- Build the Q&A from the audience profile (what are the 3 most skeptical questions a senior dev in that room would ask?)
221- The glossary is your safety net: you blank on a term mid-talk, glance at the glossary, recover in 2 seconds
222
223## Related
224
225- [Stage 5: Script](../stage-5-script/SKILL.md): prerequisite
226- [Orchestrator](../orchestrator/SKILL.md)