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 111-entry Presentation Patterns taxonomy (81 observable: 62 patterns + 19 antipatterns; 30 unobservable: 21 patterns + 9 antipatterns) for scoring, brainstorming, and go-live preparation.
91
94%
Does it follow best practices?
Impact
91%
1.30xAverage score across 27 eval scenarios
Low
Low-risk findings worth noting
#!/bin/bash
# ensure-drivers.sh — restore the deck-ops drivers that tessl install strips.
#
# `tessl install` ships only .md/.py/.json/.sh/.txt and STRIPS .bas/.applescript,
# so on an installed plugin RunDeckOps.bas and the eight *.applescript drivers are
# missing. This sources into every deck-ops wrapper and recreates them from their
# committed .txt mirrors (sync-deck-drivers.py materialize). Idempotent — a no-op
# in the dev tree where the real files already exist. See rules/deck-editing-rules.md.
#
# Sourced (not executed) by the wrappers, so it runs in their shell before the
# driver-existence checks.
__ED_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Surface a real failure as a warning instead of swallowing it — a hard exit here
# would abort the sourcing wrapper (set -e), but a silent failure would mask the
# cause (python missing, corrupted mirror) behind the wrapper's later
# "driver not found" error. On success this is silent (output captured, discarded).
if ! __ed_out="$(python3 "$__ED_DIR/sync-deck-drivers.py" materialize 2>&1)"; then
echo "WARN: ensure-drivers.sh could not restore deck drivers — $__ed_out" >&2
fi.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
scripts
shownotes-publisher
vault-clarification
vault-ingress
references
scripts
vault-profile