presentation-builder

presentation-builder is a skill for Claude Code from neuromechanist/research-skills. It costs 94 tokens per session (2,522 once invoked), scanned A, original, BSD-3-Clause.

A tool for turning structured JSON into interactive Reveal.js web presentations, including diagrams, equations, code, and staged reveals.

In plain words
What is it for?
Use it to create slide decks, lectures, conference talks, keynotes, and poster presentations from JSON.
Why use it?
It removes the need to build and validate presentation slides by hand from raw web code.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the presentation plugin — 1 skill shipped together

Good fit Use it to create slide decks, lectures, conference talks, keynotes, and poster presentations from JSON.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/neuromechanist/research-skills/presentation-builder
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.

Any agent
npx skills add neuromechanist/research-skills --skill presentation-builder
Clone the repo
git clone --depth 1 https://github.com/neuromechanist/research-skills

Made for: Claude Code.

Or install presentation, the plugin that ships this one along with the rest of its 1 skill.

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 presentation-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/neuromechanist/research-skills/presentation-builder/github.svg)](https://agentmods.dev/skills/neuromechanist/research-skills/presentation-builder)
Your own site
<a href="https://agentmods.dev/skills/neuromechanist/research-skills/presentation-builder"><img src="https://agentmods.dev/badge/skills/neuromechanist/research-skills/presentation-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for presentation-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/neuromechanist/research-skills/presentation-builder"><img src="https://agentmods.dev/badge/skills/neuromechanist/research-skills/presentation-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,522 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00094 $0.02522
Opus 5 $0.00047 $0.01261
Sonnet 5 $0.00019 $0.00504
Haiku 4.5 $0.00009 $0.00252

Measured 11d ago against content hash 0020aa6e87bc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

presentation-builder 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 11d 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.

plugins/presentation/skills/presentation-builder/SKILL.md · 258 lines

How it starts

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

Presentation Builder

Create interactive Reveal.js presentations from JSON using the Agentic Presentation Builder. The builder transforms structured JSON definitions into professional, interactive web-based presentations with Mermaid diagrams, LaTeX math, syntax-highlighted code, and animated progressive reveals.

Pipeline Overview

1. Plan structure  -->  2. Author JSON  -->  3. Validate  -->  4. Serve & present
   (outline, theme)     (schema-driven)      (CLI validator)    (Vite dev server)

Prerequisites: get the builder CLI

The engine ships an apb command (subcommands validate, present, export, shoot). Two ways to run it; pick per situation. Pin the tag (#v0.1.8) for reproducibility.

Zero-setup (default, no clone). Run straight from the repo with bunx (or npx):

bunx github:neuromechanist/agentic-presentation-builder#v0.1.8 validate deck.json --json

Iterative authoring / offline (recommended when validating repeatedly). Use a managed cache clone so each call does not re-resolve the git package. Resolve a builder home, cloning once if needed, then run the bun run scripts from it:

APB_HOME="${APB_HOME:-$HOME/.cache/agentic-presentation-builder}"
if [ ! -d "$APB_HOME/.git" ]; then
  git clone --branch v0.1.8 https://github.com/neuromechanist/agentic-presentation-builder.git "$APB_HOME"
  (cd "$APB_HOME" && bun install)
fi
# then, e.g.:
(cd "$APB_HOME" && bun run validate -- "$(pwd)/deck.json" --json)

In the steps below, "apb <command>" means either the bunx form or bun run <command> -- from $APB_HOME. Both share one code path, so flags are identical.

Step 1: Plan the Presentation

Before writing JSON, determine:

  • Topic and audience: Shapes content depth and vocabulary
  • Slide count: 8-12 for a short talk, 15-25 for a full session
  • Theme: academic for research talks, default for general, dark for tech demos
  • Key visuals: Which slides need Mermaid diagrams, images, code blocks, or tables
  • Speaker notes: Include delivery guidance for each slide

Read the full file on GitHub · 258 lines

Files

What ships with it

4 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. 11d ago First seen · 258 lines · 94 tokens per session scan A 0020aa6e87bc

Subscribe to this mod's changes

presentation-builder is a skill published in the GitHub repository neuromechanist/research-skills (45 stars, last pushed 8d ago), licensed BSD-3-Clause. It adds 94 tokens to every session and 2,522 once invoked, about $0.0005 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-08-30.

Related

Other skills, from other repositories

animation-system

Use when implementing animations — AnimationPlayer, AnimationTree, blend trees, state machines, sprite animation, and code-driven animation.

jame581/GodotPrompter · 27 tokens

assets-pipeline

Use when importing and managing assets — image compression, 3D scene import, audio formats, resource formats, and import configuration.

jame581/GodotPrompter · 29 tokens

audio-system

Use when implementing audio — audio buses, AudioStreamPlayer, spatial audio, music management, SFX pooling, and dynamic mixing.

jame581/GodotPrompter · 28 tokens

github-social-preview

Generates a professional GitHub repository social preview image sized 1280x640 pixels as a JPG under 1 MB. Always trigger immediately when the user's message starts with "gsp". Also trigger on "generate github social preview", "create repo preview image", or any request to generate a social preview or OG image for a…

mickpletcher/AI-Skills · 74 tokens

photo-rename

Rename photos using image analysis, GPS metadata, and web research to generate descriptive real-world filenames such as "grandcanyonphantomranch.jpg" or "eiffeltowerparis.jpg". Trigger immediately when the user's message starts with "rp", or when they upload photos and ask to rename, identify, or label them by…

mickpletcher/AI-Skills · 79 tokens

astrophotography-processing

Router for astrophotography processing, troubleshooting, and safe workflow guidance across deep-sky, narrowband, planetary/lunar/solar, Milky Way landscape, comet, and mosaic data.

mickpletcher/AI-Skills · 44 tokens