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.
npx skills add thomascasali/claude-kb-workflow --skill educational-presentation-skillgit clone --depth 1 https://github.com/thomascasali/claude-kb-workflowWrote 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.
[](https://agentmods.dev/skills/thomascasali/claude-kb-workflow/educational-presentation-skill)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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;
}
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.
- 9d ago First seen · 564 lines · 0 tokens per session scan A d9c981d3b35d
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.
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…
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…
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…
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.
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…
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…