interactive

interactive is a skill for Claude Code from vinnie357/claude-skills. It costs 38 tokens per session (3,357 once invoked), scanned A, original, MIT.

A guide to adding interactive demos and mock interfaces to Slidev presentations using Vue components or standalone web pages.

In plain words
What is it for?
Use it to embed prototypes, simulated workflows, clickable interfaces, animated demos, or third-party widgets.
Why use it?
It explains how to include clickable, animated examples without confusing the presentation with the demo’s implementation.

Skill for Claude Code

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

Part of the slidev plugin — 7 skills, 3 agents shipped together

Good fit Use it to embed prototypes, simulated workflows, clickable interfaces, animated demos, or…

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

Made for: Claude Code.

Or install slidev, the plugin that ships this one along with the rest of its 7 skills, 3 agents.

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 interactive

README.md
[![agentmods](https://agentmods.dev/badge/skills/vinnie357/claude-skills/interactive.svg)](https://agentmods.dev/skills/vinnie357/claude-skills/interactive)
Your own site
<a href="https://agentmods.dev/skills/vinnie357/claude-skills/interactive"><img src="https://agentmods.dev/badge/skills/vinnie357/claude-skills/interactive.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,357 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.00038 $0.03357
Opus 5 $0.00019 $0.01679
Sonnet 5 $0.00008 $0.00671
Haiku 4.5 $0.00004 $0.00336

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

Security

Grade A, and why

interactive 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 3d 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/tools/slidev/skills/interactive/SKILL.md · 486 lines

How it starts

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

Slidev Interactive Demos

Guide for embedding interactive demos, mock UIs, and animated workflows in Slidev presentations.

Two Integration Paths

Choose based on portability and integration requirements:

Concern Vue Components Iframe / HTML5
Slidev integration Tight — shares state, v-click, themes Loose — isolated sandbox
Portability Requires Slidev project Self-contained HTML file
Reactivity Full Vue 3 reactivity Vanilla JS or any framework
Styling Inherits slide theme Independent CSS
Hot reload Yes (Vite HMR) Requires manual refresh
Best for Demos that respond to clicks, slide context Standalone prototypes, third-party widgets

For Vue component patterns, see references/vue-components.md. For iframe and standalone HTML patterns, see references/iframe-mocks.md. For animation patterns, see references/animation-patterns.md.

Vue Component Path

Auto-Import

Place .vue files in components/ — Slidev auto-imports them by filename:

components/
├── LoginForm.vue
├── ApiExplorer.vue
└── DashboardWidget.vue

Use directly in slides without import statements:

---
layout: default
---

# Live Demo

<LoginForm />

Reactive State with Vue 3

Use the Composition API for state management:

<script setup>
import { ref, computed } from 'vue'

const step = ref(0)
const steps = ['Input', 'Validate', 'Submit', 'Success']
const currentStep = computed(() => steps[step.value])

function advance() {
  if (step.value < steps.length - 1) step.value++
}
function reset() {
  step.value = 0
}
</script>

Integration with v-click

Wrap components in v-click for progressive reveal, or use $clicks for step-aware behavior:

<v-click>
  <ApiExplorer />
</v-click>

<!-- Or bind clicks inside the component -->
<WorkflowDemo :step="$clicks" />

Inside the component, receive step as a prop and render accordingly:

Read the full file on GitHub · 486 lines

Files

What ships with it

3 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. 3d ago First seen · 486 lines · 38 tokens per session scan A 1b4b4c917162

Subscribe to this mod's changes

interactive is a skill published in the GitHub repository vinnie357/claude-skills (24 stars, last pushed yesterday), licensed MIT. It adds 38 tokens to every session and 3,357 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-04.

Related

Other skills, from other repositories

slidev

Create and present web-based slidedecks for developers using Slidev with Markdown, Vue components, code highlighting, animations, and interactive features. Use when building technical presentations, conference talks, code walkthroughs, teaching materials, or developer decks.

slidevjs/slidev · 51 tokens

remotion-saas

Building video apps with Remotion - framework, rendering and Player advice.

guanyang/open-agent-hub · 18 tokens

web-3d-graphics-expert

Expert guide for WebGL and 3D graphics in the browser using Three.js, Babylon.js, React Three Fiber (R3F), and TresJS. Covers scene optimization, shaders, lighting, 3D model loading (GLTF/GLB), and performance tuning.

roedyrustam/vibes-plug · 65 tokens

Slidev Mastery

This skill should be used when the user asks to "create slides with Slidev", "use Slidev syntax", "add Slidev components", "configure Slidev theme", "export Slidev presentation", or mentions Slidev-specific features like layouts, animations, Monaco editor, or code highlighting. Provides comprehensive Slidev expertise…

rhuss/cc-slidev · 74 tokens

slidev-presentations

Creates Slidev markdown presentations for developers. Activates for: slides with code highlighting, technical talks, conference presentations, workshop materials, live coding decks, or markdown-based slides. Not for PowerPoint/Google Slides or non-presentation documents.

nicepkg/ai-workflow · 53 tokens

slidev

Create and present web-based slidedecks for developers using Slidev with Markdown, Vue components, code highlighting, animations, and interactive features. Use when building technical presentations, conference talks, code walkthroughs, teaching materials, or developer decks.

antfu/skills · 51 tokens