HomeFrameworks3D SaaS Onboarding & Feature Tours
ProFeaturedNewv1.0L3 Semantic FrameworkUpdated July 2026

3D SaaS Onboarding & Feature Tours

Scroll-driven 3D UI mockup tours, annotated feature reveals, and interactive onboarding flows for SaaS

4.9(267 reviews)4.6K installs46 prompts5 stages3D / Web3D
GPT-4Claude

The 3D SaaS Onboarding & Feature Tours framework is the AI prompt system for SaaS product teams who understand that the onboarding experience is the highest-leverage moment in the customer lifecycle. Built on React Three Fiber with scroll-driven camera animation and a deep focus on the specific UX patterns of SaaS onboarding — feature discovery, value demonstration, and activation milestones — every prompt is engineered around the business goal: getting users to their "aha moment" faster. The framework covers the complete 3D onboarding stack: extruded browser window geometry with live UI screenshot textures, scroll-driven camera flights through feature mockups, animated annotation callouts, personalized feature paths based on user role, and the analytics integration that tells you exactly where users drop off.

Full Access Unlocked

All 46 prompts · All 5 modules

30-day money-back guarantee
Secure checkout via Stripe
Lifetime updates (currently v1.0)
Instant delivery after purchase

"The scroll-driven feature annotation reveal prompt built our product tour in 3 days. The dashOffset ..."

Head of Growth · B2B SaaS, $12M ARR

Need expert implementation?

Hire an Orchestrator

Connect with a certified Prompt.Doctor Orchestrator to deploy this framework for you.

How to use this framework

No coding required. You will use ChatGPT or Claude as your AI tool. Follow these steps in order — do not skip ahead.

1

Purchase & download the framework

Click the buy button on this page. After checkout, go to the and hit Download .zip. Unzip it — you'll get a .md file (the full framework) and a .pdf (easy to read reference). Keep both open.

2

Open your project — new or existing

This dashboard is designed to integrate into any existing project or be built as a standalone app. If you already have a site in Airo (or Cursor, Bolt, etc.), open that project. If you're starting fresh, create a new project. The Orchestrator Prompt handles both cases — it scans what's already there and adds only what's missing.

3

Paste the Orchestrator Prompt into your builder's chat

Open the on this page. Copy the Orchestrator Prompt and paste it into your AI builder's chat. It will scaffold the full admin system — secure login, email marketing module, booking engine, and CMS — on top of your existing codebase. This takes 2–5 minutes.

4

Add your API keys as secrets

Critical — Novice Users

In your builder, go to Settings → Secrets and add the keys your app needs. For this framework: STRIPE_SECRET_KEY (for booking payments — get it from your Stripe dashboard), ANTHROPIC_API_KEY (for AI-assisted content — get it from console.anthropic.com), and DATABASE_URL (your MySQL connection string). No key is needed for the admin login, CMS, or email modules — those run on your existing infrastructure.

Don't have a MySQL server?

You can purchase a shared hosting plan with cPanel and MySQL at host.esgwon.dev. Once your account is set up, follow the step-by-step guide to create your database and connect it to your AI website builder.

How to set up cPanel MySQL & connect to your AI website →

Need help with Stripe?

Get your STRIPE_SECRET_KEY and STRIPE_PUBLISHABLE_KEY from your Stripe dashboard. The guide covers test keys, webhook setup, and going live.

Stripe API keys — setup & testing guide →

Need help with Anthropic?

Get your ANTHROPIC_API_KEY from console.anthropic.com. The guide covers model selection, cost management, and troubleshooting.

Anthropic API key — setup & model guide →

Prompting Airo after setup — always name the file

When asking Airo to add tables, columns, or features to the admin dashboard, always include src/server/lib/admin-db.ts in your prompt. Without it, Airo may target the wrong database. Example: "Add a bookings table in the admin database (src/server/lib/admin-db.ts) — do not touch any other database connection in this project."

See safe prompting examples →
5

Run the framework prompts inside your live app

Your app is now running in the builder's preview panel. Open the on this page, copy each prompt one at a time, and paste it into your builder's chat. Replace every [BRACKET] with your real data before sending. Work through the stages in order — each stage output feeds the next.

6

Test end-to-end, then publish or hand off to your client

Walk through the admin as a real user: log in, create a booking, send a test email campaign, update a CMS image, and run the Safe-to-Publish gate. Once everything passes, click Publish in your builder. Because this is a white-label dashboard, your client accesses it at /admin on their own domain — no Prompt.Doctor branding, no third-party login required.

Who is this for?

SaaS product teams building interactive feature tours for landing pages and in-app onboarding
Growth teams building scroll-driven product demos that replace static screenshots
Developer tools companies building interactive documentation with 3D code editor mockups
Enterprise SaaS companies building personalized onboarding flows for different user roles

Everything you get

46 production-ready prompts across 5 SaaS onboarding areas
3D browser window mockup system with extruded geometry and live screenshot textures
Scroll-driven camera flight through feature mockups with GSAP ScrollTrigger
Animated annotation callout system with spring-physics lines and HTML panels
Personalized onboarding flow: role selection drives feature highlight sequence
Analytics integration: engagement tracking, drop-off detection, and completion events

What's Inside

5 modules · 46 prompts · 5 workflow stages

Modules(5 total)

3D UI Mockup System

Extruded browser window geometry (chrome bar, viewport, shadow), screenshot texture loading and updating, multi-screen layout in 3D space, and screen glow effect

9 prompts

Scroll-Driven Camera Tour

GSAP ScrollTrigger camera path through 3D mockup layout, focus-on-feature zoom animation, parallax depth layers, and scroll progress indicator

10 prompts

Annotation System

World-space callout line from 3D UI element to HTML panel, spring-physics line drawing animation, Drei Html overlay for description content, and sequential reveal timing

9 prompts

Interactive Hotspots

Clickable feature hotspots on 3D UI mockups, spring-scale hover animation, feature detail modal with demo video embed, and hotspot completion tracking

9 prompts

Personalization & Analytics

User role/goal selection UI, role-to-feature-path mapping, onboarding step state machine, Segment/Mixpanel event tracking, and drop-off recovery prompts

9 prompts
Sample Prompts(46 total)
3D Browser Window Mockup·GPT-4

Write a React Three Fiber component that renders a realistic 3D browser window mockup for a SaaS product tour. Requirements: (1) Browser chrome: a rounded rectangle frame (use Shape + ExtrudeGeometry, depth: 0.08) with a top bar containing three colored circles (close/minimize/maximize — red, yellow, green spheres) and a URL bar (a white rounded rectangle with a Drei Text label). Material: MeshStandardMaterial with a dark gray color (#1E1E2E) and slight metalness: 0.3, roughness: 0.7. (2) Viewport: a PlaneGeometry(aspect_width, aspect_height) inset into the browser frame. Accept a prop screenshotTexture: THREE.Texture — apply as map on MeshBasicMaterial. Add a subtle inner shadow by rendering a slightly smaller dark plane behind the screenshot. (3) Screen glow: a SpotLight positioned in front of the screen, pointing at the viewport, with a soft cyan color (#00E5FF), intensity: 0.3, angle: 0.4, penumbra: 0.8. (4) Drop shadow: a ContactShadows component below the browser window. (5) Float animation: wrap in Drei <Float speed={0.8} rotationIntensity={0.1} floatIntensity={0.3}> for a subtle idle animation. (6) Props: screenshotUrl: string (load with useTexture), width: number (default 4), aspectRatio: number (default 16/9), title: string (shown in URL bar). (7) Export as BrowserMockup3D. Full TypeScript.

Scroll-Driven Feature Annotation Reveal·Claude

Write a React Three Fiber component that reveals annotated feature callouts on a 3D SaaS UI mockup as the user scrolls. Requirements: (1) Use @react-three/drei ScrollControls with pages={3} and damping={0.2}. Inside, use useScroll() to get scroll offset. (2) Three feature annotations at scroll offsets 0.2, 0.5, and 0.8. Each annotation: (a) A world-space anchor point on the 3D browser mockup (e.g., a button, a chart, a nav item). (b) An animated line from the anchor to a label position: use a Line2 component, animate its dashOffset from 1→0 using useFrame when the annotation becomes active (within scroll range ±0.15). This creates a "drawing" line effect. (c) A Drei Html panel at the label position: styled card with feature title, 1-sentence description, and a "Learn more" link. Animate the panel opacity and translateY from hidden to visible with CSS transition when active. (3) Camera: useFrame reads scroll.offset, lerps camera.position along a predefined path: [0,0,8] → [2,1,5] → [-1,0.5,4] → [0,0,6]. (4) Active annotation: when a scroll range is active, spring-animate a highlight ring (TorusGeometry, thin) around the anchor point on the mockup. (5) Completion: at scroll offset > 0.9, trigger an onTourComplete() callback and show a CTA panel. Full TypeScript.

Workflow Architecture(5 stages)

system

18 prompts

Stage 1

workflow

10 prompts

Stage 2

templates

9 prompts

Stage 3

prompts

9 prompts

Stage 4

Everything included

3D UI mockup system: extruded browser/app window geometry with live screenshot textures
Scroll-driven feature reveal: camera flies through 3D UI mockups as user scrolls
Annotation system: animated callout lines from 3D UI elements to HTML description panels
Interactive hotspot tours: click-to-explore feature highlights with spring animations
Progress system: step indicator, completion tracking, and skip/resume controls
Personalization: user role/goal selection drives which features are highlighted
Analytics integration: track feature engagement, drop-off points, and completion rates
Full Access Unlocked

What builders say

"The scroll-driven feature annotation reveal prompt built our product tour in 3 days. The dashOffset line-drawing animation — the callout line "drawing itself" to the feature — is the interaction that makes our demo feel like it was built by a team of 10, not one developer with a prompt."

Ho

Head of Growth

B2B SaaS, $12M ARR

"The 3D browser window mockup prompt is now our standard for every feature announcement. The ExtrudeGeometry chrome with the three colored circles, the screen glow, the Float idle animation — it looks like a Vercel or Linear product page, and it took 2 hours to build."

Vo

VP of Product

Developer tools SaaS, 80K users

You have full access

All 46 prompts across 5 modules are unlocked for your account.

$239$339

Lifetime access