Six-skill presentation system: ingest talks into a rhetoric vault, run interactive clarification, generate a speaker profile, create presentations that match your documented patterns, produce the deck illustrations + thumbnail visual layer, and publish talk pages to a Jekyll shownotes site. Includes a 102-entry Presentation Patterns taxonomy (91 observable, 11 unobservable go-live items) for scoring, brainstorming, and go-live preparation.
78
91%
Does it follow best practices?
Impact
77%
1.18xAverage score across 27 eval scenarios
Advisory
Suggest reviewing before use
--style-explore has two artifacts: candidates.json (input the agent writes)
and rendered.json (output the script writes). One doc owns both.
style-explore/ in the talk working directorygenerate-illustrations.py --style-explore{
"schema_version": 1,
"slides": { "FULL": 7, "IMG+TXT": 12 },
"models": ["gemini-3-pro-image", "gemini-3.1-flash-image"],
"styles": [
{
"name": "Blueprint Schematic",
"anchors": {
"FULL": "Full-bleed style anchor paragraph for this style.",
"IMG+TXT": "Portrait anchor paragraph for this style."
}
}
]
}schema_version — integer, must be 1. The reader rejects other values.slides — maps each format to one representative slide number from the
outline. The render pulls that slide's scene prompt and substitutes each
style's anchor for the [STYLE ANCHOR] token. A format whose slide has no
image prompt in the outline is skipped with a warning.models — the shortlisted model ids (from model_registry.py --shortlist),
best-first. Each is rendered for every style × format. Codenames resolve via
the registry alias map before dispatch.styles — candidate styles. Each needs a name and an anchors map of
format → anchor text. A style that omits a format is skipped for that format.Only schema_version 1 is accepted today — the reader rejects any other value.
candidates.json is a transient per-talk input, not a persisted record, so
there is no on-read migration. A future schema change bumps the version and
teaches the reader to handle the new shape.
generate-illustrations.py --style-explore (write_rendered_manifest)generate-illustrations.py --check-style-explore and the
run_generate render-before-bake guardindex.md is the human contact sheet;
rendered.json is the gate's source of truth.{
"schema_version": 1,
"outline": "outline.yaml",
"outline_dir": "devnexus26-robocoders",
"rendered_at": "2026-06-08T12:00:00Z",
"models_rendered_ok": ["gemini-3-pro-image"],
"cells": [
{"style": "Blueprint Schematic", "format": "FULL",
"model": "nano-banana-pro", "model_resolved": "gemini-3-pro-image",
"status": "OK", "rel_path": "blueprint-schematic/full/gemini-3-pro-image.png"},
{"style": "Blueprint Schematic", "format": "FULL",
"model": "gpt-image-2", "model_resolved": "gpt-image-2-2026-04-21",
"status": "FAIL", "error": "rate limited"}
]
}Fields:
outline — outline filename; outline_dir — talk-directory name. Together a
per-talk discriminator.models_rendered_ok — human-readable summary of OK-rendered canonical ids.cells — one entry per rendered cell: model / model_resolved (codenames
resolve via the registry alias map), format, style, status, and rel_path
(relative to style-explore/) or error.The render-before-bake gate's eligibility predicate — which cells count, the
live-file evidence check, path containment, and the per-talk copied/stale
checks — is owned by generate-illustrations.py check_style_explore (the source
of truth); it is deliberately not restated here. The render overwrites
rendered.json each run (idempotent), so it always reflects the latest grid.
The render also writes style-explore/<style-slug>/<format-slug>/<model>.<ext>
per cell and style-explore/index.md, a contact sheet grouped by style linking
each rendered image.
.tessl-plugin
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
rules
skills
illustrations
presentation-creator
references
patterns
build
deliver
prepare
shownotes-publisher
vault-clarification
vault-ingress
vault-profile