agentic-ppt

agentic-ppt is a skill for Claude Code, Codex from Watermelon4000/sketch-note-ppt. It costs 92 tokens per session (3,375 once invoked), scanned A, original, MIT.

A tool for creating styled presentations as one self-contained HTML file. HTML is the markup format used to display web pages, so the deck can open directly in a browser without extra software or dependencies.

In plain words
What is it for?
Use it to make presentations from a topic or viewpoint in sketch-notes, minimal, dark-pro, or data-viz styles, with arrow-key navigation.
Why use it?
It avoids a build process and keeps the entire presentation in a single portable file.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to make presentations from a topic or viewpoint in sketch-notes, minimal, dark-pro, or data-viz styles, with arrow-key navigation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/watermelon4000/sketch-note-ppt/skill
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 Watermelon4000/sketch-note-ppt --skill skill
Clone the repo
git clone --depth 1 https://github.com/Watermelon4000/sketch-note-ppt

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 agentic-ppt

README.md
[![agentmods](https://agentmods.dev/badge/skills/watermelon4000/sketch-note-ppt/skill.svg)](https://agentmods.dev/skills/watermelon4000/sketch-note-ppt/skill)
Your own site
<a href="https://agentmods.dev/skills/watermelon4000/sketch-note-ppt/skill"><img src="https://agentmods.dev/badge/skills/watermelon4000/sketch-note-ppt/skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,375 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.
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.00092 $0.03375
Opus 5 $0.00046 $0.01688
Sonnet 5 $0.00018 $0.00675
Haiku 4.5 $0.00009 $0.00337

Measured 8d ago against content hash 6f27f51712f1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

agentic-ppt 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 8d 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.

skill/SKILL.md · 366 lines

How it starts

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

Agentic PPT — Skill Instructions

Overview

You will generate a single self-contained HTML file that renders as a styled presentation. The output must be a fully working HTML deck — no frameworks, no npm, no build step. The file should work by simply opening it in a browser.


Phase 0: Understand the Content

Before generating, ask the user (or infer from context):

  1. Topic / Viewpoint — What is this presentation about? What is the author's unique take?
  2. Slide count — How many slides? (Recommend 5–10 for clarity)
  3. Language — Traditional Chinese (繁體中文) / Simplified Chinese (简体中文) / English?
  4. Audience — Who will see this? (affects density and tone)
  5. Style — Which visual style?
    • sketch-notes (default) — warm cream paper + manga-inspired hand-drawn feel
    • minimal — black & white, large typography, maximum whitespace
    • dark-pro — dark background, pro tech aesthetic, cyan/teal accents
    • data-viz — vibrant palette, bold charts, data-forward layout

Phase 1: Plan the Slide Structure

Plan the deck before generating HTML. A good structure:

# Slide Type Purpose
1 Cover Title + subtitle + one-line hook in a speech bubble
2 Overview 3–5 key points (tool cards or insight grid)
3–N Content One idea per slide. Tables, comparisons, decision trees
N Takeaway 2–3 bold conclusions in speech bubbles

Rule: One idea per slide. If content overflows, split into two slides.


Phase 2: Generate the HTML

Required Structure

<!DOCTYPE html>
<html lang="zh-TW">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>[Presentation Title]</title>
  <style>
    /* === 1. Style token override (if non-default style) === */
    /* === 2. All CSS from Phase 3 === */
    /* === 3. Slide-specific styles === */
  </style>
</head>
<body>
  <div class="halftone"></div>
  <div class="deck">
    <!-- Slides here -->
  </div>
  <nav class="nav">
    <button onclick="prev()" aria-label="Previous">←</button>
    <span class="counter" id="counter">1 / N</span>
    <button onclick="next()" aria-label="Next">→</button>
  </nav>
  <script>
    const S=document.querySelectorAll('.slide');let c=0;
    function show(n){S[c].classList.remove('active');c=(n+S.length)%S.length;S[c].classList.add('active');document.getElementById('counter').textContent=`${c+1} / ${S.length}`;}
    function next(){show(c+1)} function prev(){show(c-1)}
    document.addEventListener('keydown',e=>{if(e.key==='ArrowRight'||e.key===' ')next();if(e.key==='ArrowLeft')prev();});
    let tx=0;document.addEventListener('touchstart',e=>{tx=e.touches[0].clientX});
    document.addEventListener('touchend',e=>{const d=e.changedTouches[0].clientX-tx;if(d<-50)next();if(d>50)prev();});
  </script>
</body>
</html>

Read the full file on GitHub · 366 lines

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. 8d ago First seen · 366 lines · 92 tokens per session scan A 6f27f51712f1

Subscribe to this mod's changes

agentic-ppt is a skill published in the GitHub repository Watermelon4000/sketch-note-ppt (11 stars, last pushed 5mo ago), licensed MIT. It adds 92 tokens to every session and 3,375 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