educational-presentation

educational-presentation is a skill for Claude Code, Codex from thomascasali/claude-kb-workflow. It costs 86 tokens per session (5,325 once invoked), scanned A, original, MIT.

A workflow for creating interactive IT lessons as React web pages, with simulations, quizzes, and a dark visual theme.

In plain words
What is it for?
Use it to create or extend ITIS lessons, interactive network simulators, multiplayer educational games, quizzes, and GitHub Pages deployments.
Why use it?
It gives educational presentations a consistent structure and a defined choice between a simple CDN setup and a scalable build setup.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md.

Good fit Use it to create or extend ITIS lessons, interactive network simulators, multiplayer educational games, quizzes, and GitHub Pages deployments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thomascasali/claude-kb-workflow/educational-presentation-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 thomascasali/claude-kb-workflow --skill educational-presentation-skill
Clone the repo
git clone --depth 1 https://github.com/thomascasali/claude-kb-workflow

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/thomascasali/claude-kb-workflow/educational-presentation-skill/github.svg)](https://agentmods.dev/skills/thomascasali/claude-kb-workflow/educational-presentation-skill)
Your own site
<a href="https://agentmods.dev/skills/thomascasali/claude-kb-workflow/educational-presentation-skill"><img src="https://agentmods.dev/badge/skills/thomascasali/claude-kb-workflow/educational-presentation-skill/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 educational-presentation

Your own site · 80×15
<a href="https://agentmods.dev/skills/thomascasali/claude-kb-workflow/educational-presentation-skill"><img src="https://agentmods.dev/badge/skills/thomascasali/claude-kb-workflow/educational-presentation-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,325 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.00086 $0.05325
Opus 5 $0.00043 $0.02662
Sonnet 5 $0.00017 $0.01065
Haiku 4.5 $0.00009 $0.00532

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

Security

Grade A, and why

educational-presentation 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 9d 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.

skills/educational-presentation-skill/SKILL.md · 564 lines

How it starts

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

Educational Presentation Skill

Quando usare questa skill

  • Creare una nuova presentazione interattiva per lezioni scolastiche ITIS
  • Aggiungere moduli/slide a una presentazione esistente
  • Creare un gioco educativo multiplayer (escape room)
  • Scegliere tra approccio CDN (rapido) o Build (scalabile)
  • Creare simulatori interattivi (ACL, packet filter, handshake, configuratori)
  • Creare quiz interattivi con feedback immediato
  • Deploy su GitHub Pages

Stack Standard

Tutte le presentazioni seguono lo stesso stack leggero:

presentazione-ARGOMENTO/
├── index.html              # Entry point + dashboard
├── modulo1.html            # Slide modulo 1
├── modulo2.html            # Slide modulo 2
├── ...
├── quiz.html               # Quiz interattivo
├── package.json            # Solo per dev server locale (opzionale)
└── .github/
    └── workflows/
        └── deploy.yml      # Auto-deploy GitHub Pages

Dipendenze (tutte via CDN, zero build)

<!-- React 18 via CDN -->
<script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>

<!-- Icone -->
<script src="https://unpkg.com/lucide-react@latest/dist/umd/lucide-react.min.js"></script>

<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">

Design System

Tema Dark Standard

:root {
    --bg-primary: #0f172a;      /* Sfondo principale */
    --bg-secondary: #1e293b;    /* Card, box */
    --bg-tertiary: #334155;     /* Hover, bordi */
    --text-primary: #f1f5f9;    /* Testo principale */
    --text-secondary: #94a3b8;  /* Testo secondario */
    --accent-blue: #3b82f6;     /* Accent primario */
    --accent-green: #10b981;    /* Successo, conferma */
    --accent-orange: #f59e0b;   /* Warning, evidenziazione */
    --accent-red: #ef4444;      /* Errore, pericolo */
    --accent-purple: #8b5cf6;   /* Secondario */
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
}

Read the full file on GitHub · 564 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. 9d ago First seen · 564 lines · 0 tokens per session scan A d9c981d3b35d

Subscribe to this mod's changes

educational-presentation is a skill published in the GitHub repository thomascasali/claude-kb-workflow (2 stars, last pushed 14d ago), licensed MIT. It adds 86 tokens to every session and 5,325 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

factory-frontend

Frontend conventions distilled across builds. CRUD shape (DataTable + drawer with mode union), RowActions primitive, format helpers, heading tiers, semantic color tokens, query-key naming, component-library decision criteria (Mantine vs shadcn). Read when scaffolding any UI surface that touches lists, forms, or entity…

nonlinear-xyz/factory-kit · 68 tokens

factory-forms

Form conventions distilled across builds. react-hook-form + Zod via resolver (Mantine or shadcn variant), three Zod schema variants (server strict / client lenient / patch), drawer-CRUD with mode union, field-registry pattern for multi-step forms, declarative conditional visibility with auto-cleanup, debounced…

nonlinear-xyz/factory-kit · 118 tokens

factory-forms-builder

Use when building multi-step forms, complex intake flows, drawer-CRUD forms, or anything beyond a one-shot Mantine form. Carries the factory's form conventions — react-hook-form + Zod via resolver, three Zod variants (server strict / client lenient / patch), modular section files from day one, field registry for…

nonlinear-xyz/factory-kit · 146 tokens

create-mobile-app

Use when the user wants to start a new Power Apps mobile app (Expo / React Native / TypeScript, targeting iOS and Android) from scratch.

microsoft/power-platform-skills · 35 tokens

create-site

Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…

microsoft/power-platform-skills · 73 tokens

genpage

Creates, updates, and deploys Power Apps generative pages for model-driven apps using React v17, TypeScript, and Fluent UI V9. Orchestrates specialist agents for planning, entity creation, and code generation. Use it when user asks to build, retrieve, or update a page in an existing Microsoft Power Apps model-driven…

microsoft/power-platform-skills · 140 tokens