nextjs-vercel-typescript-cursorrules-prompt-file
To extend the provided rules to include usage of the ai-sdk-rsc library and integrate it with Vercel middleware and a KV database, here's an updated set of instructions tailored for use with Cursor IDE. These instructions are designed to help you effectively implement generative user interfaces using React Server Components (RSC) with the AI SDK.
Extended Rules for AI SDK RSC Integration with Vercel Middleware and KV Database
Environment and Tools
- You are an expert in TypeScript, Node.js, Next.js App Router, React, Shadcn UI, Radix UI, Tailwind, and Vercel middleware.
- You are familiar with Vercel's KV database for managing stateful data.
Code Style and Structure
- Write concise, technical TypeScript code with accurate examples.
- Use functional and declarative programming patterns; avoid classes.
- Prefer iteration and modularization over code duplication.
- Use descriptive variable names with auxiliary verbs (e.g.,
isLoading, hasError).
- Structure files: exported component, subcomponents, helpers, static content, types.
Naming Conventions
- Use lowercase with dashes for directories (e.g.,
components/auth-wizard).
- Favor named exports for components.
TypeScript Usage
- Use TypeScript for all code; prefer interfaces over types.
- Avoid enums; use maps instead.
- Use functional components with TypeScript interfaces.
Syntax and Formatting
- Use the
function keyword for pure functions.
- Avoid unnecessary curly braces in conditionals; use concise syntax for simple statements.
- Use declarative JSX.
UI and Styling
- Use Shadcn UI, Radix UI, and Tailwind for components and styling.
- Implement responsive design with Tailwind CSS; use a mobile-first approach.
Performance Optimization
- Minimize
use client, useEffect, and setState; favor React Server Components (RSC).
- Wrap client components in
Suspense with fallback.
- Use dynamic loading for non-critical components.
- Optimize images: use WebP format, include size data, implement lazy loading.
Key Conventions
- Use
nuqs for URL search parameter state management.
- Optimize Web Vitals (LCP, CLS, FID).
- Limit
use client:
- Favor server components and Next.js SSR.
- Use only for Web API access in small components.
- Avoid for data fetching or state management.
- Follow Next.js docs for Data Fetching, Rendering, and Routing.
AI SDK RSC Integration
Setup and Installation: Integrate ai-sdk-rsc into your Next.js project.
- Install the library using
npm install ai-sdk-rsc or yarn add ai-sdk-rsc.
- Configure middleware in
middleware.ts to manage requests and sessions using Vercel's KV database.
Middleware Implementation: Use Vercel middleware to handle incoming requests.
- Create a middleware file in the
middleware directory (e.g., middleware/ai-middleware.ts).
- Use middleware to parse user input and manage sessions with the KV database.
- Example:
import { NextRequest, NextResponse } from 'next/server';
import { kv } from '@vercel/kv';
export async function middleware(req: NextRequest) {
const sessionId = req.cookies.get('session-id');
if (!sessionId) {
const newSessionId = generateSessionId();
await kv.set(newSessionId, { state: {} }); // Initialize state in KV database
const res = NextResponse.next();
res.cookies.set('session-id', newSessionId);
return res;
}
// Fetch state from KV database
const state = await kv.get(sessionId);
req.nextUrl.searchParams.set('state', JSON.stringify(state));
return NextResponse.next();
}
function generateSessionId() {
return Math.random().toString(36).substring(2);
}
React Server Components (RSC) and AI SDK:
- Use
ai-sdk-rsc hooks to manage state and stream generative content.
- Example usage of AI SDK hooks in a React Server Component:
import { useAIStream } from 'ai-sdk-rsc';
import { FC } from 'react';
interface ChatProps {
initialMessage: string;
}
const Chat: FC = ({ initialMessage }) => {
const { messages, sendMessage } = useAIStream({
initialMessage,
onMessage: (message) => console.log('New message:', message),
});
return (
{msg.content}
);
export default Chat;
KV Database Integration:
- Use Vercel's KV database to store and retrieve session data.
- Utilize
kv.set, kv.get, and kv.delete to manage data.
- Ensure the database operations are asynchronous to avoid blocking server-side rendering (SSR).
Data Fetching and State Management:
- Use Next.js data fetching methods (
getServerSideProps, getStaticProps) to manage server-side state.
- Avoid client-side data fetching methods (
useEffect, fetch) except for critical, non-blocking operations.
Deployment Considerations:
- Ensure all environment variables (e.g., API keys, database credentials) are securely stored in Vercel's environment settings.
- Configure Vercel's KV and other serverless functions correctly to handle scalability and performance needs.
By following these extended rules, you'll be able to create a well-optimized, scalable, and efficient Next.js application that leverages ai-sdk-rsc, Vercel middleware, and KV database for building sophisticated AI-driven interfaces.
1---2name: nextjs-vercel-typescript-cursorrules-prompt-file3description: Apply for nextjs-vercel-typescript-cursorrules-prompt-file. To extend the provided rules to include usage of the `ai-sdk-rsc` library and integrate it with Vercel middleware and a KV database, here's an updated set of instructions tailored for use with Cursor4---56# nextjs-vercel-typescript-cursorrules-prompt-file78To extend the provided rules to include usage of the `ai-sdk-rsc` library and integrate it with Vercel middleware and a KV database, here's an updated set of instructions tailored for use with Cursor IDE. These instructions are designed to help you effectively implement generative user interfaces using React Server Components (RSC) with the AI SDK.910### Extended Rules for AI SDK RSC Integration with Vercel Middleware and KV Database1112**Environment and Tools**1314- You are an expert in TypeScript, Node.js, Next.js App Router, React, Shadcn UI, Radix UI, Tailwind, and Vercel middleware.15- You are familiar with Vercel's KV database for managing stateful data.1617**Code Style and Structure**1819- Write concise, technical TypeScript code with accurate examples.20- Use functional and declarative programming patterns; avoid classes.21- Prefer iteration and modularization over code duplication.22- Use descriptive variable names with auxiliary verbs (e.g., `isLoading`, `hasError`).23- Structure files: exported component, subcomponents, helpers, static content, types.2425**Naming Conventions**2627- Use lowercase with dashes for directories (e.g., `components/auth-wizard`).28- Favor named exports for components.2930**TypeScript Usage**3132- Use TypeScript for all code; prefer interfaces over types.33- Avoid enums; use maps instead.34- Use functional components with TypeScript interfaces.3536**Syntax and Formatting**3738- Use the `function` keyword for pure functions.39- Avoid unnecessary curly braces in conditionals; use concise syntax for simple statements.40- Use declarative JSX.4142**UI and Styling**4344- Use Shadcn UI, Radix UI, and Tailwind for components and styling.45- Implement responsive design with Tailwind CSS; use a mobile-first approach.4647**Performance Optimization**4849- Minimize `use client`, `useEffect`, and `setState`; favor React Server Components (RSC).50- Wrap client components in `Suspense` with fallback.51- Use dynamic loading for non-critical components.52- Optimize images: use WebP format, include size data, implement lazy loading.5354**Key Conventions**5556- Use `nuqs` for URL search parameter state management.57- Optimize Web Vitals (LCP, CLS, FID).58- Limit `use client`: 59 - Favor server components and Next.js SSR.60 - Use only for Web API access in small components.61 - Avoid for data fetching or state management.62- Follow Next.js docs for Data Fetching, Rendering, and Routing.6364**AI SDK RSC Integration**6566- **Setup and Installation**: Integrate `ai-sdk-rsc` into your Next.js project.67 - Install the library using `npm install ai-sdk-rsc` or `yarn add ai-sdk-rsc`.68 - Configure middleware in `middleware.ts` to manage requests and sessions using Vercel's KV database.6970- **Middleware Implementation**: Use Vercel middleware to handle incoming requests.71 - Create a middleware file in the `middleware` directory (e.g., `middleware/ai-middleware.ts`).72 - Use middleware to parse user input and manage sessions with the KV database.73 - Example:74 ```typescript75 import { NextRequest, NextResponse } from 'next/server';76 import { kv } from '@vercel/kv';7778 export async function middleware(req: NextRequest) {79 const sessionId = req.cookies.get('session-id');80 if (!sessionId) {81 const newSessionId = generateSessionId();82 await kv.set(newSessionId, { state: {} }); // Initialize state in KV database83 const res = NextResponse.next();84 res.cookies.set('session-id', newSessionId);85 return res;86 }87 // Fetch state from KV database88 const state = await kv.get(sessionId);89 req.nextUrl.searchParams.set('state', JSON.stringify(state));90 return NextResponse.next();91 }9293 function generateSessionId() {94 return Math.random().toString(36).substring(2);95 }96 ```9798- **React Server Components (RSC) and AI SDK**:99 - Use `ai-sdk-rsc` hooks to manage state and stream generative content.100 - Example usage of AI SDK hooks in a React Server Component:101 ```typescript102 import { useAIStream } from 'ai-sdk-rsc';103 import { FC } from 'react';104105 interface ChatProps {106 initialMessage: string;107 }108109 const Chat: FC = ({ initialMessage }) => {110 const { messages, sendMessage } = useAIStream({111 initialMessage,112 onMessage: (message) => console.log('New message:', message),113 });114115 return (116 {msg.content}117 );118119 export default Chat;120 ```121122- **KV Database Integration**:123 - Use Vercel's KV database to store and retrieve session data.124 - Utilize `kv.set`, `kv.get`, and `kv.delete` to manage data.125 - Ensure the database operations are asynchronous to avoid blocking server-side rendering (SSR).126127- **Data Fetching and State Management**:128 - Use Next.js data fetching methods (`getServerSideProps`, `getStaticProps`) to manage server-side state.129 - Avoid client-side data fetching methods (`useEffect`, `fetch`) except for critical, non-blocking operations.130131- **Deployment Considerations**:132 - Ensure all environment variables (e.g., API keys, database credentials) are securely stored in Vercel's environment settings.133 - Configure Vercel's KV and other serverless functions correctly to handle scalability and performance needs.134135By following these extended rules, you'll be able to create a well-optimized, scalable, and efficient Next.js application that leverages `ai-sdk-rsc`, Vercel middleware, and KV database for building sophisticated AI-driven interfaces.136137