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.
—
—
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
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
rules
skills
illustrations
presentation-creator
references
patterns
build
deliver
prepare
scripts
shownotes-publisher
vault-clarification
vault-ingress
references
scripts
vault-profile