One command scans your app.
One component enables AI guidance.
Your users get instant help.
No documentation needed.
$ npx @ai-guide/cli init
✨ Scanning your Next.js app...
📁 Found 23 routes
🧬 Creating AI context...
✅ Done!Real Next.js app with AI Guide enabled • No actors, no scripts
No spam. We'll only email when we launch.
npx @ai-guide/cli init (WIP)// app/layout.tsx
import { AiGuide } from '@ai-guide/react'
export default function Layout({ children }) {
return (
<html>
<body>
{children}
<AiGuide />
</body>
</html>
)
}