template-pitch-deck

template-pitch-deck is a skill for Claude Code, Codex from docxology/template. It costs 35 tokens per session (1,279 once invoked), scanned A, original, Apache-2.0.

A project template for generating short, medium, or long presentation decks from one structured content source, with PDF and PowerPoint outputs. It includes citations for due-diligence claims, meaning claims that have been checked against supporting evidence.

In plain words
What is it for?
It is for creating pitch decks, grant reports, and stakeholder updates, generating diagrams, rendering PDF and PPTX files, and auditing citation coverage.
Why use it?
It keeps different deck formats aligned and helps detect unsupported claims, clichés, and missing evidence before sharing the presentation.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/docxology/template/template-pitch-deck
Any agent
npx skills add docxology/template --skill template-pitch-deck
Clone the repo
git clone --depth 1 https://github.com/docxology/template

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for template-pitch-deck

README.md
[![agentmods](https://agentmods.dev/badge/skills/docxology/template/template-pitch-deck.svg)](https://agentmods.dev/skills/docxology/template/template-pitch-deck)
Your own site
<a href="https://agentmods.dev/skills/docxology/template/template-pitch-deck"><img src="https://agentmods.dev/badge/skills/docxology/template/template-pitch-deck.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,279 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.01279
Opus 5 $0.00017 $0.00639
Sonnet 5 $0.00007 $0.00256
Haiku 4.5 $0.00003 $0.00128

Measured 2d ago against content hash 5bfbad5ccc4a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

template-pitch-deck scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

projects/templates/template_pitch_deck/.agents/skills/template-pitch-deck/SKILL.md · 60 lines

How it starts

The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.

template-pitch-deck

Project-scoped skill for the in-repo exemplar at projects/templates/template_pitch_deck/. Load this when working inside the project.

When to Use

  • Working inside the template_pitch_deck exemplar — running scripts, editing content, or regenerating outputs.
  • Forking this exemplar as the starting scaffold for a new pitch/grant-report/stakeholder-update deck.
  • Adding a new format-agnostic slide renderer to infrastructure/rendering/ (e.g. this is the reference for DeckContent/Slide/DeckTheme).
  • Validating that the exemplar's contracts (thin-orchestrator, token honesty, cliché lint, diligence citation coverage, no-mocks testing) still hold after changes.

Quick Reference

# From the repository root
export PATH="$PWD/node_modules/.bin:$PATH"
uv run python projects/templates/template_pitch_deck/scripts/10_audit_deck_content.py
uv run python projects/templates/template_pitch_deck/scripts/15_generate_diagrams.py
uv run python projects/templates/template_pitch_deck/scripts/20_render_decks.py
uv run python projects/templates/template_pitch_deck/scripts/30_audit_diligence.py
uv run pytest projects/templates/template_pitch_deck/tests --cov=projects/templates/template_pitch_deck/src --cov-fail-under=90
uv run pytest tests/infra_tests/rendering/test_slide_deck.py tests/infra_tests/rendering/test_pptx_deck.py tests/infra_tests/rendering/test_mermaid_figure.py

PDF and PPTX are required project formats; the isolated project environment installs python-pptx from this exemplar's own pyproject.toml. Mermaid figures require the repository-pinned node_modules/.bin/mmdc on PATH.

Pitfalls

  • Keep scripts thin. Content/validation logic belongs in this project's src/; layout/drawing logic belongs in infrastructure/rendering/{slide_deck,pptx_deck,mermaid_figure}.py — never in scripts/.
  • No mocks. All tests must use real YAML, real rendered files (read back with pypdf/python-pptx), real repo introspection.
  • Every fact-bearing slide needs a source citation. src/diligence_audit.py fails the build otherwise (title-kind slides are exempt).
  • Never hand-type a fact. All PITCH_SUBJECT_*/EXEMPLAR_* token values come from src/deck_tokens.py::build_deck_tokens, which reads them live from the repo — adding a new fact means adding a new live read, not a literal.
  • PDF/PPTX parity is load-bearing. The two renderers must always produce identical slide counts, text, fitted title sizes, and planned body line breaks for the same DeckContent. The exact Helvetica fitter and content layout planner live in slide_deck.py; pptx_deck.py consumes their results rather than estimating again. A title below the legibility floor or body crossing the QR/footer protected band fails before either output is replaced.
  • Do not compress the public roster into other claims. Medium and long each dedicate one cited slide to all live exemplar names and a following, identically cited slide to the concrete-instance and uniform-contract claims. Tests bind each authored deck to its declared budget while proving the split, source, and exact live roster dynamically from PUBLIC_PROJECT_NAMES.
  • Donut percentages require measured contrast. Keep outside labels theme-black on the white canvas, but choose theme-black or theme-white for each percentage from the real wedge artist's alpha-composited color. The project helper fails closed below 4.5:1, and tests inspect real Matplotlib artists rather than mocks.
  • QR codes need a real source_base_url. Slide.qr_url (drawn bottom-right, both renderers) is only populated when manuscript/config.yaml's deck.source_base_url is non-empty — attach_qr_urls is a no-op otherwise. New infra capabilities (QR generation reuses infrastructure.steganography.barcode_generators.generate_qr_code) need their transitive dependency (qrcode[pil]) declared in THIS project's own pyproject.toml, not just the root repo's — see the isolated-venv pitfall below.
  • Isolated-venv dependency check is not a one-time step. Every time new code imports a not-yet-used infrastructure.* capability, re-run uv run python scripts/pipeline/stage_01_test.py --project templates/template_pitch_deck --project-only (not a bare root-venv pytest) — it is the only thing that catches a transitive dependency (reportlab/pypdf/Pillow/qrcode so far) missing from this project's own pyproject.toml.
  • Outputs are disposable. Never hand-edit output/; regenerate from manuscript/ + src/. This includes output/slides_standalone/*.md — generated per-slide pages, not hand-authored.
  • Run from the repo root. Commands assume the template monorepo root as working directory.

Read the full file on GitHub · 60 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 60 lines · 35 tokens per session scan A 5bfbad5ccc4a

Subscribe to this mod's changes

template-pitch-deck is a skill published in the GitHub repository docxology/template (19 stars, last pushed today), licensed Apache-2.0. It adds 35 tokens to every session and 1,279 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

talisman

Generate a polished, on-brand PDF guide/handbook/whitepaper from a codebase or project using LaTeX (.tex -> .pdf) or Markdown->pandoc->pdf, with a designed cover page, the product's real brand colors and logo, a subtle branded page background, and TikZ diagrams (domain models, flows, state machines). Use for any…

jeunecraack/talisman-skill · 120 tokens

latex-doc

Converts Markdown → LaTeX → PDF. Handles Mermaid diagrams, math, tables, citations, figures.

JansenAnalytics/claudex · 25 tokens

slides

Create and edit presentation slide decks (.pptx) with PptxGenJS, bundled layout helpers, and render/validation utilities. Use when tasks involve building a new PowerPoint deck, recreating slides from screenshots/PDFs/reference decks, modifying slide content while preserving editable output, adding…

fcakyon/claude-codex-settings · 83 tokens

paper-figures

Extract figures from downloaded papers and include them in survey/review reports. Use when the report covers other groups' work and benefits from their architecture diagrams, experimental plots, or system schematics. Your brain prompt supplies the absolute path to the extract-figures script as {{EXTRACTFIGURES}} — use…

Muuuun/luxas · 79 tokens

document-generation

Generate Word (.docx), Excel (.xlsx) and PowerPoint (.pptx) documents and fill existing PDF forms, from real NetClaw data, with per-element provenance and no fabrication. Use when someone needs a deliverable rather than an answer — a change record to attach to a CR, an audit workbook for a compliance reviewer, a…

automateyournetwork/netclaw · 91 tokens

liteparse

Parse documents into LLM-ready content entirely on the local machine — PDF / DOCX / XLSX / PPTX / images → Markdown, structured JSON (with bounding boxes), or page screenshots, via the lit CLI. No cloud, no LLM, works offline. Use whenever the user attaches or points to a document that must be read before reasoning…

Prismer-AI/PrismerCloud · 90 tokens