Scroll-driven 3D UI mockup tours, annotated feature reveals, and interactive onboarding flows for SaaS
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
"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 OrchestratorConnect with a certified Prompt.Doctor Orchestrator to deploy this framework for you.
No coding required. You will use ChatGPT or Claude as your AI tool. Follow these steps in order — do not skip ahead.
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.
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.
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.
Add your API keys as secrets
Critical — Novice UsersIn 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.
Need help with Anthropic?
Get your ANTHROPIC_API_KEY from console.anthropic.com. The guide covers model selection, cost management, and troubleshooting.
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."
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.
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.
5 modules · 46 prompts · 5 workflow stages
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 promptsScroll-Driven Camera Tour
GSAP ScrollTrigger camera path through 3D mockup layout, focus-on-feature zoom animation, parallax depth layers, and scroll progress indicator
10 promptsAnnotation 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 promptsInteractive Hotspots
Clickable feature hotspots on 3D UI mockups, spring-scale hover animation, feature detail modal with demo video embed, and hotspot completion tracking
9 promptsPersonalization & 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 promptsWrite 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.
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.
system
18 prompts
workflow
10 prompts
templates
9 prompts
prompts
9 prompts
"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."
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."
VP of Product
Developer tools SaaS, 80K users
All 46 prompts across 5 modules are unlocked for your account.
Lifetime access