Now in private beta

AI-powered product tours
for Next.js — zero config

One command scans your app.
One component enables AI guidance.
Your users get instant help.
No documentation needed.

Terminal
$ npx @ai-guide/cli init
✨ Scanning your Next.js app...
📁 Found 23 routes
🧬 Creating AI context...
✅ Done!
30s
Setup time
80%
Less support tickets
$0
Documentation cost

See it in action

Real Next.js app with AI Guide enabled • No actors, no scripts

Join the waitlist

No spam. We'll only email when we launch.

Two steps to perfect user guidance

Step 1: Initialize
npx @ai-guide/cli init (WIP)
Step 2: Add component
// app/layout.tsx
import { AiGuide } from '@ai-guide/react'

export default function Layout({ children }) {
  return (
    <html>
      <body>
        {children}
        <AiGuide />
      </body>
    </html>
  )
}