vsl-funnel

vsl-funnel is a skill for Claude Code from ominou5/funnel-architect-plugin. It costs 52 tokens per session (752 once invoked), scanned A, original, MIT.

A sales funnel built around a Video Sales Letter, which is a long sales presentation delivered mainly through video. The viewer watches the video, then moves to an order page and possibly an upsell or thank-you page.

In plain words
What is it for?
Use it to plan funnels for courses, information products, or coaching, including video pages, delayed calls to action, order forms, guarantees, upsells, and access details.
Why use it?
It gives video-led offers a defined path from presentation to payment and specifies how the purchase prompt should appear during the video.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the funnel-architect-plugin plugin — 29 skills, 5 agents, 2 hooks shipped together

Good fit Use it to plan funnels for courses, information products, or coaching, including video pages, delayed calls to action, order forms, guarantees, upsells, and access details.

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

Made for: Claude Code.

Or install funnel-architect-plugin, the plugin that ships this one along with the rest of its 29 skills, 5 agents, 2 hooks.

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 vsl-funnel

README.md
[![agentmods](https://agentmods.dev/badge/skills/ominou5/funnel-architect-plugin/vsl-funnel/github.svg)](https://agentmods.dev/skills/ominou5/funnel-architect-plugin/vsl-funnel)
Your own site
<a href="https://agentmods.dev/skills/ominou5/funnel-architect-plugin/vsl-funnel"><img src="https://agentmods.dev/badge/skills/ominou5/funnel-architect-plugin/vsl-funnel/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 vsl-funnel

Your own site · 80×15
<a href="https://agentmods.dev/skills/ominou5/funnel-architect-plugin/vsl-funnel"><img src="https://agentmods.dev/badge/skills/ominou5/funnel-architect-plugin/vsl-funnel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 752 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.00052 $0.00752
Opus 5 $0.00026 $0.00376
Sonnet 5 $0.00010 $0.00150
Haiku 4.5 $0.00005 $0.00075

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

Security

Grade A, and why

vsl-funnel 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.

skills/vsl-funnel/SKILL.md · 95 lines

How it starts

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

VSL Funnel

The Video Sales Letter funnel replaces long-form sales copy with a persuasive video. The viewer watches, then clicks a CTA that appears after a timed delay.

Flow

Traffic → VSL Page → Order Page → Thank You / Upsell
Page Purpose Key Element
VSL Page Deliver sales message via video Auto-play video, delayed CTA button
Order Page Capture payment Order form, guarantee, testimonials
Upsell (optional) One-click upsell after purchase Single CTA, limited offer
Thank You Confirm purchase, deliver access Login details, next steps

VSL Page Requirements

Video Player

  • Autoplay (muted with unmute prompt on mobile)
  • No controls visible — no scrub bar, no skip (optional, controversial)
  • Timed CTA reveal — button appears after 60–80% of video plays
  • Simple embed: Wistia, Vimeo Pro, or Bunny Stream preferred (no YouTube — ads distract)

Timed CTA Pattern

// Reveal CTA button after X seconds
const video = document.querySelector('video');
const cta = document.querySelector('.cta-delayed');
const REVEAL_SECONDS = 900; // 15 minutes

video.addEventListener('timeupdate', () => {
  if (video.currentTime >= REVEAL_SECONDS) {
    cta.classList.add('visible');
  }
});

Page Layout

  • Minimal: headline + video + CTA only
  • No navigation — no distractions
  • Dark background — keeps focus on video
  • Optional: countdown timer below video for urgency

VSL Script Framework (for copywriter reference)

1. Pattern Interrupt (0:00–0:30)
   Hook that stops the scroll — bold claim, curiosity, controversy

2. Story / Problem (0:30–5:00)
   Relatable origin story that mirrors the viewer's pain

3. Solution Reveal (5:00–8:00)
   Introduce the product as the bridge from pain to outcome

4. Proof (8:00–12:00)
   Testimonials, case studies, results, credentials

5. Offer Stack (12:00–16:00)
   Core product + bonuses with value anchoring

6. Price Reveal & Close (16:00–18:00)
   Price drop, guarantee, urgency, final CTA

7. FAQ / Objection Crusher (18:00–20:00)
   Address remaining doubts

Read the full file on GitHub · 95 lines

Files

What ships with it

1 file 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 · 95 lines · 52 tokens per session scan A 070ee96c7b9e

Subscribe to this mod's changes

vsl-funnel is a skill published in the GitHub repository ominou5/funnel-architect-plugin (80 stars, last pushed 6mo ago), licensed MIT. It adds 52 tokens to every session and 752 once invoked, about $0.0003 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

google-ads-assets

Plan, validate, and safely publish Google Ads assets, including sitelinks, callouts, structured snippets, image assets, and Performance Max asset briefs. Use when asked for Google Ads assets, ad extensions, sitelinks, callouts, snippets, image assets, Performance Max assets, PMax creative, or an asset audit.

nowork-studio/notfair-plugin · 72 tokens

meta-ads-creative

Create evidence-based Meta ad creative briefs, copy angles, and testable asset concepts for Facebook and Instagram. Use when asked for Meta ad creative, Facebook ads copy, Instagram ad assets, UGC concepts, creative briefs, new ad concepts, or creative refreshes.

nowork-studio/notfair-plugin · 59 tokens

paid-ads-creative

Create grounded paid-media creative concepts, copy angles, refresh hypotheses, and measurable test briefs across advertising platforms. Use for ad copy, creative briefs, UGC concepts, headlines, creative fatigue, asset ideas, or a creative refresh.

nowork-studio/notfair-plugin · 52 tokens

paid-ads-tiktok

Plan and review TikTok Ads creative experiments with measurement, rights, and conversion guardrails. Use for TikTok advertising, Spark Ads, short-form video ads, creator briefs, TikTok campaign setup, or TikTok performance exports.

nowork-studio/notfair-plugin · 52 tokens

meta-ads-creative

Create evidence-based Meta ad creative briefs, copy angles, and testable asset concepts for Facebook and Instagram. Use when asked for Meta ad creative, Facebook ads copy, Instagram ad assets, UGC concepts, creative briefs, new ad concepts, or creative refreshes.

nowork-studio/notfair-plugin · 59 tokens

remove-ai-marks

Strip multi-vendor AI provenance from owned files: hidden Unicode (Layer A), statistical sampling watermarks via rewrite (Layer B — always offer), and C2PA/EXIF/XMP/container metadata on PNG/JPEG/WebP/SVG/PDF/DOCX/ODT/HTML/MD. Covers Claude, Gemini/SynthID-class, OpenAI provenance surfaces, and open-LLM sampling…

ShadowAqueduct/watermark-remover · 135 tokens