CtrlK
BlogDocsLog inGet started
Tessl Logo

jbaruch/speaker-toolkit

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.

Quality

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Low

Low-risk findings worth noting

Overview
Quality
Evals
Security
Files

catalog_normalization.pyskills/vault-ingress/scripts/

"""Shared, deterministic normalization for Presentation Pattern claims."""

from __future__ import annotations

import re
import unicodedata


def normalize_catalog_alias(value: str) -> str:
    """Map a catalog ID, name, or alias into the collision namespace."""
    decomposed = unicodedata.normalize("NFKD", value).casefold()
    folded = "".join(
        character for character in decomposed if not unicodedata.combining(character)
    )
    return "-".join(re.findall(r"[a-z0-9]+", folded))

skills

README.md

tile.json