From shared
Stack context for Next.js + Vercel projects — App Router, RSC, Prisma, Tailwind, and Vercel deployment conventions
npx claudepluginhub silviaare95/xari-plugins --plugin sharedThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides slash command development for Claude Code: structure, YAML frontmatter, dynamic arguments, bash execution, user interactions, organization, and best practices.
This profile is automatically loaded when working in a Next.js project deployed to Vercel.
"use client" only when neededapp/
├── (auth)/ # Route groups for layout scoping
│ ├── login/
│ └── register/
├── api/ # API routes
│ └── resource/
│ └── route.ts # GET, POST, PUT, DELETE handlers
├── layout.tsx # Root layout
└── page.tsx # Home page
src/
├── components/ # Shared React components
├── lib/ # Utilities, config, Prisma client
└── server/ # Server-only code (services, auth)
prisma/
└── schema.prisma
export async function GET(request: Request)"use server" in action filesexport const metadata = { ... } or generateMetadata()loading.tsx for Suspense boundarieserror.tsx for error boundariesmiddleware.ts at project root for auth/redirects.env in productionexport const runtime = 'edge' sparinglyrevalidate export for static pages that updatenext/image, Vercel handles the CDN@vercel/analytics for web vitalsvercel.json crons for scheduled tasksDATABASE_URL with ?pgbouncer=true&connection_limit=1 for serverless"use client" components smallSuspense boundaries for streaming<Link> (automatic in App Router)Promise.all