deckset
Deckset
Workflow
- Refresh upstream references first, on every invocation (run from this skill directory):
uv run scripts/refresh_sources.py- Optional: set
GH_TOKEN/GITHUB_TOKENto avoid GitHub API rate limits - Optional:
--max-age-sec 3600to reduce network refreshes
- Read refresh metadata:
references/refresh-metadata.json-> capturerefreshed_at,docs_source,gist_source,used_cache_fallback
- Read the conversation and extract:
- audience
- objective
- timebox (talk length) + format (demo, deep dive, status update, pitch)
- key claims and evidence
- constraints (must-include points, required sections, theme/footer if specified)
- Build a narrative spine and a slide outline (titles + 1-line intent) before writing slides.
- Draft a single Deckset markdown deck.
- Add a provenance stamp as a presenter note on slide 1:
^ deckset-skill refresh: refreshed_at=<...> docs=<...> gist=<...> cache_fallback=<...>
- Run quality gates before returning output.
Output Contract
- Output exactly one complete Deckset markdown deck by default.
- Include presenter notes using
^when they improve delivery. - Defaults:
- if audience is not specified, assume a mixed technical audience
- if duration is not specified, target ~10 minutes / ~10 slides (do not force a hard slide count)
- If missing duration/audience would materially change the deck, ask exactly one clarifying question; otherwise apply the defaults.
- Keep styling prompt-driven:
- do not force a theme/footer/slidenumbers/autoscale unless requested
- do not force a fixed slide count; size to content
- Prefer
references/deckset-cheatsheet.mdover the HTML docs cache.
Deckset Rules
- Separate slides with
---. - Prefer
#and##headings for slide structure. - Use
[fit]only when needed to preserve readability. - Keep one major idea per slide unless the content is inherently coupled.
- Keep code blocks concise and language-labeled.
- Use incremental build commands only when the user asks for staged reveals.
- Global commands (e.g.
theme:,footer:,slidenumbers:) must be at the top of the file with no blank lines between them. - If you open columns (
[.column]), always close with[.end-columns].
Quality Gates
- Fidelity: preserve the conversation's claims and hierarchy.
- Coherence: each slide should have a clear purpose in the narrative.
- Syntax: deck parses as valid markdown with Deckset commands placed correctly.
- Delivery: presenter notes clarify talking points, not duplicate slide text.
- Structure: every slide has a title; one major idea per slide.
- Density: keep slides scannable (<= 6 bullets per slide; move detail into presenter notes).
- Provenance: slide 1 includes the refresh stamp and it matches
references/refresh-metadata.json.
References
- Cheatsheet (preferred):
references/deckset-cheatsheet.md
- Full docs cache (fallback):
references/deckset-markdownDocumentation.html
- Gist example cache:
references/examples/*.md
- Refresh metadata:
references/refresh-metadata.json
If used_cache_fallback is true, disclose that in the response summary.
More from tkersey/dotfiles
grill-me
>
99complexity-mitigator
Mitigate incidental complexity in existing code when control flow is tangled, nesting is deep, names are hard to parse, or reasoning requires cross-file hops. Use when a review stalls on readability, you need an analysis-first refactor plan before edits, or you want essential-vs-incidental verdicts, dominant-risk triage, ranked simplification steps, one visibility artifact, and a TRACE assessment. Do not use for greenfield requirements discovery, architecture selection, or delivery planning.
59creative-problem-solver
Lateral-thinking playbook that always returns a five-tier strategy portfolio (Quick Win through Moonshot). Use when you need options, alternatives, or trade-offs; when progress is stalled or failing repeatedly; or when you ask to think creatively, reframe constraints, and choose a strategic path before execution.
59mesh
Use `$mesh` for homogeneous leaf-batch execution over `spawn_agents_on_csv`: once planning has shaped repeated independent units, prefer one substantive row per unit with structured results and explicit concurrency.
47web-browser
Use when tasks need real-browser web automation in Chrome/Chromium via CDP: open or navigate URLs, click/type/select in forms, run page JS, wait for selectors, scrape structured content, capture screenshots, validate UI flows, or run measured web-browser latency checks (`bench:eval`, `bench:all`) for perf regressions.
43invariant-ace
Turn 'should never happen' into 'cannot happen' by defining owned inductive invariants and enforcing them at parse/construct/API/DB/lock/txn boundaries with a verification signal. Use when prompts mention invariants, impossible states, validation sprawl, cache/index drift, idempotency/versioning, retries/duplicates/out-of-order events, race/linearization bugs, loop correctness, or hardening another implementation workflow with invariant checks first.
31