Implements automated evergreen webinar funnels simulating live sessions with registration scheduling, watch pages, email sequences, and checkout flows for scaling leads.
npx claudepluginhub ominou5/funnel-architect-pluginThis skill uses the workspace's default tool permissions.
Take a proven live webinar and run it on autopilot 24/7.
Generates a 4-6 page webinar funnel: registration, confirmation, webinar room, and offer pages with email sequence. Drives signups for educational sales webinars ($297-$2,000+ products).
Generates self-contained HTML webinar registration page with JavaScript countdown timer, speaker bio, agenda, social proof, and email form.
Guides planning, production, and repurposing of webinars or virtual events for GTM campaigns with blueprints, timelines, templates, and follow-up workflows.
Share bugs, ideas, or general feedback.
Take a proven live webinar and run it on autopilot 24/7.
Traffic → Registration → Watch Page (simulated live) → Offer Page → Checkout
| Page | Purpose |
|---|---|
| Registration | Capture email, pick a session time |
| Watch Page | Pre-recorded video with live-like UI |
| Offer Page | Present offer — appears mid/post webinar |
| Checkout | Payment capture |
// Generate "next available" sessions
function getNextSessions() {
const now = new Date();
return [
{ label: 'Starting in 15 minutes', time: addMinutes(now, 15) },
{ label: 'Today at ' + formatTime(addHours(now, 1)), time: addHours(now, 1) },
{ label: 'Tomorrow at 10:00 AM', time: nextDayAt(10) },
{ label: 'Tomorrow at 7:00 PM', time: nextDayAt(19) },
];
}
| Timing | Purpose | |
|---|---|---|
| Confirmation | Immediately | Session time + calendar link |
| Reminder 1 | 1 hour before | "Your session starts soon" |
| Reminder 2 | 5 min before | "We're going live — join now" |
| Replay | +4 hours after session | "Missed it? Watch the replay" |
| Offer Reminder | +24 hours | Social proof + expiring offer |
| Last Chance | +48 hours | "Replay expires tonight" |
| Metric | Target |
|---|---|
| Registration rate | > 30% |
| Show rate (reg → watch) | > 35% |
| Watch > 50% of video | > 50% of attendees |
| Webinar → offer page | > 20% |
| Offer → purchase | > 5% |
| Overall reg → purchase | > 2% |