[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-bootstrap":3,"mdc--ds5ism-key":34,"related-repo-vercel-bootstrap":2058,"related-org-vercel-bootstrap":2163},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"bootstrap","bootstrap Vercel-linked repositories","Project bootstrapping orchestrator for repos that depend on Vercel-linked resources (databases, auth, and managed integrations). Use when setting up or repairing a repository so linking, environment provisioning, env pulls, and first-run db\u002Fdev commands happen in the correct safe order.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel","Vercel","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel.png",[12,14,17,20],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Configuration","configuration",{"name":18,"slug":19,"type":13},"Local Development","local-development",{"name":21,"slug":22,"type":13},"Deployment","deployment",226,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fvercel-plugin","2026-04-06T18:56:18.297868",null,36,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"Comprehensive Vercel ecosystem plugin — relational knowledge graph, skills for every major product, specialized agents, and Vercel conventions. Turns any AI agent into a Vercel expert.","https:\u002F\u002Fgithub.com\u002Fvercel\u002Fvercel-plugin\u002Ftree\u002FHEAD\u002Fskills\u002Fbootstrap","---\nname: bootstrap\ndescription: Project bootstrapping orchestrator for repos that depend on Vercel-linked resources (databases, auth, and managed integrations). Use when setting up or repairing a repository so linking, environment provisioning, env pulls, and first-run db\u002Fdev commands happen in the correct safe order.\nmetadata:\n  priority: 8\n  docs:\n    - \"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fgetting-started-with-vercel\"\n    - \"https:\u002F\u002Fnextjs.org\u002Fdocs\u002Fgetting-started\u002Finstallation\"\n  sitemap: \"https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml\"\n  pathPatterns:\n    - '.env.example'\n    - '.env.sample'\n    - '.env.template'\n    - 'README*'\n    - 'docs\u002F**\u002Fsetup*'\n    - 'package.json'\n    - 'drizzle.config.*'\n    - 'prisma\u002Fschema.prisma'\n    - 'auth.*'\n    - 'src\u002F**\u002Fauth.*'\n  bashPatterns:\n    - '\\\\bcp\\\\s+\\\\.env\\\\.(?:example|sample|template)\\\\s+\\\\.env\\\\.local\\\\b'\n    - '\\\\b(?:npm|pnpm|bun|yarn)\\\\s+run\\\\s+db:(?:push|seed|migrate|generate)\\\\b'\n    - '\\\\b(?:npm|pnpm|bun|yarn)\\\\s+run\\\\s+dev\\\\b'\n    - '\\\\bvercel\\\\s+link\\\\b'\n    - '\\\\bvercel\\\\s+integration\\\\s+(?:add|install)\\\\b'\n    - '\\\\bvercel\\\\s+env\\\\s+pull\\\\b'\n  importPatterns:\n    - '@neondatabase\u002Fserverless'\n    - 'drizzle-orm'\n    - '@upstash\u002Fredis'\n    - '@vercel\u002Fblob'\n    - '@vercel\u002Fedge-config'\n    - 'next-auth'\n    - '@auth\u002Fcore'\n    - 'better-auth'\nchainTo:\n  -\n    pattern: '@vercel\u002F(postgres|kv)|\\b(KV_REST_API_URL|POSTGRES_URL)\\b'\n    targetSkill: vercel-storage\n    message: '@vercel\u002Fpostgres and @vercel\u002Fkv are sunset — loading Vercel Storage guidance for Neon and Upstash migration.'\n  -\n    pattern: 'from\\s+[''\"\"](next-auth|@auth\u002Fcore|@clerk\u002Fnextjs|better-auth)[''\"\"]'\n    targetSkill: auth\n    message: 'Auth library detected during bootstrap — loading Auth guidance for Clerk Marketplace setup and middleware patterns.'\n  -\n    pattern: 'OPENAI_API_KEY|ANTHROPIC_API_KEY|AI_GATEWAY'\n    targetSkill: env-vars\n    message: 'AI provider env vars detected — loading Environment Variables guidance for OIDC-based auth via vercel env pull.'\n    skipIfFileContains: 'VERCEL_OIDC|vercel env pull'\nretrieval:\n  aliases:\n    - project setup\n    - repo init\n    - getting started\n    - scaffold\n  intents:\n    - set up project\n    - initialize repo\n    - link vercel project\n    - pull env vars\n  entities:\n    - vercel link\n    - env pull\n    - database setup\n    - first run\n\n---\n\n# Project Bootstrap Orchestrator\n\nExecute bootstrap in strict order. Do not run migrations or development server until project linking and environment verification are complete.\n\n## Rules\n\n- Do not run `db:push`, `db:migrate`, `db:seed`, or `dev` until Vercel linking is complete and env keys are verified.\n- Prefer Vercel-managed provisioning (`vercel integration ...`) for shared resources.\n- Use provider CLIs only as fallback when Vercel integration flow is unavailable.\n- Never echo secret values in terminal output, logs, or summaries.\n\n## Preflight\n\n1. Confirm Vercel CLI is installed and authenticated.\n\n```bash\nvercel --version\nvercel whoami\n```\n\n2. Confirm repo linkage by checking `.vercel\u002Fproject.json`.\n3. If not linked, inspect available teams\u002Fprojects before asking the user to choose:\n\n```bash\nvercel teams ls\nvercel projects ls --scope \u003Cteam>\nvercel link --yes --scope \u003Cteam> --project \u003Cproject>\n```\n\n4. Find the env template in priority order: `.env.example`, `.env.sample`, `.env.template`.\n5. Create local env file if missing:\n\n```bash\ncp .env.example .env.local\n```\n\n## Resource Setup: Postgres\n\n### Preferred path (Vercel-managed Neon)\n\n1. Read integration setup guidance:\n\n```bash\nvercel integration guide neon\n```\n\n2. Add Neon integration to the Vercel scope:\n\n```bash\nvercel integration add neon --scope \u003Cteam>\n```\n\n3. Verify expected environment variable names exist in Vercel and pull locally:\n\n```bash\nvercel env ls\nvercel env pull .env.local --yes\n```\n\n### Fallback path 1 (Dashboard)\n\n1. Provision Neon through the Vercel dashboard integration UI.\n2. Re-run `vercel env pull .env.local --yes`.\n\n### Fallback path 2 (Neon CLI)\n\nUse Neon CLI only when Vercel-managed provisioning is unavailable. After creating resources, add required env vars in Vercel and pull again.\n\n## AUTH_SECRET Generation\n\nGenerate a high-entropy secret without printing it, then store it in Vercel and refresh local env:\n\n```bash\nAUTH_SECRET=\"$(node -e \"console.log(require('node:crypto').randomBytes(32).toString('base64url'))\")\"\nprintf \"%s\" \"$AUTH_SECRET\" | vercel env add AUTH_SECRET development preview production\nunset AUTH_SECRET\nvercel env pull .env.local --yes\n```\n\n## Env Verification\n\nCompare required keys from template file against `.env.local` keys (names only, never values):\n\n```bash\ntemplate_file=\"\"\nfor candidate in .env.example .env.sample .env.template; do\n  if [ -f \"$candidate\" ]; then\n    template_file=\"$candidate\"\n    break\n  fi\ndone\n\ncomm -23 \\\n  \u003C(grep -E '^[A-Za-z_][A-Za-z0-9_]*=' \"$template_file\" | cut -d '=' -f 1 | sort -u) \\\n  \u003C(grep -E '^[A-Za-z_][A-Za-z0-9_]*=' .env.local | cut -d '=' -f 1 | sort -u)\n```\n\nProceed only when missing key list is empty.\n\n## App Setup\n\nAfter linkage + env verification:\n\n```bash\nnpm run db:push\nnpm run db:seed\nnpm run dev\n```\n\nUse the repository package manager (`npm`, `pnpm`, `bun`, or `yarn`) and run only scripts that exist in `package.json`.\n\n## UI Baseline for Next.js + shadcn Projects\n\nAfter linkage and env verification, establish the UI foundation before feature work:\n1. Add a baseline primitive set: `npx shadcn@latest add button card input label textarea select switch tabs dialog alert-dialog sheet dropdown-menu badge separator skeleton table`\n2. Apply the Geist font fix in `layout.tsx` and `globals.css`.\n3. Confirm the app shell uses `bg-background text-foreground`.\n4. Default to dark mode for product, admin, and AI apps unless the repo is clearly marketing-first.\n\n## Bootstrap Verification\n\nConfirm each checkpoint:\n\n- `vercel whoami` succeeds.\n- `.vercel\u002Fproject.json` exists and matches chosen project.\n- Postgres integration path completed (Vercel integration, dashboard, or provider CLI fallback).\n- `vercel env pull .env.local --yes` succeeds.\n- Required env key diff is empty.\n- Database command status is recorded (`db:push`, `db:seed`, `db:migrate`, `db:generate` as applicable).\n- `dev` command starts without immediate config\u002Fauth\u002Fenv failure.\n\nIf verification fails, stop and report exact failing step plus remediation.\n\n## Summary Format\n\nReturn a final bootstrap summary in this format:\n\n```md\n## Bootstrap Result\n- **Linked Project**: \u003Cteam>\u002F\u003Cproject>\n- **Resource Path**: vercel-integration-neon | dashboard-neon | neon-cli\n- **Env Keys**: \u003Ccount> required, \u003Ccount> present, \u003Ccount> missing\n- **Secrets**: AUTH_SECRET set in Vercel (value never shown)\n- **Migration Status**: not-run | success | failed (\u003Cstep>)\n- **Dev Result**: not-run | started | failed\n```\n\n## Bootstrap Next Steps\n\n- If env keys are still missing, add the missing keys in Vercel and re-run `vercel env pull .env.local --yes`.\n- If DB commands fail, fix connectivity\u002Fschema issues and re-run only the failed db step.\n- If `dev` fails, resolve runtime errors, then restart with your package manager's `run dev`.\n\n## next-forge Projects\n\nIf the project was scaffolded with `npx next-forge init` (detected by `pnpm-workspace.yaml` + `packages\u002Fauth` + `packages\u002Fdatabase` + `@repo\u002F*` imports):\n\n1. Env files are per-app (`apps\u002Fapp\u002F.env.local`, `apps\u002Fweb\u002F.env.local`, `apps\u002Fapi\u002F.env.local`) plus `packages\u002Fdatabase\u002F.env`.\n2. Run `pnpm migrate` (not `db:push`) — it runs `prisma format` + `prisma generate` + `prisma db push`.\n3. Minimum env vars: `DATABASE_URL`, `CLERK_SECRET_KEY`, `NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY`, `NEXT_PUBLIC_APP_URL`, `NEXT_PUBLIC_WEB_URL`, `NEXT_PUBLIC_API_URL`.\n4. Optional services (Stripe, Resend, PostHog, etc.) can be skipped initially — but remove their `@repo\u002F*` imports from app `env.ts` files to avoid validation errors.\n5. Deploy as 3 separate Vercel projects with root directories `apps\u002Fapp`, `apps\u002Fapi`, `apps\u002Fweb`.\n\n=> skill: next-forge — Full next-forge monorepo guide\n",{"data":35,"body":99},{"name":4,"description":6,"metadata":36,"chainTo":69,"retrieval":83},{"priority":37,"docs":38,"sitemap":41,"pathPatterns":42,"bashPatterns":53,"importPatterns":60},8,[39,40],"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fgetting-started-with-vercel","https:\u002F\u002Fnextjs.org\u002Fdocs\u002Fgetting-started\u002Finstallation","https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml",[43,44,45,46,47,48,49,50,51,52],".env.example",".env.sample",".env.template","README*","docs\u002F**\u002Fsetup*","package.json","drizzle.config.*","prisma\u002Fschema.prisma","auth.*","src\u002F**\u002Fauth.*",[54,55,56,57,58,59],"\\\\bcp\\\\s+\\\\.env\\\\.(?:example|sample|template)\\\\s+\\\\.env\\\\.local\\\\b","\\\\b(?:npm|pnpm|bun|yarn)\\\\s+run\\\\s+db:(?:push|seed|migrate|generate)\\\\b","\\\\b(?:npm|pnpm|bun|yarn)\\\\s+run\\\\s+dev\\\\b","\\\\bvercel\\\\s+link\\\\b","\\\\bvercel\\\\s+integration\\\\s+(?:add|install)\\\\b","\\\\bvercel\\\\s+env\\\\s+pull\\\\b",[61,62,63,64,65,66,67,68],"@neondatabase\u002Fserverless","drizzle-orm","@upstash\u002Fredis","@vercel\u002Fblob","@vercel\u002Fedge-config","next-auth","@auth\u002Fcore","better-auth",[70,74,78],{"pattern":71,"targetSkill":72,"message":73},"@vercel\u002F(postgres|kv)|\\b(KV_REST_API_URL|POSTGRES_URL)\\b","vercel-storage","@vercel\u002Fpostgres and @vercel\u002Fkv are sunset — loading Vercel Storage guidance for Neon and Upstash migration.",{"pattern":75,"targetSkill":76,"message":77},"from\\s+['\"\"](next-auth|@auth\u002Fcore|@clerk\u002Fnextjs|better-auth)['\"\"]","auth","Auth library detected during bootstrap — loading Auth guidance for Clerk Marketplace setup and middleware patterns.",{"pattern":79,"targetSkill":80,"message":81,"skipIfFileContains":82},"OPENAI_API_KEY|ANTHROPIC_API_KEY|AI_GATEWAY","env-vars","AI provider env vars detected — loading Environment Variables guidance for OIDC-based auth via vercel env pull.","VERCEL_OIDC|vercel env pull",{"aliases":84,"intents":89,"entities":94},[85,86,87,88],"project setup","repo init","getting started","scaffold",[90,91,92,93],"set up project","initialize repo","link vercel project","pull env vars",[95,96,97,98],"vercel link","env pull","database setup","first run",{"type":100,"children":101},"root",[102,111,117,124,189,195,204,245,266,396,428,453,459,466,474,503,511,559,567,616,622,642,648,653,659,664,824,830,843,1220,1225,1231,1236,1293,1332,1338,1343,1394,1400,1405,1489,1494,1500,1505,1783,1789,1827,1833,1876,2047,2052],{"type":103,"tag":104,"props":105,"children":107},"element","h1",{"id":106},"project-bootstrap-orchestrator",[108],{"type":109,"value":110},"text","Project Bootstrap Orchestrator",{"type":103,"tag":112,"props":113,"children":114},"p",{},[115],{"type":109,"value":116},"Execute bootstrap in strict order. Do not run migrations or development server until project linking and environment verification are complete.",{"type":103,"tag":118,"props":119,"children":121},"h2",{"id":120},"rules",[122],{"type":109,"value":123},"Rules",{"type":103,"tag":125,"props":126,"children":127},"ul",{},[128,166,179,184],{"type":103,"tag":129,"props":130,"children":131},"li",{},[132,134,141,143,149,150,156,158,164],{"type":109,"value":133},"Do not run ",{"type":103,"tag":135,"props":136,"children":138},"code",{"className":137},[],[139],{"type":109,"value":140},"db:push",{"type":109,"value":142},", ",{"type":103,"tag":135,"props":144,"children":146},{"className":145},[],[147],{"type":109,"value":148},"db:migrate",{"type":109,"value":142},{"type":103,"tag":135,"props":151,"children":153},{"className":152},[],[154],{"type":109,"value":155},"db:seed",{"type":109,"value":157},", or ",{"type":103,"tag":135,"props":159,"children":161},{"className":160},[],[162],{"type":109,"value":163},"dev",{"type":109,"value":165}," until Vercel linking is complete and env keys are verified.",{"type":103,"tag":129,"props":167,"children":168},{},[169,171,177],{"type":109,"value":170},"Prefer Vercel-managed provisioning (",{"type":103,"tag":135,"props":172,"children":174},{"className":173},[],[175],{"type":109,"value":176},"vercel integration ...",{"type":109,"value":178},") for shared resources.",{"type":103,"tag":129,"props":180,"children":181},{},[182],{"type":109,"value":183},"Use provider CLIs only as fallback when Vercel integration flow is unavailable.",{"type":103,"tag":129,"props":185,"children":186},{},[187],{"type":109,"value":188},"Never echo secret values in terminal output, logs, or summaries.",{"type":103,"tag":118,"props":190,"children":192},{"id":191},"preflight",[193],{"type":109,"value":194},"Preflight",{"type":103,"tag":196,"props":197,"children":198},"ol",{},[199],{"type":103,"tag":129,"props":200,"children":201},{},[202],{"type":109,"value":203},"Confirm Vercel CLI is installed and authenticated.",{"type":103,"tag":205,"props":206,"children":211},"pre",{"className":207,"code":208,"language":209,"meta":210,"style":210},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","vercel --version\nvercel whoami\n","bash","",[212],{"type":103,"tag":135,"props":213,"children":214},{"__ignoreMap":210},[215,232],{"type":103,"tag":216,"props":217,"children":220},"span",{"class":218,"line":219},"line",1,[221,226],{"type":103,"tag":216,"props":222,"children":224},{"style":223},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[225],{"type":109,"value":8},{"type":103,"tag":216,"props":227,"children":229},{"style":228},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[230],{"type":109,"value":231}," --version\n",{"type":103,"tag":216,"props":233,"children":235},{"class":218,"line":234},2,[236,240],{"type":103,"tag":216,"props":237,"children":238},{"style":223},[239],{"type":109,"value":8},{"type":103,"tag":216,"props":241,"children":242},{"style":228},[243],{"type":109,"value":244}," whoami\n",{"type":103,"tag":196,"props":246,"children":247},{"start":234},[248,261],{"type":103,"tag":129,"props":249,"children":250},{},[251,253,259],{"type":109,"value":252},"Confirm repo linkage by checking ",{"type":103,"tag":135,"props":254,"children":256},{"className":255},[],[257],{"type":109,"value":258},".vercel\u002Fproject.json",{"type":109,"value":260},".",{"type":103,"tag":129,"props":262,"children":263},{},[264],{"type":109,"value":265},"If not linked, inspect available teams\u002Fprojects before asking the user to choose:",{"type":103,"tag":205,"props":267,"children":269},{"className":207,"code":268,"language":209,"meta":210,"style":210},"vercel teams ls\nvercel projects ls --scope \u003Cteam>\nvercel link --yes --scope \u003Cteam> --project \u003Cproject>\n",[270],{"type":103,"tag":135,"props":271,"children":272},{"__ignoreMap":210},[273,290,334],{"type":103,"tag":216,"props":274,"children":275},{"class":218,"line":219},[276,280,285],{"type":103,"tag":216,"props":277,"children":278},{"style":223},[279],{"type":109,"value":8},{"type":103,"tag":216,"props":281,"children":282},{"style":228},[283],{"type":109,"value":284}," teams",{"type":103,"tag":216,"props":286,"children":287},{"style":228},[288],{"type":109,"value":289}," ls\n",{"type":103,"tag":216,"props":291,"children":292},{"class":218,"line":234},[293,297,302,307,312,318,323,329],{"type":103,"tag":216,"props":294,"children":295},{"style":223},[296],{"type":109,"value":8},{"type":103,"tag":216,"props":298,"children":299},{"style":228},[300],{"type":109,"value":301}," projects",{"type":103,"tag":216,"props":303,"children":304},{"style":228},[305],{"type":109,"value":306}," ls",{"type":103,"tag":216,"props":308,"children":309},{"style":228},[310],{"type":109,"value":311}," --scope",{"type":103,"tag":216,"props":313,"children":315},{"style":314},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[316],{"type":109,"value":317}," \u003C",{"type":103,"tag":216,"props":319,"children":320},{"style":228},[321],{"type":109,"value":322},"tea",{"type":103,"tag":216,"props":324,"children":326},{"style":325},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[327],{"type":109,"value":328},"m",{"type":103,"tag":216,"props":330,"children":331},{"style":314},[332],{"type":109,"value":333},">\n",{"type":103,"tag":216,"props":335,"children":337},{"class":218,"line":336},3,[338,342,347,352,356,360,364,368,373,378,382,387,392],{"type":103,"tag":216,"props":339,"children":340},{"style":223},[341],{"type":109,"value":8},{"type":103,"tag":216,"props":343,"children":344},{"style":228},[345],{"type":109,"value":346}," link",{"type":103,"tag":216,"props":348,"children":349},{"style":228},[350],{"type":109,"value":351}," --yes",{"type":103,"tag":216,"props":353,"children":354},{"style":228},[355],{"type":109,"value":311},{"type":103,"tag":216,"props":357,"children":358},{"style":314},[359],{"type":109,"value":317},{"type":103,"tag":216,"props":361,"children":362},{"style":228},[363],{"type":109,"value":322},{"type":103,"tag":216,"props":365,"children":366},{"style":325},[367],{"type":109,"value":328},{"type":103,"tag":216,"props":369,"children":370},{"style":314},[371],{"type":109,"value":372},">",{"type":103,"tag":216,"props":374,"children":375},{"style":228},[376],{"type":109,"value":377}," --project",{"type":103,"tag":216,"props":379,"children":380},{"style":314},[381],{"type":109,"value":317},{"type":103,"tag":216,"props":383,"children":384},{"style":228},[385],{"type":109,"value":386},"projec",{"type":103,"tag":216,"props":388,"children":389},{"style":325},[390],{"type":109,"value":391},"t",{"type":103,"tag":216,"props":393,"children":394},{"style":314},[395],{"type":109,"value":333},{"type":103,"tag":196,"props":397,"children":399},{"start":398},4,[400,423],{"type":103,"tag":129,"props":401,"children":402},{},[403,405,410,411,416,417,422],{"type":109,"value":404},"Find the env template in priority order: ",{"type":103,"tag":135,"props":406,"children":408},{"className":407},[],[409],{"type":109,"value":43},{"type":109,"value":142},{"type":103,"tag":135,"props":412,"children":414},{"className":413},[],[415],{"type":109,"value":44},{"type":109,"value":142},{"type":103,"tag":135,"props":418,"children":420},{"className":419},[],[421],{"type":109,"value":45},{"type":109,"value":260},{"type":103,"tag":129,"props":424,"children":425},{},[426],{"type":109,"value":427},"Create local env file if missing:",{"type":103,"tag":205,"props":429,"children":431},{"className":207,"code":430,"language":209,"meta":210,"style":210},"cp .env.example .env.local\n",[432],{"type":103,"tag":135,"props":433,"children":434},{"__ignoreMap":210},[435],{"type":103,"tag":216,"props":436,"children":437},{"class":218,"line":219},[438,443,448],{"type":103,"tag":216,"props":439,"children":440},{"style":223},[441],{"type":109,"value":442},"cp",{"type":103,"tag":216,"props":444,"children":445},{"style":228},[446],{"type":109,"value":447}," .env.example",{"type":103,"tag":216,"props":449,"children":450},{"style":228},[451],{"type":109,"value":452}," .env.local\n",{"type":103,"tag":118,"props":454,"children":456},{"id":455},"resource-setup-postgres",[457],{"type":109,"value":458},"Resource Setup: Postgres",{"type":103,"tag":460,"props":461,"children":463},"h3",{"id":462},"preferred-path-vercel-managed-neon",[464],{"type":109,"value":465},"Preferred path (Vercel-managed Neon)",{"type":103,"tag":196,"props":467,"children":468},{},[469],{"type":103,"tag":129,"props":470,"children":471},{},[472],{"type":109,"value":473},"Read integration setup guidance:",{"type":103,"tag":205,"props":475,"children":477},{"className":207,"code":476,"language":209,"meta":210,"style":210},"vercel integration guide neon\n",[478],{"type":103,"tag":135,"props":479,"children":480},{"__ignoreMap":210},[481],{"type":103,"tag":216,"props":482,"children":483},{"class":218,"line":219},[484,488,493,498],{"type":103,"tag":216,"props":485,"children":486},{"style":223},[487],{"type":109,"value":8},{"type":103,"tag":216,"props":489,"children":490},{"style":228},[491],{"type":109,"value":492}," integration",{"type":103,"tag":216,"props":494,"children":495},{"style":228},[496],{"type":109,"value":497}," guide",{"type":103,"tag":216,"props":499,"children":500},{"style":228},[501],{"type":109,"value":502}," neon\n",{"type":103,"tag":196,"props":504,"children":505},{"start":234},[506],{"type":103,"tag":129,"props":507,"children":508},{},[509],{"type":109,"value":510},"Add Neon integration to the Vercel scope:",{"type":103,"tag":205,"props":512,"children":514},{"className":207,"code":513,"language":209,"meta":210,"style":210},"vercel integration add neon --scope \u003Cteam>\n",[515],{"type":103,"tag":135,"props":516,"children":517},{"__ignoreMap":210},[518],{"type":103,"tag":216,"props":519,"children":520},{"class":218,"line":219},[521,525,529,534,539,543,547,551,555],{"type":103,"tag":216,"props":522,"children":523},{"style":223},[524],{"type":109,"value":8},{"type":103,"tag":216,"props":526,"children":527},{"style":228},[528],{"type":109,"value":492},{"type":103,"tag":216,"props":530,"children":531},{"style":228},[532],{"type":109,"value":533}," add",{"type":103,"tag":216,"props":535,"children":536},{"style":228},[537],{"type":109,"value":538}," neon",{"type":103,"tag":216,"props":540,"children":541},{"style":228},[542],{"type":109,"value":311},{"type":103,"tag":216,"props":544,"children":545},{"style":314},[546],{"type":109,"value":317},{"type":103,"tag":216,"props":548,"children":549},{"style":228},[550],{"type":109,"value":322},{"type":103,"tag":216,"props":552,"children":553},{"style":325},[554],{"type":109,"value":328},{"type":103,"tag":216,"props":556,"children":557},{"style":314},[558],{"type":109,"value":333},{"type":103,"tag":196,"props":560,"children":561},{"start":336},[562],{"type":103,"tag":129,"props":563,"children":564},{},[565],{"type":109,"value":566},"Verify expected environment variable names exist in Vercel and pull locally:",{"type":103,"tag":205,"props":568,"children":570},{"className":207,"code":569,"language":209,"meta":210,"style":210},"vercel env ls\nvercel env pull .env.local --yes\n",[571],{"type":103,"tag":135,"props":572,"children":573},{"__ignoreMap":210},[574,590],{"type":103,"tag":216,"props":575,"children":576},{"class":218,"line":219},[577,581,586],{"type":103,"tag":216,"props":578,"children":579},{"style":223},[580],{"type":109,"value":8},{"type":103,"tag":216,"props":582,"children":583},{"style":228},[584],{"type":109,"value":585}," env",{"type":103,"tag":216,"props":587,"children":588},{"style":228},[589],{"type":109,"value":289},{"type":103,"tag":216,"props":591,"children":592},{"class":218,"line":234},[593,597,601,606,611],{"type":103,"tag":216,"props":594,"children":595},{"style":223},[596],{"type":109,"value":8},{"type":103,"tag":216,"props":598,"children":599},{"style":228},[600],{"type":109,"value":585},{"type":103,"tag":216,"props":602,"children":603},{"style":228},[604],{"type":109,"value":605}," pull",{"type":103,"tag":216,"props":607,"children":608},{"style":228},[609],{"type":109,"value":610}," .env.local",{"type":103,"tag":216,"props":612,"children":613},{"style":228},[614],{"type":109,"value":615}," --yes\n",{"type":103,"tag":460,"props":617,"children":619},{"id":618},"fallback-path-1-dashboard",[620],{"type":109,"value":621},"Fallback path 1 (Dashboard)",{"type":103,"tag":196,"props":623,"children":624},{},[625,630],{"type":103,"tag":129,"props":626,"children":627},{},[628],{"type":109,"value":629},"Provision Neon through the Vercel dashboard integration UI.",{"type":103,"tag":129,"props":631,"children":632},{},[633,635,641],{"type":109,"value":634},"Re-run ",{"type":103,"tag":135,"props":636,"children":638},{"className":637},[],[639],{"type":109,"value":640},"vercel env pull .env.local --yes",{"type":109,"value":260},{"type":103,"tag":460,"props":643,"children":645},{"id":644},"fallback-path-2-neon-cli",[646],{"type":109,"value":647},"Fallback path 2 (Neon CLI)",{"type":103,"tag":112,"props":649,"children":650},{},[651],{"type":109,"value":652},"Use Neon CLI only when Vercel-managed provisioning is unavailable. After creating resources, add required env vars in Vercel and pull again.",{"type":103,"tag":118,"props":654,"children":656},{"id":655},"auth_secret-generation",[657],{"type":109,"value":658},"AUTH_SECRET Generation",{"type":103,"tag":112,"props":660,"children":661},{},[662],{"type":109,"value":663},"Generate a high-entropy secret without printing it, then store it in Vercel and refresh local env:",{"type":103,"tag":205,"props":665,"children":667},{"className":207,"code":666,"language":209,"meta":210,"style":210},"AUTH_SECRET=\"$(node -e \"console.log(require('node:crypto').randomBytes(32).toString('base64url'))\")\"\nprintf \"%s\" \"$AUTH_SECRET\" | vercel env add AUTH_SECRET development preview production\nunset AUTH_SECRET\nvercel env pull .env.local --yes\n",[668],{"type":103,"tag":135,"props":669,"children":670},{"__ignoreMap":210},[671,714,788,801],{"type":103,"tag":216,"props":672,"children":673},{"class":218,"line":219},[674,679,684,689,694,699,704,709],{"type":103,"tag":216,"props":675,"children":676},{"style":325},[677],{"type":109,"value":678},"AUTH_SECRET",{"type":103,"tag":216,"props":680,"children":681},{"style":314},[682],{"type":109,"value":683},"=",{"type":103,"tag":216,"props":685,"children":686},{"style":314},[687],{"type":109,"value":688},"\"$(",{"type":103,"tag":216,"props":690,"children":691},{"style":223},[692],{"type":109,"value":693},"node",{"type":103,"tag":216,"props":695,"children":696},{"style":228},[697],{"type":109,"value":698}," -e ",{"type":103,"tag":216,"props":700,"children":701},{"style":314},[702],{"type":109,"value":703},"\"",{"type":103,"tag":216,"props":705,"children":706},{"style":228},[707],{"type":109,"value":708},"console.log(require('node:crypto').randomBytes(32).toString('base64url'))",{"type":103,"tag":216,"props":710,"children":711},{"style":314},[712],{"type":109,"value":713},"\")\"\n",{"type":103,"tag":216,"props":715,"children":716},{"class":218,"line":234},[717,723,728,733,737,741,746,750,755,760,764,768,773,778,783],{"type":103,"tag":216,"props":718,"children":720},{"style":719},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[721],{"type":109,"value":722},"printf",{"type":103,"tag":216,"props":724,"children":725},{"style":314},[726],{"type":109,"value":727}," \"",{"type":103,"tag":216,"props":729,"children":730},{"style":228},[731],{"type":109,"value":732},"%s",{"type":103,"tag":216,"props":734,"children":735},{"style":314},[736],{"type":109,"value":703},{"type":103,"tag":216,"props":738,"children":739},{"style":314},[740],{"type":109,"value":727},{"type":103,"tag":216,"props":742,"children":743},{"style":325},[744],{"type":109,"value":745},"$AUTH_SECRET",{"type":103,"tag":216,"props":747,"children":748},{"style":314},[749],{"type":109,"value":703},{"type":103,"tag":216,"props":751,"children":752},{"style":314},[753],{"type":109,"value":754}," |",{"type":103,"tag":216,"props":756,"children":757},{"style":223},[758],{"type":109,"value":759}," vercel",{"type":103,"tag":216,"props":761,"children":762},{"style":228},[763],{"type":109,"value":585},{"type":103,"tag":216,"props":765,"children":766},{"style":228},[767],{"type":109,"value":533},{"type":103,"tag":216,"props":769,"children":770},{"style":228},[771],{"type":109,"value":772}," AUTH_SECRET",{"type":103,"tag":216,"props":774,"children":775},{"style":228},[776],{"type":109,"value":777}," development",{"type":103,"tag":216,"props":779,"children":780},{"style":228},[781],{"type":109,"value":782}," preview",{"type":103,"tag":216,"props":784,"children":785},{"style":228},[786],{"type":109,"value":787}," production\n",{"type":103,"tag":216,"props":789,"children":790},{"class":218,"line":336},[791,796],{"type":103,"tag":216,"props":792,"children":793},{"style":719},[794],{"type":109,"value":795},"unset",{"type":103,"tag":216,"props":797,"children":798},{"style":228},[799],{"type":109,"value":800}," AUTH_SECRET\n",{"type":103,"tag":216,"props":802,"children":803},{"class":218,"line":398},[804,808,812,816,820],{"type":103,"tag":216,"props":805,"children":806},{"style":223},[807],{"type":109,"value":8},{"type":103,"tag":216,"props":809,"children":810},{"style":228},[811],{"type":109,"value":585},{"type":103,"tag":216,"props":813,"children":814},{"style":228},[815],{"type":109,"value":605},{"type":103,"tag":216,"props":817,"children":818},{"style":228},[819],{"type":109,"value":610},{"type":103,"tag":216,"props":821,"children":822},{"style":228},[823],{"type":109,"value":615},{"type":103,"tag":118,"props":825,"children":827},{"id":826},"env-verification",[828],{"type":109,"value":829},"Env Verification",{"type":103,"tag":112,"props":831,"children":832},{},[833,835,841],{"type":109,"value":834},"Compare required keys from template file against ",{"type":103,"tag":135,"props":836,"children":838},{"className":837},[],[839],{"type":109,"value":840},".env.local",{"type":109,"value":842}," keys (names only, never values):",{"type":103,"tag":205,"props":844,"children":846},{"className":207,"code":845,"language":209,"meta":210,"style":210},"template_file=\"\"\nfor candidate in .env.example .env.sample .env.template; do\n  if [ -f \"$candidate\" ]; then\n    template_file=\"$candidate\"\n    break\n  fi\ndone\n\ncomm -23 \\\n  \u003C(grep -E '^[A-Za-z_][A-Za-z0-9_]*=' \"$template_file\" | cut -d '=' -f 1 | sort -u) \\\n  \u003C(grep -E '^[A-Za-z_][A-Za-z0-9_]*=' .env.local | cut -d '=' -f 1 | sort -u)\n",[847],{"type":103,"tag":135,"props":848,"children":849},{"__ignoreMap":210},[850,867,910,951,976,985,994,1003,1012,1031,1137],{"type":103,"tag":216,"props":851,"children":852},{"class":218,"line":219},[853,858,862],{"type":103,"tag":216,"props":854,"children":855},{"style":325},[856],{"type":109,"value":857},"template_file",{"type":103,"tag":216,"props":859,"children":860},{"style":314},[861],{"type":109,"value":683},{"type":103,"tag":216,"props":863,"children":864},{"style":314},[865],{"type":109,"value":866},"\"\"\n",{"type":103,"tag":216,"props":868,"children":869},{"class":218,"line":234},[870,876,881,886,890,895,900,905],{"type":103,"tag":216,"props":871,"children":873},{"style":872},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[874],{"type":109,"value":875},"for",{"type":103,"tag":216,"props":877,"children":878},{"style":325},[879],{"type":109,"value":880}," candidate ",{"type":103,"tag":216,"props":882,"children":883},{"style":872},[884],{"type":109,"value":885},"in",{"type":103,"tag":216,"props":887,"children":888},{"style":228},[889],{"type":109,"value":447},{"type":103,"tag":216,"props":891,"children":892},{"style":228},[893],{"type":109,"value":894}," .env.sample",{"type":103,"tag":216,"props":896,"children":897},{"style":228},[898],{"type":109,"value":899}," .env.template",{"type":103,"tag":216,"props":901,"children":902},{"style":314},[903],{"type":109,"value":904},";",{"type":103,"tag":216,"props":906,"children":907},{"style":872},[908],{"type":109,"value":909}," do\n",{"type":103,"tag":216,"props":911,"children":912},{"class":218,"line":336},[913,918,923,928,932,937,941,946],{"type":103,"tag":216,"props":914,"children":915},{"style":872},[916],{"type":109,"value":917},"  if",{"type":103,"tag":216,"props":919,"children":920},{"style":314},[921],{"type":109,"value":922}," [",{"type":103,"tag":216,"props":924,"children":925},{"style":314},[926],{"type":109,"value":927}," -f",{"type":103,"tag":216,"props":929,"children":930},{"style":314},[931],{"type":109,"value":727},{"type":103,"tag":216,"props":933,"children":934},{"style":325},[935],{"type":109,"value":936},"$candidate",{"type":103,"tag":216,"props":938,"children":939},{"style":314},[940],{"type":109,"value":703},{"type":103,"tag":216,"props":942,"children":943},{"style":314},[944],{"type":109,"value":945}," ];",{"type":103,"tag":216,"props":947,"children":948},{"style":872},[949],{"type":109,"value":950}," then\n",{"type":103,"tag":216,"props":952,"children":953},{"class":218,"line":398},[954,959,963,967,971],{"type":103,"tag":216,"props":955,"children":956},{"style":325},[957],{"type":109,"value":958},"    template_file",{"type":103,"tag":216,"props":960,"children":961},{"style":314},[962],{"type":109,"value":683},{"type":103,"tag":216,"props":964,"children":965},{"style":314},[966],{"type":109,"value":703},{"type":103,"tag":216,"props":968,"children":969},{"style":325},[970],{"type":109,"value":936},{"type":103,"tag":216,"props":972,"children":973},{"style":314},[974],{"type":109,"value":975},"\"\n",{"type":103,"tag":216,"props":977,"children":979},{"class":218,"line":978},5,[980],{"type":103,"tag":216,"props":981,"children":982},{"style":872},[983],{"type":109,"value":984},"    break\n",{"type":103,"tag":216,"props":986,"children":988},{"class":218,"line":987},6,[989],{"type":103,"tag":216,"props":990,"children":991},{"style":872},[992],{"type":109,"value":993},"  fi\n",{"type":103,"tag":216,"props":995,"children":997},{"class":218,"line":996},7,[998],{"type":103,"tag":216,"props":999,"children":1000},{"style":872},[1001],{"type":109,"value":1002},"done\n",{"type":103,"tag":216,"props":1004,"children":1005},{"class":218,"line":37},[1006],{"type":103,"tag":216,"props":1007,"children":1009},{"emptyLinePlaceholder":1008},true,[1010],{"type":109,"value":1011},"\n",{"type":103,"tag":216,"props":1013,"children":1015},{"class":218,"line":1014},9,[1016,1021,1026],{"type":103,"tag":216,"props":1017,"children":1018},{"style":223},[1019],{"type":109,"value":1020},"comm",{"type":103,"tag":216,"props":1022,"children":1023},{"style":228},[1024],{"type":109,"value":1025}," -23",{"type":103,"tag":216,"props":1027,"children":1028},{"style":325},[1029],{"type":109,"value":1030}," \\\n",{"type":103,"tag":216,"props":1032,"children":1034},{"class":218,"line":1033},10,[1035,1040,1045,1050,1055,1060,1064,1068,1073,1077,1081,1086,1091,1095,1099,1103,1108,1114,1118,1123,1128,1133],{"type":103,"tag":216,"props":1036,"children":1037},{"style":314},[1038],{"type":109,"value":1039},"  \u003C(",{"type":103,"tag":216,"props":1041,"children":1042},{"style":223},[1043],{"type":109,"value":1044},"grep",{"type":103,"tag":216,"props":1046,"children":1047},{"style":228},[1048],{"type":109,"value":1049}," -E ",{"type":103,"tag":216,"props":1051,"children":1052},{"style":314},[1053],{"type":109,"value":1054},"'",{"type":103,"tag":216,"props":1056,"children":1057},{"style":228},[1058],{"type":109,"value":1059},"^[A-Za-z_][A-Za-z0-9_]*=",{"type":103,"tag":216,"props":1061,"children":1062},{"style":314},[1063],{"type":109,"value":1054},{"type":103,"tag":216,"props":1065,"children":1066},{"style":314},[1067],{"type":109,"value":727},{"type":103,"tag":216,"props":1069,"children":1070},{"style":325},[1071],{"type":109,"value":1072},"$template_file",{"type":103,"tag":216,"props":1074,"children":1075},{"style":314},[1076],{"type":109,"value":703},{"type":103,"tag":216,"props":1078,"children":1079},{"style":314},[1080],{"type":109,"value":754},{"type":103,"tag":216,"props":1082,"children":1083},{"style":223},[1084],{"type":109,"value":1085}," cut",{"type":103,"tag":216,"props":1087,"children":1088},{"style":228},[1089],{"type":109,"value":1090}," -d ",{"type":103,"tag":216,"props":1092,"children":1093},{"style":314},[1094],{"type":109,"value":1054},{"type":103,"tag":216,"props":1096,"children":1097},{"style":228},[1098],{"type":109,"value":683},{"type":103,"tag":216,"props":1100,"children":1101},{"style":314},[1102],{"type":109,"value":1054},{"type":103,"tag":216,"props":1104,"children":1105},{"style":228},[1106],{"type":109,"value":1107}," -f ",{"type":103,"tag":216,"props":1109,"children":1111},{"style":1110},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1112],{"type":109,"value":1113},"1",{"type":103,"tag":216,"props":1115,"children":1116},{"style":314},[1117],{"type":109,"value":754},{"type":103,"tag":216,"props":1119,"children":1120},{"style":223},[1121],{"type":109,"value":1122}," sort",{"type":103,"tag":216,"props":1124,"children":1125},{"style":228},[1126],{"type":109,"value":1127}," -u",{"type":103,"tag":216,"props":1129,"children":1130},{"style":314},[1131],{"type":109,"value":1132},")",{"type":103,"tag":216,"props":1134,"children":1135},{"style":325},[1136],{"type":109,"value":1030},{"type":103,"tag":216,"props":1138,"children":1140},{"class":218,"line":1139},11,[1141,1145,1149,1153,1157,1161,1165,1170,1175,1179,1183,1187,1191,1195,1199,1203,1207,1211,1215],{"type":103,"tag":216,"props":1142,"children":1143},{"style":314},[1144],{"type":109,"value":1039},{"type":103,"tag":216,"props":1146,"children":1147},{"style":223},[1148],{"type":109,"value":1044},{"type":103,"tag":216,"props":1150,"children":1151},{"style":228},[1152],{"type":109,"value":1049},{"type":103,"tag":216,"props":1154,"children":1155},{"style":314},[1156],{"type":109,"value":1054},{"type":103,"tag":216,"props":1158,"children":1159},{"style":228},[1160],{"type":109,"value":1059},{"type":103,"tag":216,"props":1162,"children":1163},{"style":314},[1164],{"type":109,"value":1054},{"type":103,"tag":216,"props":1166,"children":1167},{"style":228},[1168],{"type":109,"value":1169}," .env.local ",{"type":103,"tag":216,"props":1171,"children":1172},{"style":314},[1173],{"type":109,"value":1174},"|",{"type":103,"tag":216,"props":1176,"children":1177},{"style":223},[1178],{"type":109,"value":1085},{"type":103,"tag":216,"props":1180,"children":1181},{"style":228},[1182],{"type":109,"value":1090},{"type":103,"tag":216,"props":1184,"children":1185},{"style":314},[1186],{"type":109,"value":1054},{"type":103,"tag":216,"props":1188,"children":1189},{"style":228},[1190],{"type":109,"value":683},{"type":103,"tag":216,"props":1192,"children":1193},{"style":314},[1194],{"type":109,"value":1054},{"type":103,"tag":216,"props":1196,"children":1197},{"style":228},[1198],{"type":109,"value":1107},{"type":103,"tag":216,"props":1200,"children":1201},{"style":1110},[1202],{"type":109,"value":1113},{"type":103,"tag":216,"props":1204,"children":1205},{"style":314},[1206],{"type":109,"value":754},{"type":103,"tag":216,"props":1208,"children":1209},{"style":223},[1210],{"type":109,"value":1122},{"type":103,"tag":216,"props":1212,"children":1213},{"style":228},[1214],{"type":109,"value":1127},{"type":103,"tag":216,"props":1216,"children":1217},{"style":314},[1218],{"type":109,"value":1219},")\n",{"type":103,"tag":112,"props":1221,"children":1222},{},[1223],{"type":109,"value":1224},"Proceed only when missing key list is empty.",{"type":103,"tag":118,"props":1226,"children":1228},{"id":1227},"app-setup",[1229],{"type":109,"value":1230},"App Setup",{"type":103,"tag":112,"props":1232,"children":1233},{},[1234],{"type":109,"value":1235},"After linkage + env verification:",{"type":103,"tag":205,"props":1237,"children":1239},{"className":207,"code":1238,"language":209,"meta":210,"style":210},"npm run db:push\nnpm run db:seed\nnpm run dev\n",[1240],{"type":103,"tag":135,"props":1241,"children":1242},{"__ignoreMap":210},[1243,1261,1277],{"type":103,"tag":216,"props":1244,"children":1245},{"class":218,"line":219},[1246,1251,1256],{"type":103,"tag":216,"props":1247,"children":1248},{"style":223},[1249],{"type":109,"value":1250},"npm",{"type":103,"tag":216,"props":1252,"children":1253},{"style":228},[1254],{"type":109,"value":1255}," run",{"type":103,"tag":216,"props":1257,"children":1258},{"style":228},[1259],{"type":109,"value":1260}," db:push\n",{"type":103,"tag":216,"props":1262,"children":1263},{"class":218,"line":234},[1264,1268,1272],{"type":103,"tag":216,"props":1265,"children":1266},{"style":223},[1267],{"type":109,"value":1250},{"type":103,"tag":216,"props":1269,"children":1270},{"style":228},[1271],{"type":109,"value":1255},{"type":103,"tag":216,"props":1273,"children":1274},{"style":228},[1275],{"type":109,"value":1276}," db:seed\n",{"type":103,"tag":216,"props":1278,"children":1279},{"class":218,"line":336},[1280,1284,1288],{"type":103,"tag":216,"props":1281,"children":1282},{"style":223},[1283],{"type":109,"value":1250},{"type":103,"tag":216,"props":1285,"children":1286},{"style":228},[1287],{"type":109,"value":1255},{"type":103,"tag":216,"props":1289,"children":1290},{"style":228},[1291],{"type":109,"value":1292}," dev\n",{"type":103,"tag":112,"props":1294,"children":1295},{},[1296,1298,1303,1304,1310,1311,1317,1318,1324,1326,1331],{"type":109,"value":1297},"Use the repository package manager (",{"type":103,"tag":135,"props":1299,"children":1301},{"className":1300},[],[1302],{"type":109,"value":1250},{"type":109,"value":142},{"type":103,"tag":135,"props":1305,"children":1307},{"className":1306},[],[1308],{"type":109,"value":1309},"pnpm",{"type":109,"value":142},{"type":103,"tag":135,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":109,"value":1316},"bun",{"type":109,"value":157},{"type":103,"tag":135,"props":1319,"children":1321},{"className":1320},[],[1322],{"type":109,"value":1323},"yarn",{"type":109,"value":1325},") and run only scripts that exist in ",{"type":103,"tag":135,"props":1327,"children":1329},{"className":1328},[],[1330],{"type":109,"value":48},{"type":109,"value":260},{"type":103,"tag":118,"props":1333,"children":1335},{"id":1334},"ui-baseline-for-nextjs-shadcn-projects",[1336],{"type":109,"value":1337},"UI Baseline for Next.js + shadcn Projects",{"type":103,"tag":112,"props":1339,"children":1340},{},[1341],{"type":109,"value":1342},"After linkage and env verification, establish the UI foundation before feature work:",{"type":103,"tag":196,"props":1344,"children":1345},{},[1346,1357,1377,1389],{"type":103,"tag":129,"props":1347,"children":1348},{},[1349,1351],{"type":109,"value":1350},"Add a baseline primitive set: ",{"type":103,"tag":135,"props":1352,"children":1354},{"className":1353},[],[1355],{"type":109,"value":1356},"npx shadcn@latest add button card input label textarea select switch tabs dialog alert-dialog sheet dropdown-menu badge separator skeleton table",{"type":103,"tag":129,"props":1358,"children":1359},{},[1360,1362,1368,1370,1376],{"type":109,"value":1361},"Apply the Geist font fix in ",{"type":103,"tag":135,"props":1363,"children":1365},{"className":1364},[],[1366],{"type":109,"value":1367},"layout.tsx",{"type":109,"value":1369}," and ",{"type":103,"tag":135,"props":1371,"children":1373},{"className":1372},[],[1374],{"type":109,"value":1375},"globals.css",{"type":109,"value":260},{"type":103,"tag":129,"props":1378,"children":1379},{},[1380,1382,1388],{"type":109,"value":1381},"Confirm the app shell uses ",{"type":103,"tag":135,"props":1383,"children":1385},{"className":1384},[],[1386],{"type":109,"value":1387},"bg-background text-foreground",{"type":109,"value":260},{"type":103,"tag":129,"props":1390,"children":1391},{},[1392],{"type":109,"value":1393},"Default to dark mode for product, admin, and AI apps unless the repo is clearly marketing-first.",{"type":103,"tag":118,"props":1395,"children":1397},{"id":1396},"bootstrap-verification",[1398],{"type":109,"value":1399},"Bootstrap Verification",{"type":103,"tag":112,"props":1401,"children":1402},{},[1403],{"type":109,"value":1404},"Confirm each checkpoint:",{"type":103,"tag":125,"props":1406,"children":1407},{},[1408,1419,1429,1434,1443,1448,1479],{"type":103,"tag":129,"props":1409,"children":1410},{},[1411,1417],{"type":103,"tag":135,"props":1412,"children":1414},{"className":1413},[],[1415],{"type":109,"value":1416},"vercel whoami",{"type":109,"value":1418}," succeeds.",{"type":103,"tag":129,"props":1420,"children":1421},{},[1422,1427],{"type":103,"tag":135,"props":1423,"children":1425},{"className":1424},[],[1426],{"type":109,"value":258},{"type":109,"value":1428}," exists and matches chosen project.",{"type":103,"tag":129,"props":1430,"children":1431},{},[1432],{"type":109,"value":1433},"Postgres integration path completed (Vercel integration, dashboard, or provider CLI fallback).",{"type":103,"tag":129,"props":1435,"children":1436},{},[1437,1442],{"type":103,"tag":135,"props":1438,"children":1440},{"className":1439},[],[1441],{"type":109,"value":640},{"type":109,"value":1418},{"type":103,"tag":129,"props":1444,"children":1445},{},[1446],{"type":109,"value":1447},"Required env key diff is empty.",{"type":103,"tag":129,"props":1449,"children":1450},{},[1451,1453,1458,1459,1464,1465,1470,1471,1477],{"type":109,"value":1452},"Database command status is recorded (",{"type":103,"tag":135,"props":1454,"children":1456},{"className":1455},[],[1457],{"type":109,"value":140},{"type":109,"value":142},{"type":103,"tag":135,"props":1460,"children":1462},{"className":1461},[],[1463],{"type":109,"value":155},{"type":109,"value":142},{"type":103,"tag":135,"props":1466,"children":1468},{"className":1467},[],[1469],{"type":109,"value":148},{"type":109,"value":142},{"type":103,"tag":135,"props":1472,"children":1474},{"className":1473},[],[1475],{"type":109,"value":1476},"db:generate",{"type":109,"value":1478}," as applicable).",{"type":103,"tag":129,"props":1480,"children":1481},{},[1482,1487],{"type":103,"tag":135,"props":1483,"children":1485},{"className":1484},[],[1486],{"type":109,"value":163},{"type":109,"value":1488}," command starts without immediate config\u002Fauth\u002Fenv failure.",{"type":103,"tag":112,"props":1490,"children":1491},{},[1492],{"type":109,"value":1493},"If verification fails, stop and report exact failing step plus remediation.",{"type":103,"tag":118,"props":1495,"children":1497},{"id":1496},"summary-format",[1498],{"type":109,"value":1499},"Summary Format",{"type":103,"tag":112,"props":1501,"children":1502},{},[1503],{"type":109,"value":1504},"Return a final bootstrap summary in this format:",{"type":103,"tag":205,"props":1506,"children":1510},{"className":1507,"code":1508,"language":1509,"meta":210,"style":210},"language-md shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","## Bootstrap Result\n- **Linked Project**: \u003Cteam>\u002F\u003Cproject>\n- **Resource Path**: vercel-integration-neon | dashboard-neon | neon-cli\n- **Env Keys**: \u003Ccount> required, \u003Ccount> present, \u003Ccount> missing\n- **Secrets**: AUTH_SECRET set in Vercel (value never shown)\n- **Migration Status**: not-run | success | failed (\u003Cstep>)\n- **Dev Result**: not-run | started | failed\n","md",[1511],{"type":103,"tag":135,"props":1512,"children":1513},{"__ignoreMap":210},[1514,1527,1590,1615,1691,1716,1758],{"type":103,"tag":216,"props":1515,"children":1516},{"class":218,"line":219},[1517,1522],{"type":103,"tag":216,"props":1518,"children":1519},{"style":314},[1520],{"type":109,"value":1521},"## ",{"type":103,"tag":216,"props":1523,"children":1524},{"style":223},[1525],{"type":109,"value":1526},"Bootstrap Result\n",{"type":103,"tag":216,"props":1528,"children":1529},{"class":218,"line":234},[1530,1535,1541,1547,1552,1557,1562,1568,1572,1577,1581,1586],{"type":103,"tag":216,"props":1531,"children":1532},{"style":314},[1533],{"type":109,"value":1534},"-",{"type":103,"tag":216,"props":1536,"children":1538},{"style":1537},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[1539],{"type":109,"value":1540}," **",{"type":103,"tag":216,"props":1542,"children":1544},{"style":1543},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[1545],{"type":109,"value":1546},"Linked Project",{"type":103,"tag":216,"props":1548,"children":1549},{"style":1537},[1550],{"type":109,"value":1551},"**",{"type":103,"tag":216,"props":1553,"children":1554},{"style":325},[1555],{"type":109,"value":1556},": ",{"type":103,"tag":216,"props":1558,"children":1559},{"style":314},[1560],{"type":109,"value":1561},"\u003C",{"type":103,"tag":216,"props":1563,"children":1565},{"style":1564},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1566],{"type":109,"value":1567},"team",{"type":103,"tag":216,"props":1569,"children":1570},{"style":314},[1571],{"type":109,"value":372},{"type":103,"tag":216,"props":1573,"children":1574},{"style":325},[1575],{"type":109,"value":1576},"\u002F",{"type":103,"tag":216,"props":1578,"children":1579},{"style":314},[1580],{"type":109,"value":1561},{"type":103,"tag":216,"props":1582,"children":1583},{"style":1564},[1584],{"type":109,"value":1585},"project",{"type":103,"tag":216,"props":1587,"children":1588},{"style":314},[1589],{"type":109,"value":333},{"type":103,"tag":216,"props":1591,"children":1592},{"class":218,"line":336},[1593,1597,1601,1606,1610],{"type":103,"tag":216,"props":1594,"children":1595},{"style":314},[1596],{"type":109,"value":1534},{"type":103,"tag":216,"props":1598,"children":1599},{"style":1537},[1600],{"type":109,"value":1540},{"type":103,"tag":216,"props":1602,"children":1603},{"style":1543},[1604],{"type":109,"value":1605},"Resource Path",{"type":103,"tag":216,"props":1607,"children":1608},{"style":1537},[1609],{"type":109,"value":1551},{"type":103,"tag":216,"props":1611,"children":1612},{"style":325},[1613],{"type":109,"value":1614},": vercel-integration-neon | dashboard-neon | neon-cli\n",{"type":103,"tag":216,"props":1616,"children":1617},{"class":218,"line":398},[1618,1622,1626,1631,1635,1639,1643,1648,1652,1657,1661,1665,1669,1674,1678,1682,1686],{"type":103,"tag":216,"props":1619,"children":1620},{"style":314},[1621],{"type":109,"value":1534},{"type":103,"tag":216,"props":1623,"children":1624},{"style":1537},[1625],{"type":109,"value":1540},{"type":103,"tag":216,"props":1627,"children":1628},{"style":1543},[1629],{"type":109,"value":1630},"Env Keys",{"type":103,"tag":216,"props":1632,"children":1633},{"style":1537},[1634],{"type":109,"value":1551},{"type":103,"tag":216,"props":1636,"children":1637},{"style":325},[1638],{"type":109,"value":1556},{"type":103,"tag":216,"props":1640,"children":1641},{"style":314},[1642],{"type":109,"value":1561},{"type":103,"tag":216,"props":1644,"children":1645},{"style":1564},[1646],{"type":109,"value":1647},"count",{"type":103,"tag":216,"props":1649,"children":1650},{"style":314},[1651],{"type":109,"value":372},{"type":103,"tag":216,"props":1653,"children":1654},{"style":325},[1655],{"type":109,"value":1656}," required, ",{"type":103,"tag":216,"props":1658,"children":1659},{"style":314},[1660],{"type":109,"value":1561},{"type":103,"tag":216,"props":1662,"children":1663},{"style":1564},[1664],{"type":109,"value":1647},{"type":103,"tag":216,"props":1666,"children":1667},{"style":314},[1668],{"type":109,"value":372},{"type":103,"tag":216,"props":1670,"children":1671},{"style":325},[1672],{"type":109,"value":1673}," present, ",{"type":103,"tag":216,"props":1675,"children":1676},{"style":314},[1677],{"type":109,"value":1561},{"type":103,"tag":216,"props":1679,"children":1680},{"style":1564},[1681],{"type":109,"value":1647},{"type":103,"tag":216,"props":1683,"children":1684},{"style":314},[1685],{"type":109,"value":372},{"type":103,"tag":216,"props":1687,"children":1688},{"style":325},[1689],{"type":109,"value":1690}," missing\n",{"type":103,"tag":216,"props":1692,"children":1693},{"class":218,"line":978},[1694,1698,1702,1707,1711],{"type":103,"tag":216,"props":1695,"children":1696},{"style":314},[1697],{"type":109,"value":1534},{"type":103,"tag":216,"props":1699,"children":1700},{"style":1537},[1701],{"type":109,"value":1540},{"type":103,"tag":216,"props":1703,"children":1704},{"style":1543},[1705],{"type":109,"value":1706},"Secrets",{"type":103,"tag":216,"props":1708,"children":1709},{"style":1537},[1710],{"type":109,"value":1551},{"type":103,"tag":216,"props":1712,"children":1713},{"style":325},[1714],{"type":109,"value":1715},": AUTH_SECRET set in Vercel (value never shown)\n",{"type":103,"tag":216,"props":1717,"children":1718},{"class":218,"line":987},[1719,1723,1727,1732,1736,1741,1745,1750,1754],{"type":103,"tag":216,"props":1720,"children":1721},{"style":314},[1722],{"type":109,"value":1534},{"type":103,"tag":216,"props":1724,"children":1725},{"style":1537},[1726],{"type":109,"value":1540},{"type":103,"tag":216,"props":1728,"children":1729},{"style":1543},[1730],{"type":109,"value":1731},"Migration Status",{"type":103,"tag":216,"props":1733,"children":1734},{"style":1537},[1735],{"type":109,"value":1551},{"type":103,"tag":216,"props":1737,"children":1738},{"style":325},[1739],{"type":109,"value":1740},": not-run | success | failed (",{"type":103,"tag":216,"props":1742,"children":1743},{"style":314},[1744],{"type":109,"value":1561},{"type":103,"tag":216,"props":1746,"children":1747},{"style":1564},[1748],{"type":109,"value":1749},"step",{"type":103,"tag":216,"props":1751,"children":1752},{"style":314},[1753],{"type":109,"value":372},{"type":103,"tag":216,"props":1755,"children":1756},{"style":325},[1757],{"type":109,"value":1219},{"type":103,"tag":216,"props":1759,"children":1760},{"class":218,"line":996},[1761,1765,1769,1774,1778],{"type":103,"tag":216,"props":1762,"children":1763},{"style":314},[1764],{"type":109,"value":1534},{"type":103,"tag":216,"props":1766,"children":1767},{"style":1537},[1768],{"type":109,"value":1540},{"type":103,"tag":216,"props":1770,"children":1771},{"style":1543},[1772],{"type":109,"value":1773},"Dev Result",{"type":103,"tag":216,"props":1775,"children":1776},{"style":1537},[1777],{"type":109,"value":1551},{"type":103,"tag":216,"props":1779,"children":1780},{"style":325},[1781],{"type":109,"value":1782},": not-run | started | failed\n",{"type":103,"tag":118,"props":1784,"children":1786},{"id":1785},"bootstrap-next-steps",[1787],{"type":109,"value":1788},"Bootstrap Next Steps",{"type":103,"tag":125,"props":1790,"children":1791},{},[1792,1803,1808],{"type":103,"tag":129,"props":1793,"children":1794},{},[1795,1797,1802],{"type":109,"value":1796},"If env keys are still missing, add the missing keys in Vercel and re-run ",{"type":103,"tag":135,"props":1798,"children":1800},{"className":1799},[],[1801],{"type":109,"value":640},{"type":109,"value":260},{"type":103,"tag":129,"props":1804,"children":1805},{},[1806],{"type":109,"value":1807},"If DB commands fail, fix connectivity\u002Fschema issues and re-run only the failed db step.",{"type":103,"tag":129,"props":1809,"children":1810},{},[1811,1813,1818,1820,1826],{"type":109,"value":1812},"If ",{"type":103,"tag":135,"props":1814,"children":1816},{"className":1815},[],[1817],{"type":109,"value":163},{"type":109,"value":1819}," fails, resolve runtime errors, then restart with your package manager's ",{"type":103,"tag":135,"props":1821,"children":1823},{"className":1822},[],[1824],{"type":109,"value":1825},"run dev",{"type":109,"value":260},{"type":103,"tag":118,"props":1828,"children":1830},{"id":1829},"next-forge-projects",[1831],{"type":109,"value":1832},"next-forge Projects",{"type":103,"tag":112,"props":1834,"children":1835},{},[1836,1838,1844,1846,1852,1854,1860,1861,1867,1868,1874],{"type":109,"value":1837},"If the project was scaffolded with ",{"type":103,"tag":135,"props":1839,"children":1841},{"className":1840},[],[1842],{"type":109,"value":1843},"npx next-forge init",{"type":109,"value":1845}," (detected by ",{"type":103,"tag":135,"props":1847,"children":1849},{"className":1848},[],[1850],{"type":109,"value":1851},"pnpm-workspace.yaml",{"type":109,"value":1853}," + ",{"type":103,"tag":135,"props":1855,"children":1857},{"className":1856},[],[1858],{"type":109,"value":1859},"packages\u002Fauth",{"type":109,"value":1853},{"type":103,"tag":135,"props":1862,"children":1864},{"className":1863},[],[1865],{"type":109,"value":1866},"packages\u002Fdatabase",{"type":109,"value":1853},{"type":103,"tag":135,"props":1869,"children":1871},{"className":1870},[],[1872],{"type":109,"value":1873},"@repo\u002F*",{"type":109,"value":1875}," imports):",{"type":103,"tag":196,"props":1877,"children":1878},{},[1879,1913,1954,2001,2021],{"type":103,"tag":129,"props":1880,"children":1881},{},[1882,1884,1890,1891,1897,1898,1904,1906,1912],{"type":109,"value":1883},"Env files are per-app (",{"type":103,"tag":135,"props":1885,"children":1887},{"className":1886},[],[1888],{"type":109,"value":1889},"apps\u002Fapp\u002F.env.local",{"type":109,"value":142},{"type":103,"tag":135,"props":1892,"children":1894},{"className":1893},[],[1895],{"type":109,"value":1896},"apps\u002Fweb\u002F.env.local",{"type":109,"value":142},{"type":103,"tag":135,"props":1899,"children":1901},{"className":1900},[],[1902],{"type":109,"value":1903},"apps\u002Fapi\u002F.env.local",{"type":109,"value":1905},") plus ",{"type":103,"tag":135,"props":1907,"children":1909},{"className":1908},[],[1910],{"type":109,"value":1911},"packages\u002Fdatabase\u002F.env",{"type":109,"value":260},{"type":103,"tag":129,"props":1914,"children":1915},{},[1916,1918,1924,1926,1931,1933,1939,1940,1946,1947,1953],{"type":109,"value":1917},"Run ",{"type":103,"tag":135,"props":1919,"children":1921},{"className":1920},[],[1922],{"type":109,"value":1923},"pnpm migrate",{"type":109,"value":1925}," (not ",{"type":103,"tag":135,"props":1927,"children":1929},{"className":1928},[],[1930],{"type":109,"value":140},{"type":109,"value":1932},") — it runs ",{"type":103,"tag":135,"props":1934,"children":1936},{"className":1935},[],[1937],{"type":109,"value":1938},"prisma format",{"type":109,"value":1853},{"type":103,"tag":135,"props":1941,"children":1943},{"className":1942},[],[1944],{"type":109,"value":1945},"prisma generate",{"type":109,"value":1853},{"type":103,"tag":135,"props":1948,"children":1950},{"className":1949},[],[1951],{"type":109,"value":1952},"prisma db push",{"type":109,"value":260},{"type":103,"tag":129,"props":1955,"children":1956},{},[1957,1959,1965,1966,1972,1973,1979,1980,1986,1987,1993,1994,2000],{"type":109,"value":1958},"Minimum env vars: ",{"type":103,"tag":135,"props":1960,"children":1962},{"className":1961},[],[1963],{"type":109,"value":1964},"DATABASE_URL",{"type":109,"value":142},{"type":103,"tag":135,"props":1967,"children":1969},{"className":1968},[],[1970],{"type":109,"value":1971},"CLERK_SECRET_KEY",{"type":109,"value":142},{"type":103,"tag":135,"props":1974,"children":1976},{"className":1975},[],[1977],{"type":109,"value":1978},"NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY",{"type":109,"value":142},{"type":103,"tag":135,"props":1981,"children":1983},{"className":1982},[],[1984],{"type":109,"value":1985},"NEXT_PUBLIC_APP_URL",{"type":109,"value":142},{"type":103,"tag":135,"props":1988,"children":1990},{"className":1989},[],[1991],{"type":109,"value":1992},"NEXT_PUBLIC_WEB_URL",{"type":109,"value":142},{"type":103,"tag":135,"props":1995,"children":1997},{"className":1996},[],[1998],{"type":109,"value":1999},"NEXT_PUBLIC_API_URL",{"type":109,"value":260},{"type":103,"tag":129,"props":2002,"children":2003},{},[2004,2006,2011,2013,2019],{"type":109,"value":2005},"Optional services (Stripe, Resend, PostHog, etc.) can be skipped initially — but remove their ",{"type":103,"tag":135,"props":2007,"children":2009},{"className":2008},[],[2010],{"type":109,"value":1873},{"type":109,"value":2012}," imports from app ",{"type":103,"tag":135,"props":2014,"children":2016},{"className":2015},[],[2017],{"type":109,"value":2018},"env.ts",{"type":109,"value":2020}," files to avoid validation errors.",{"type":103,"tag":129,"props":2022,"children":2023},{},[2024,2026,2032,2033,2039,2040,2046],{"type":109,"value":2025},"Deploy as 3 separate Vercel projects with root directories ",{"type":103,"tag":135,"props":2027,"children":2029},{"className":2028},[],[2030],{"type":109,"value":2031},"apps\u002Fapp",{"type":109,"value":142},{"type":103,"tag":135,"props":2034,"children":2036},{"className":2035},[],[2037],{"type":109,"value":2038},"apps\u002Fapi",{"type":109,"value":142},{"type":103,"tag":135,"props":2041,"children":2043},{"className":2042},[],[2044],{"type":109,"value":2045},"apps\u002Fweb",{"type":109,"value":260},{"type":103,"tag":112,"props":2048,"children":2049},{},[2050],{"type":109,"value":2051},"=> skill: next-forge — Full next-forge monorepo guide",{"type":103,"tag":2053,"props":2054,"children":2055},"style",{},[2056],{"type":109,"value":2057},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2059,"total":2162},[2060,2077,2096,2103,2120,2137,2152],{"slug":2061,"name":2061,"fn":2062,"description":2063,"org":2064,"tags":2065,"stars":23,"repoUrl":24,"updatedAt":2076},"ai-gateway","configure and manage Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2066,2069,2072,2075],{"name":2067,"slug":2068,"type":13},"AI Infrastructure","ai-infrastructure",{"name":2070,"slug":2071,"type":13},"Cost Optimization","cost-optimization",{"name":2073,"slug":2074,"type":13},"LLM","llm",{"name":9,"slug":8,"type":13},"2026-04-06T18:56:06.57787",{"slug":76,"name":76,"fn":2078,"description":2079,"org":2080,"tags":2081,"stars":23,"repoUrl":24,"updatedAt":2095},"integrate authentication in Next.js apps","Authentication integration guidance — Clerk (native Vercel Marketplace), Descope, and Auth0 setup for Next.js applications. Covers middleware auth patterns, sign-in\u002Fsign-up flows, and Marketplace provisioning. Use when implementing user authentication.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2082,2085,2088,2091,2094],{"name":2083,"slug":2084,"type":13},"Auth0","auth0",{"name":2086,"slug":2087,"type":13},"Authentication","authentication",{"name":2089,"slug":2090,"type":13},"Next.js","next-js",{"name":2092,"slug":2093,"type":13},"Security","security",{"name":9,"slug":8,"type":13},"2026-04-06T18:56:17.050565",{"slug":4,"name":4,"fn":5,"description":6,"org":2097,"tags":2098,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2099,2100,2101,2102],{"name":15,"slug":16,"type":13},{"name":21,"slug":22,"type":13},{"name":18,"slug":19,"type":13},{"name":9,"slug":8,"type":13},{"slug":2104,"name":2104,"fn":2105,"description":2106,"org":2107,"tags":2108,"stars":23,"repoUrl":24,"updatedAt":2119},"cdn-caching","debug Vercel CDN caching behavior","Debug Vercel CDN caching — cache hit rate, stale content, revalidation behavior, ISR + PPR, per-request cache reasons (cacheReason) and PPR state (ppr_state), and costs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2109,2112,2115,2118],{"name":2110,"slug":2111,"type":13},"Caching","caching",{"name":2113,"slug":2114,"type":13},"Observability","observability",{"name":2116,"slug":2117,"type":13},"Performance","performance",{"name":9,"slug":8,"type":13},"2026-07-30T05:31:34.628944",{"slug":2121,"name":2121,"fn":2122,"description":2123,"org":2124,"tags":2125,"stars":23,"repoUrl":24,"updatedAt":2136},"chat-sdk","build multi-platform chatbots with Vercel","Vercel Chat SDK expert guidance. Use when building multi-platform chat bots — Slack, Telegram, Microsoft Teams, Discord, Google Chat, GitHub, Linear — with a single codebase. Covers the Chat class, adapters, threads, messages, cards, modals, streaming, state management, and webhook setup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2126,2129,2132,2135],{"name":2127,"slug":2128,"type":13},"Agents","agents",{"name":2130,"slug":2131,"type":13},"Messaging","messaging",{"name":2133,"slug":2134,"type":13},"SDK","sdk",{"name":9,"slug":8,"type":13},"2026-04-06T18:56:26.921901",{"slug":2138,"name":2138,"fn":2139,"description":2140,"org":2141,"tags":2142,"stars":23,"repoUrl":24,"updatedAt":2151},"deployments-cicd","manage Vercel deployments and CI\u002FCD","Vercel deployment and CI\u002FCD expert guidance. Use when deploying, promoting, rolling back, inspecting deployments, building with --prebuilt, or configuring CI workflow files for Vercel.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2143,2146,2147,2150],{"name":2144,"slug":2145,"type":13},"CI\u002FCD","ci-cd",{"name":21,"slug":22,"type":13},{"name":2148,"slug":2149,"type":13},"Operations","operations",{"name":9,"slug":8,"type":13},"2026-04-06T18:56:22.054263",{"slug":80,"name":80,"fn":2153,"description":2154,"org":2155,"tags":2156,"stars":23,"repoUrl":24,"updatedAt":2161},"manage Vercel environment variables","Vercel environment variable expert guidance. Use when working with .env files, vercel env commands, OIDC tokens, or managing environment-specific configuration.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2157,2158,2159,2160],{"name":15,"slug":16,"type":13},{"name":2148,"slug":2149,"type":13},{"name":2092,"slug":2093,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:56:28.150777",29,{"items":2164,"total":2327},[2165,2183,2195,2212,2223,2236,2252,2266,2278,2297,2307,2317],{"slug":2166,"name":2166,"fn":2167,"description":2168,"org":2169,"tags":2170,"stars":2180,"repoUrl":2181,"updatedAt":2182},"next-cache-components-adoption","enable and migrate to Next.js Cache Components","Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the `cacheComponents` flag, work through a flood of blocking-prerender \u002F instant validation errors, run the `cache-components-instant-false` codemod, or decide between opting routes out with `export const instant = false` and fixing them in place.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2171,2172,2175,2178,2179],{"name":2110,"slug":2111,"type":13},{"name":2173,"slug":2174,"type":13},"Frontend","frontend",{"name":2176,"slug":2177,"type":13},"Migration","migration",{"name":2089,"slug":2090,"type":13},{"name":9,"slug":8,"type":13},141208,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fnext.js","2026-07-24T05:38:30.118542",{"slug":2184,"name":2184,"fn":2185,"description":2186,"org":2187,"tags":2188,"stars":2180,"repoUrl":2181,"updatedAt":2194},"next-cache-components-optimizer","optimize Next.js cache components","Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components \u002F PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next\u002Fplaywright instant() e2e and work it to green, one verified route at a time; the shipped test then guards against regression. Use when asked to make a route's navigation instant (its static shell commits immediately), fix a route whose static shell isn't prerendered\u002Fserved\u002Fprefetched, grow a route's static shell or fix its slow first paint, diagnose which Suspense boundary keeps a route out of its static shell, or write the instant() e2e guard for one. Requires Next.js 16.3+ with cacheComponents; directs an upgrade if older.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2189,2190,2191,2192,2193],{"name":2110,"slug":2111,"type":13},{"name":2173,"slug":2174,"type":13},{"name":2089,"slug":2090,"type":13},{"name":2116,"slug":2117,"type":13},{"name":9,"slug":8,"type":13},"2026-07-30T05:31:10.674078",{"slug":2196,"name":2196,"fn":2197,"description":2198,"org":2199,"tags":2200,"stars":2180,"repoUrl":2181,"updatedAt":2211},"next-dev-loop","verify Next.js runtime behavior","Verify Next.js runtime behavior after editing app code. Use this skill to confirm a change actually works in a running app — not just that it compiles or type-checks. Combines \u002F_next\u002Fmcp (Next.js's view) with agent-browser (the browser's view). Requires a running `next dev`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2201,2204,2205,2206,2207,2208],{"name":2202,"slug":2203,"type":13},"Debugging","debugging",{"name":2173,"slug":2174,"type":13},{"name":18,"slug":19,"type":13},{"name":2089,"slug":2090,"type":13},{"name":9,"slug":8,"type":13},{"name":2209,"slug":2210,"type":13},"Web Development","web-development","2026-05-22T06:45:28.627735",{"slug":2213,"name":2213,"fn":2214,"description":2215,"org":2216,"tags":2217,"stars":2180,"repoUrl":2181,"updatedAt":2222},"next-partial-prefetching-adoption","adopt Partial Prefetching in Next.js apps","Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the `partialPrefetching` flag, opt routes in with `export const prefetch = 'partial'`, audit `\u003CLink prefetch={true}>` calls, or resolve the link-prefetch-partial and instant-shell-url-data insights.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2218,2219,2220,2221],{"name":2173,"slug":2174,"type":13},{"name":2089,"slug":2090,"type":13},{"name":2116,"slug":2117,"type":13},{"name":9,"slug":8,"type":13},"2026-07-30T05:31:11.591864",{"slug":2224,"name":2224,"fn":2225,"description":2226,"org":2227,"tags":2228,"stars":2233,"repoUrl":2234,"updatedAt":2235},"turborepo","manage monorepos with Turborepo","Turborepo monorepo build system guidance. Triggers on: turbo.json, task pipelines,\ndependsOn, caching, remote cache, the \"turbo\" CLI, --filter, --affected, CI optimization, environment\nvariables, internal packages, monorepo structure\u002Fbest practices, and boundaries.\n\nUse when user: configures tasks\u002Fworkflows\u002Fpipelines, creates packages, sets up\nmonorepo, shares code between apps, runs changed\u002Faffected packages, debugs cache,\nor has apps\u002Fpackages directories.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2229,2230,2231],{"name":2144,"slug":2145,"type":13},{"name":2116,"slug":2117,"type":13},{"name":2232,"slug":2224,"type":13},"Turborepo",30809,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fturborepo","2026-07-30T05:32:14.920116",{"slug":2237,"name":2237,"fn":2238,"description":2239,"org":2240,"tags":2241,"stars":2249,"repoUrl":2250,"updatedAt":2251},"add-function-examples","add AI function examples for testing","Guide for adding new AI function examples, for testing specific features against the actual provider APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2242,2245,2248],{"name":2243,"slug":2244,"type":13},"AI SDK","ai-sdk",{"name":2246,"slug":2247,"type":13},"Testing","testing",{"name":9,"slug":8,"type":13},25670,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fai","2026-04-06T18:55:51.318866",{"slug":2253,"name":2253,"fn":2254,"description":2255,"org":2256,"tags":2257,"stars":2249,"repoUrl":2250,"updatedAt":2265},"add-harness-package","add AI SDK harness packages","Guide for adding new AI SDK harness packages. Use when creating a new @ai-sdk\u002Fharness-\u003Cname> package that adapts a coding-agent runtime to HarnessV1.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2258,2259,2260,2263,2264],{"name":2127,"slug":2128,"type":13},{"name":2243,"slug":2244,"type":13},{"name":2261,"slug":2262,"type":13},"Harness","harness",{"name":2133,"slug":2134,"type":13},{"name":9,"slug":8,"type":13},"2026-06-18T08:29:19.858737",{"slug":2267,"name":2267,"fn":2268,"description":2269,"org":2270,"tags":2271,"stars":2249,"repoUrl":2250,"updatedAt":2277},"add-provider-package","add new provider packages to AI SDK","Guide for adding new AI provider packages to the AI SDK. Use when creating a new @ai-sdk\u002F\u003Cprovider> package to integrate an AI service into the SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2272,2273,2276],{"name":2243,"slug":2244,"type":13},{"name":2274,"slug":2275,"type":13},"API Development","api-development",{"name":9,"slug":8,"type":13},"2026-04-06T18:55:47.45549",{"slug":2279,"name":2279,"fn":2280,"description":2281,"org":2282,"tags":2283,"stars":2249,"repoUrl":2250,"updatedAt":2296},"adr-skill","create and maintain architecture decision records","Create and maintain Architecture Decision Records (ADRs) optimized for agentic coding workflows. Use when you need to propose, write, update, accept\u002Freject, deprecate, or supersede an ADR; bootstrap an adr folder and index; consult existing ADRs before implementing changes; or enforce ADR conventions. This skill uses Socratic questioning to capture intent before drafting, and validates output against an agent-readiness checklist.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2284,2287,2290,2293],{"name":2285,"slug":2286,"type":13},"ADR","adr",{"name":2288,"slug":2289,"type":13},"Architecture","architecture",{"name":2291,"slug":2292,"type":13},"Documentation","documentation",{"name":2294,"slug":2295,"type":13},"Engineering","engineering","2026-04-06T18:55:50.043694",{"slug":2244,"name":2244,"fn":2298,"description":2299,"org":2300,"tags":2301,"stars":2249,"repoUrl":2250,"updatedAt":2306},"build AI features with Vercel AI SDK","Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: \"AI SDK\", \"Vercel AI SDK\", \"generateText\", \"streamText\", \"add AI to my app\", \"build an agent\", \"tool calling\", \"structured output\", \"useChat\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2302,2303,2304,2305],{"name":2127,"slug":2128,"type":13},{"name":2243,"slug":2244,"type":13},{"name":2073,"slug":2074,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:48.739463",{"slug":2308,"name":2308,"fn":2309,"description":2310,"org":2311,"tags":2312,"stars":2249,"repoUrl":2250,"updatedAt":2316},"capture-api-response-test-fixture","capture API response test fixtures","Capture API response test fixture.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2313,2314,2315],{"name":2274,"slug":2275,"type":13},{"name":2246,"slug":2247,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:56.374433",{"slug":2318,"name":2318,"fn":2319,"description":2320,"org":2321,"tags":2322,"stars":2249,"repoUrl":2250,"updatedAt":2326},"develop-ai-functions-example","develop AI SDK function examples","Develop examples for AI SDK functions. Use when creating, running, or modifying examples under examples\u002Fai-functions\u002Fsrc to validate provider support, demonstrate features, or create test fixtures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2323,2324,2325],{"name":2243,"slug":2244,"type":13},{"name":2246,"slug":2247,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:55.088956",68]