Four-skill presentation system: ingest talks into a rhetoric vault, run interactive clarification, generate a speaker profile, then create new presentations that match your documented patterns. Includes an 88-entry Presentation Patterns taxonomy for scoring, brainstorming, and go-live preparation.
96
93%
Does it follow best practices?
Impact
97%
1.21xAverage score across 30 eval scenarios
Advisory
Suggest reviewing before use
A speaker's rhetoric knowledge vault has been running automated analysis on their talks. The system downloads YouTube transcripts and slide PDFs for each talk, analyzes them, and updates a tracking database. But downloads are unreliable — sometimes the transcript download fails, sometimes the slides download fails, sometimes both fail. The system needs to correctly categorize each talk's processing outcome and update the vault's running summary document.
You have a tracking database with 8 talks that just went through a processing run. Each talk has a recorded download result from the latest run. Based on the outcomes, update the tracking database with the correct status for each talk and determine the slide source type from each talk's configured sources in the database (before considering download outcomes). Also produce an updated rhetoric summary document that incorporates the new observations from successfully processed talks.
The key constraint: the rhetoric summary is a living document that has been built up over months. New observations from successfully processed talks should be integrated into the existing content to maintain a comprehensive running summary.
Produce the following files:
tracking-database-updated.json — The updated tracking database with correct status values for all 8 talksrhetoric-style-summary-updated.md — The updated rhetoric summary incorporating new observationsprocessing-report.txt — A report showing what happened with each talk and the vault stateThe following files are provided as inputs. Extract them before beginning.
=============== FILE: inputs/tracking-database.json =============== { "config": { "vault_root": "/vault", "talks_source_dir": "/talks", "pptx_source_dir": "/presentations", "python_path": "python3", "template_skip_patterns": ["template"] }, "talks": [ { "filename": "2024-01-15-microservices-myths.md", "title": "Microservices Myths", "conference": "QCon London", "date": "2024-01-15", "video_url": "https://www.youtube.com/watch?v=abc123", "slides_url": "https://drive.google.com/file/d/1ABC/view", "pptx_path": "QCon/2024/Microservices Myths.pptx", "youtube_id": "abc123", "google_drive_id": "1ABC", "status": "pending" }, { "filename": "2024-03-20-devops-culture.md", "title": "DevOps Culture Reset", "conference": "DevOps Days", "date": "2024-03-20", "video_url": "https://www.youtube.com/watch?v=def456", "slides_url": "https://drive.google.com/file/d/2DEF/view", "youtube_id": "def456", "google_drive_id": "2DEF", "status": "pending" }, { "filename": "2024-05-10-ci-pipeline.md", "title": "CI Pipeline Masterclass", "conference": "FOSDEM", "date": "2024-05-10", "video_url": "https://www.youtube.com/watch?v=ghi789", "youtube_id": "ghi789", "status": "pending" }, { "filename": "2024-06-15-platform-eng.md", "title": "Platform Engineering Done Right", "conference": "PlatformCon", "date": "2024-06-15", "video_url": "https://www.youtube.com/watch?v=jkl012", "pptx_path": "PlatformCon/2024/Platform Engineering Done Right.pptx", "youtube_id": "jkl012", "status": "pending" }, { "filename": "2024-07-22-security-shift.md", "title": "Security Shift Left", "conference": "BSides", "date": "2024-07-22", "video_url": "https://www.youtube.com/watch?v=mno345", "slides_url": "https://drive.google.com/file/d/3MNO/view", "youtube_id": "mno345", "google_drive_id": "3MNO", "status": "pending" }, { "filename": "2024-08-30-testing-prod.md", "title": "Testing in Production", "conference": "SREcon", "date": "2024-08-30", "slides_url": "https://drive.google.com/file/d/4PQR/view", "google_drive_id": "4PQR", "status": "pending" }, { "filename": "2024-09-15-container-security.md", "title": "Container Security Deep Dive", "conference": "KubeCon", "date": "2024-09-15", "status": "pending" }, { "filename": "2024-10-05-gitops-journey.md", "title": "GitOps Journey", "conference": "GitOpsCon", "date": "2024-10-05", "video_url": "https://www.youtube.com/watch?v=stu678", "slides_url": "https://drive.google.com/file/d/5STU/view", "pptx_path": "GitOpsCon/2024/GitOps Journey.pptx", "youtube_id": "stu678", "google_drive_id": "5STU", "status": "pending" } ], "pptx_catalog": [], "confirmed_intents": [] } =============== END OF FILE ===============
=============== FILE: inputs/download-results.json =============== { "results": [ {"filename": "2024-01-15-microservices-myths.md", "transcript_download": "success", "slides_download": "success", "notes": "Both sources acquired successfully"}, {"filename": "2024-03-20-devops-culture.md", "transcript_download": "success", "slides_download": "failed", "video_extraction": "failed", "notes": "Google Drive returned 403 forbidden; video slide extraction also failed (low-quality recording, no clear slides)"}, {"filename": "2024-05-10-ci-pipeline.md", "transcript_download": "failed", "slides_download": "not_applicable", "notes": "No auto-captions available on YouTube; no slides source configured"}, {"filename": "2024-06-15-platform-eng.md", "transcript_download": "success", "slides_download": "success", "notes": "PPTX extraction completed"}, {"filename": "2024-07-22-security-shift.md", "transcript_download": "failed", "slides_download": "success", "notes": "yt-dlp timed out, but PDF downloaded successfully"}, {"filename": "2024-08-30-testing-prod.md", "transcript_download": "not_applicable", "slides_download": "not_applicable", "notes": "No video_url — talk was not entered into the processing pipeline"}, {"filename": "2024-09-15-container-security.md", "transcript_download": "not_applicable", "slides_download": "not_applicable", "notes": "No video_url, no slides_url, no pptx_path"}, {"filename": "2024-10-05-gitops-journey.md", "transcript_download": "failed", "slides_download": "failed", "notes": "Network timeout on both downloads"} ] } =============== END OF FILE ===============
=============== FILE: inputs/rhetoric-style-summary.md ===============
Last updated: 2024-09-01
The speaker operates in two modes: "Myth Buster" (problem-diagnosis-solution, heavy memes) and "Deep Dive" (demo-driven, minimal slides).
Typically opens with a bold claim or audience poll. Bio at slide 3.
Self-deprecating humor, meme cascades, callback humor.
"is not a thing", "right?", "raise your hand if"
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10
scenario-11
scenario-12
scenario-13
scenario-14
scenario-15
scenario-16
scenario-17
scenario-18
scenario-19
scenario-20
scenario-21
scenario-22
scenario-23
scenario-24
scenario-25
scenario-26
scenario-27
scenario-28
scenario-29
scenario-30
rules
skills
presentation-creator
references
patterns
build
deliver
prepare
scripts
vault-clarification
vault-ingress
vault-profile