$npx -y skills add ominou5/funnel-architect-plugin --skill evergreen-webinar-funnelAutomated evergreen webinar funnel. Simulates a "live" experience on-demand so leads can register and watch immediately (or at scheduled slots). Best for scaling a proven webinar without live hosting.
| 1 | # Evergreen Webinar Funnel |
| 2 | |
| 3 | Take a proven live webinar and run it on autopilot 24/7. |
| 4 | |
| 5 | ## Flow |
| 6 | |
| 7 | ``` |
| 8 | Traffic → Registration → Watch Page (simulated live) → Offer Page → Checkout |
| 9 | ``` |
| 10 | |
| 11 | | Page | Purpose | |
| 12 | |---|---| |
| 13 | | Registration | Capture email, pick a session time | |
| 14 | | Watch Page | Pre-recorded video with live-like UI | |
| 15 | | Offer Page | Present offer — appears mid/post webinar | |
| 16 | | Checkout | Payment capture | |
| 17 | |
| 18 | ## Registration Page Requirements |
| 19 | - **Multiple session times** — "Pick the best time": next 15 min, next hour, tomorrow 10am, tomorrow 7pm |
| 20 | - **"Just in time" framing** — "Your session starts in 14 minutes" |
| 21 | - **Countdown to session** — builds urgency to attend |
| 22 | - **SMS/email reminder** option |
| 23 | |
| 24 | ## Watch Page "Live" Elements |
| 25 | - Chat simulation (optional — pre-loaded messages) |
| 26 | - "X people watching now" counter |
| 27 | - **No scrub bar** — video plays linearly like a live session |
| 28 | - **CTA appears at offer point** — typically 40–60 min in |
| 29 | - Time-limited replay (24–48 hours) |
| 30 | |
| 31 | ## Session Schedule Pattern |
| 32 | ```javascript |
| 33 | // Generate "next available" sessions |
| 34 | function getNextSessions() { |
| 35 | const now = new Date(); |
| 36 | return [ |
| 37 | { label: 'Starting in 15 minutes', time: addMinutes(now, 15) }, |
| 38 | { label: 'Today at ' + formatTime(addHours(now, 1)), time: addHours(now, 1) }, |
| 39 | { label: 'Tomorrow at 10:00 AM', time: nextDayAt(10) }, |
| 40 | { label: 'Tomorrow at 7:00 PM', time: nextDayAt(19) }, |
| 41 | ]; |
| 42 | } |
| 43 | ``` |
| 44 | |
| 45 | ## Email Sequence |
| 46 | |
| 47 | | Email | Timing | Purpose | |
| 48 | |---|---|---| |
| 49 | | Confirmation | Immediately | Session time + calendar link | |
| 50 | | Reminder 1 | 1 hour before | "Your session starts soon" | |
| 51 | | Reminder 2 | 5 min before | "We're going live — join now" | |
| 52 | | Replay | +4 hours after session | "Missed it? Watch the replay" | |
| 53 | | Offer Reminder | +24 hours | Social proof + expiring offer | |
| 54 | | Last Chance | +48 hours | "Replay expires tonight" | |
| 55 | |
| 56 | ## Conversion Benchmarks |
| 57 | |
| 58 | | Metric | Target | |
| 59 | |---|---| |
| 60 | | Registration rate | > 30% | |
| 61 | | Show rate (reg → watch) | > 35% | |
| 62 | | Watch > 50% of video | > 50% of attendees | |
| 63 | | Webinar → offer page | > 20% | |
| 64 | | Offer → purchase | > 5% | |
| 65 | | Overall reg → purchase | > 2% | |
| 66 | |
| 67 | ## Ethical Guidelines |
| 68 | - Be transparent that it's pre-recorded (or avoid claiming it's live) |
| 69 | - Don't fake chat messages from real people |
| 70 | - Honor any "limited time" offers — don't show them again after expiry |
| 71 | - Give genuine replay access as promised |