Install and configure VibeReview in 2 minutes
1npm install @vibereview/reactIn your app/layout.tsx (Next.js) or App.tsx (React) file:
1import { VibeReviewProvider } from '@vibereview/react';
2
3export default function Layout({ children }) {
4 return (
5 <VibeReviewProvider
6 projectId="proj_abc123"
7 apiKey="vbr_xyz789"
8 >
9 {children}
10 </VibeReviewProvider>
11 );
12}Before using VibeReview in your code, create a trigger in the Dashboard:
Copy this prompt to help your AI agent integrate VibeReview into your project.