[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-bootstrap":3,"mdc--jb9g3w-key":39,"related-org-openai-bootstrap":1932,"related-repo-openai-bootstrap":2137},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"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},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Operations","operations","tag",{"name":17,"slug":18,"type":15},"Vercel","vercel",{"name":20,"slug":21,"type":15},"Database","database",{"name":23,"slug":24,"type":15},"Deployment","deployment",{"name":26,"slug":27,"type":15},"Authentication","authentication",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:40:36.805063",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fvercel\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'\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":40,"body":74},{"name":4,"description":6,"metadata":41},{"priority":42,"docs":43,"sitemap":46,"pathPatterns":47,"bashPatterns":58,"importPatterns":65},8,[44,45],"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fgetting-started-with-vercel","https:\u002F\u002Fnextjs.org\u002Fdocs\u002Fgetting-started\u002Finstallation","https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml",[48,49,50,51,52,53,54,55,56,57],".env.example",".env.sample",".env.template","README*","docs\u002F**\u002Fsetup*","package.json","drizzle.config.*","prisma\u002Fschema.prisma","auth.*","src\u002F**\u002Fauth.*",[59,60,61,62,63,64],"\\\\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",[66,67,68,69,70,71,72,73],"@neondatabase\u002Fserverless","drizzle-orm","@upstash\u002Fredis","@vercel\u002Fblob","@vercel\u002Fedge-config","next-auth","@auth\u002Fcore","better-auth",{"type":75,"children":76},"root",[77,86,92,99,164,170,179,220,241,371,403,428,434,441,449,478,486,534,542,591,597,617,623,628,634,639,799,805,818,1195,1200,1206,1211,1268,1307,1313,1318,1369,1375,1380,1464,1469,1475,1480,1657,1663,1701,1707,1750,1921,1926],{"type":78,"tag":79,"props":80,"children":82},"element","h1",{"id":81},"project-bootstrap-orchestrator",[83],{"type":84,"value":85},"text","Project Bootstrap Orchestrator",{"type":78,"tag":87,"props":88,"children":89},"p",{},[90],{"type":84,"value":91},"Execute bootstrap in strict order. Do not run migrations or development server until project linking and environment verification are complete.",{"type":78,"tag":93,"props":94,"children":96},"h2",{"id":95},"rules",[97],{"type":84,"value":98},"Rules",{"type":78,"tag":100,"props":101,"children":102},"ul",{},[103,141,154,159],{"type":78,"tag":104,"props":105,"children":106},"li",{},[107,109,116,118,124,125,131,133,139],{"type":84,"value":108},"Do not run ",{"type":78,"tag":110,"props":111,"children":113},"code",{"className":112},[],[114],{"type":84,"value":115},"db:push",{"type":84,"value":117},", ",{"type":78,"tag":110,"props":119,"children":121},{"className":120},[],[122],{"type":84,"value":123},"db:migrate",{"type":84,"value":117},{"type":78,"tag":110,"props":126,"children":128},{"className":127},[],[129],{"type":84,"value":130},"db:seed",{"type":84,"value":132},", or ",{"type":78,"tag":110,"props":134,"children":136},{"className":135},[],[137],{"type":84,"value":138},"dev",{"type":84,"value":140}," until Vercel linking is complete and env keys are verified.",{"type":78,"tag":104,"props":142,"children":143},{},[144,146,152],{"type":84,"value":145},"Prefer Vercel-managed provisioning (",{"type":78,"tag":110,"props":147,"children":149},{"className":148},[],[150],{"type":84,"value":151},"vercel integration ...",{"type":84,"value":153},") for shared resources.",{"type":78,"tag":104,"props":155,"children":156},{},[157],{"type":84,"value":158},"Use provider CLIs only as fallback when Vercel integration flow is unavailable.",{"type":78,"tag":104,"props":160,"children":161},{},[162],{"type":84,"value":163},"Never echo secret values in terminal output, logs, or summaries.",{"type":78,"tag":93,"props":165,"children":167},{"id":166},"preflight",[168],{"type":84,"value":169},"Preflight",{"type":78,"tag":171,"props":172,"children":173},"ol",{},[174],{"type":78,"tag":104,"props":175,"children":176},{},[177],{"type":84,"value":178},"Confirm Vercel CLI is installed and authenticated.",{"type":78,"tag":180,"props":181,"children":186},"pre",{"className":182,"code":183,"language":184,"meta":185,"style":185},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","vercel --version\nvercel whoami\n","bash","",[187],{"type":78,"tag":110,"props":188,"children":189},{"__ignoreMap":185},[190,207],{"type":78,"tag":191,"props":192,"children":195},"span",{"class":193,"line":194},"line",1,[196,201],{"type":78,"tag":191,"props":197,"children":199},{"style":198},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[200],{"type":84,"value":18},{"type":78,"tag":191,"props":202,"children":204},{"style":203},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[205],{"type":84,"value":206}," --version\n",{"type":78,"tag":191,"props":208,"children":210},{"class":193,"line":209},2,[211,215],{"type":78,"tag":191,"props":212,"children":213},{"style":198},[214],{"type":84,"value":18},{"type":78,"tag":191,"props":216,"children":217},{"style":203},[218],{"type":84,"value":219}," whoami\n",{"type":78,"tag":171,"props":221,"children":222},{"start":209},[223,236],{"type":78,"tag":104,"props":224,"children":225},{},[226,228,234],{"type":84,"value":227},"Confirm repo linkage by checking ",{"type":78,"tag":110,"props":229,"children":231},{"className":230},[],[232],{"type":84,"value":233},".vercel\u002Fproject.json",{"type":84,"value":235},".",{"type":78,"tag":104,"props":237,"children":238},{},[239],{"type":84,"value":240},"If not linked, inspect available teams\u002Fprojects before asking the user to choose:",{"type":78,"tag":180,"props":242,"children":244},{"className":182,"code":243,"language":184,"meta":185,"style":185},"vercel teams ls\nvercel projects ls --scope \u003Cteam>\nvercel link --yes --scope \u003Cteam> --project \u003Cproject>\n",[245],{"type":78,"tag":110,"props":246,"children":247},{"__ignoreMap":185},[248,265,309],{"type":78,"tag":191,"props":249,"children":250},{"class":193,"line":194},[251,255,260],{"type":78,"tag":191,"props":252,"children":253},{"style":198},[254],{"type":84,"value":18},{"type":78,"tag":191,"props":256,"children":257},{"style":203},[258],{"type":84,"value":259}," teams",{"type":78,"tag":191,"props":261,"children":262},{"style":203},[263],{"type":84,"value":264}," ls\n",{"type":78,"tag":191,"props":266,"children":267},{"class":193,"line":209},[268,272,277,282,287,293,298,304],{"type":78,"tag":191,"props":269,"children":270},{"style":198},[271],{"type":84,"value":18},{"type":78,"tag":191,"props":273,"children":274},{"style":203},[275],{"type":84,"value":276}," projects",{"type":78,"tag":191,"props":278,"children":279},{"style":203},[280],{"type":84,"value":281}," ls",{"type":78,"tag":191,"props":283,"children":284},{"style":203},[285],{"type":84,"value":286}," --scope",{"type":78,"tag":191,"props":288,"children":290},{"style":289},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[291],{"type":84,"value":292}," \u003C",{"type":78,"tag":191,"props":294,"children":295},{"style":203},[296],{"type":84,"value":297},"tea",{"type":78,"tag":191,"props":299,"children":301},{"style":300},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[302],{"type":84,"value":303},"m",{"type":78,"tag":191,"props":305,"children":306},{"style":289},[307],{"type":84,"value":308},">\n",{"type":78,"tag":191,"props":310,"children":312},{"class":193,"line":311},3,[313,317,322,327,331,335,339,343,348,353,357,362,367],{"type":78,"tag":191,"props":314,"children":315},{"style":198},[316],{"type":84,"value":18},{"type":78,"tag":191,"props":318,"children":319},{"style":203},[320],{"type":84,"value":321}," link",{"type":78,"tag":191,"props":323,"children":324},{"style":203},[325],{"type":84,"value":326}," --yes",{"type":78,"tag":191,"props":328,"children":329},{"style":203},[330],{"type":84,"value":286},{"type":78,"tag":191,"props":332,"children":333},{"style":289},[334],{"type":84,"value":292},{"type":78,"tag":191,"props":336,"children":337},{"style":203},[338],{"type":84,"value":297},{"type":78,"tag":191,"props":340,"children":341},{"style":300},[342],{"type":84,"value":303},{"type":78,"tag":191,"props":344,"children":345},{"style":289},[346],{"type":84,"value":347},">",{"type":78,"tag":191,"props":349,"children":350},{"style":203},[351],{"type":84,"value":352}," --project",{"type":78,"tag":191,"props":354,"children":355},{"style":289},[356],{"type":84,"value":292},{"type":78,"tag":191,"props":358,"children":359},{"style":203},[360],{"type":84,"value":361},"projec",{"type":78,"tag":191,"props":363,"children":364},{"style":300},[365],{"type":84,"value":366},"t",{"type":78,"tag":191,"props":368,"children":369},{"style":289},[370],{"type":84,"value":308},{"type":78,"tag":171,"props":372,"children":374},{"start":373},4,[375,398],{"type":78,"tag":104,"props":376,"children":377},{},[378,380,385,386,391,392,397],{"type":84,"value":379},"Find the env template in priority order: ",{"type":78,"tag":110,"props":381,"children":383},{"className":382},[],[384],{"type":84,"value":48},{"type":84,"value":117},{"type":78,"tag":110,"props":387,"children":389},{"className":388},[],[390],{"type":84,"value":49},{"type":84,"value":117},{"type":78,"tag":110,"props":393,"children":395},{"className":394},[],[396],{"type":84,"value":50},{"type":84,"value":235},{"type":78,"tag":104,"props":399,"children":400},{},[401],{"type":84,"value":402},"Create local env file if missing:",{"type":78,"tag":180,"props":404,"children":406},{"className":182,"code":405,"language":184,"meta":185,"style":185},"cp .env.example .env.local\n",[407],{"type":78,"tag":110,"props":408,"children":409},{"__ignoreMap":185},[410],{"type":78,"tag":191,"props":411,"children":412},{"class":193,"line":194},[413,418,423],{"type":78,"tag":191,"props":414,"children":415},{"style":198},[416],{"type":84,"value":417},"cp",{"type":78,"tag":191,"props":419,"children":420},{"style":203},[421],{"type":84,"value":422}," .env.example",{"type":78,"tag":191,"props":424,"children":425},{"style":203},[426],{"type":84,"value":427}," .env.local\n",{"type":78,"tag":93,"props":429,"children":431},{"id":430},"resource-setup-postgres",[432],{"type":84,"value":433},"Resource Setup: Postgres",{"type":78,"tag":435,"props":436,"children":438},"h3",{"id":437},"preferred-path-vercel-managed-neon",[439],{"type":84,"value":440},"Preferred path (Vercel-managed Neon)",{"type":78,"tag":171,"props":442,"children":443},{},[444],{"type":78,"tag":104,"props":445,"children":446},{},[447],{"type":84,"value":448},"Read integration setup guidance:",{"type":78,"tag":180,"props":450,"children":452},{"className":182,"code":451,"language":184,"meta":185,"style":185},"vercel integration guide neon\n",[453],{"type":78,"tag":110,"props":454,"children":455},{"__ignoreMap":185},[456],{"type":78,"tag":191,"props":457,"children":458},{"class":193,"line":194},[459,463,468,473],{"type":78,"tag":191,"props":460,"children":461},{"style":198},[462],{"type":84,"value":18},{"type":78,"tag":191,"props":464,"children":465},{"style":203},[466],{"type":84,"value":467}," integration",{"type":78,"tag":191,"props":469,"children":470},{"style":203},[471],{"type":84,"value":472}," guide",{"type":78,"tag":191,"props":474,"children":475},{"style":203},[476],{"type":84,"value":477}," neon\n",{"type":78,"tag":171,"props":479,"children":480},{"start":209},[481],{"type":78,"tag":104,"props":482,"children":483},{},[484],{"type":84,"value":485},"Add Neon integration to the Vercel scope:",{"type":78,"tag":180,"props":487,"children":489},{"className":182,"code":488,"language":184,"meta":185,"style":185},"vercel integration add neon --scope \u003Cteam>\n",[490],{"type":78,"tag":110,"props":491,"children":492},{"__ignoreMap":185},[493],{"type":78,"tag":191,"props":494,"children":495},{"class":193,"line":194},[496,500,504,509,514,518,522,526,530],{"type":78,"tag":191,"props":497,"children":498},{"style":198},[499],{"type":84,"value":18},{"type":78,"tag":191,"props":501,"children":502},{"style":203},[503],{"type":84,"value":467},{"type":78,"tag":191,"props":505,"children":506},{"style":203},[507],{"type":84,"value":508}," add",{"type":78,"tag":191,"props":510,"children":511},{"style":203},[512],{"type":84,"value":513}," neon",{"type":78,"tag":191,"props":515,"children":516},{"style":203},[517],{"type":84,"value":286},{"type":78,"tag":191,"props":519,"children":520},{"style":289},[521],{"type":84,"value":292},{"type":78,"tag":191,"props":523,"children":524},{"style":203},[525],{"type":84,"value":297},{"type":78,"tag":191,"props":527,"children":528},{"style":300},[529],{"type":84,"value":303},{"type":78,"tag":191,"props":531,"children":532},{"style":289},[533],{"type":84,"value":308},{"type":78,"tag":171,"props":535,"children":536},{"start":311},[537],{"type":78,"tag":104,"props":538,"children":539},{},[540],{"type":84,"value":541},"Verify expected environment variable names exist in Vercel and pull locally:",{"type":78,"tag":180,"props":543,"children":545},{"className":182,"code":544,"language":184,"meta":185,"style":185},"vercel env ls\nvercel env pull .env.local --yes\n",[546],{"type":78,"tag":110,"props":547,"children":548},{"__ignoreMap":185},[549,565],{"type":78,"tag":191,"props":550,"children":551},{"class":193,"line":194},[552,556,561],{"type":78,"tag":191,"props":553,"children":554},{"style":198},[555],{"type":84,"value":18},{"type":78,"tag":191,"props":557,"children":558},{"style":203},[559],{"type":84,"value":560}," env",{"type":78,"tag":191,"props":562,"children":563},{"style":203},[564],{"type":84,"value":264},{"type":78,"tag":191,"props":566,"children":567},{"class":193,"line":209},[568,572,576,581,586],{"type":78,"tag":191,"props":569,"children":570},{"style":198},[571],{"type":84,"value":18},{"type":78,"tag":191,"props":573,"children":574},{"style":203},[575],{"type":84,"value":560},{"type":78,"tag":191,"props":577,"children":578},{"style":203},[579],{"type":84,"value":580}," pull",{"type":78,"tag":191,"props":582,"children":583},{"style":203},[584],{"type":84,"value":585}," .env.local",{"type":78,"tag":191,"props":587,"children":588},{"style":203},[589],{"type":84,"value":590}," --yes\n",{"type":78,"tag":435,"props":592,"children":594},{"id":593},"fallback-path-1-dashboard",[595],{"type":84,"value":596},"Fallback path 1 (Dashboard)",{"type":78,"tag":171,"props":598,"children":599},{},[600,605],{"type":78,"tag":104,"props":601,"children":602},{},[603],{"type":84,"value":604},"Provision Neon through the Vercel dashboard integration UI.",{"type":78,"tag":104,"props":606,"children":607},{},[608,610,616],{"type":84,"value":609},"Re-run ",{"type":78,"tag":110,"props":611,"children":613},{"className":612},[],[614],{"type":84,"value":615},"vercel env pull .env.local --yes",{"type":84,"value":235},{"type":78,"tag":435,"props":618,"children":620},{"id":619},"fallback-path-2-neon-cli",[621],{"type":84,"value":622},"Fallback path 2 (Neon CLI)",{"type":78,"tag":87,"props":624,"children":625},{},[626],{"type":84,"value":627},"Use Neon CLI only when Vercel-managed provisioning is unavailable. After creating resources, add required env vars in Vercel and pull again.",{"type":78,"tag":93,"props":629,"children":631},{"id":630},"auth_secret-generation",[632],{"type":84,"value":633},"AUTH_SECRET Generation",{"type":78,"tag":87,"props":635,"children":636},{},[637],{"type":84,"value":638},"Generate a high-entropy secret without printing it, then store it in Vercel and refresh local env:",{"type":78,"tag":180,"props":640,"children":642},{"className":182,"code":641,"language":184,"meta":185,"style":185},"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",[643],{"type":78,"tag":110,"props":644,"children":645},{"__ignoreMap":185},[646,689,763,776],{"type":78,"tag":191,"props":647,"children":648},{"class":193,"line":194},[649,654,659,664,669,674,679,684],{"type":78,"tag":191,"props":650,"children":651},{"style":300},[652],{"type":84,"value":653},"AUTH_SECRET",{"type":78,"tag":191,"props":655,"children":656},{"style":289},[657],{"type":84,"value":658},"=",{"type":78,"tag":191,"props":660,"children":661},{"style":289},[662],{"type":84,"value":663},"\"$(",{"type":78,"tag":191,"props":665,"children":666},{"style":198},[667],{"type":84,"value":668},"node",{"type":78,"tag":191,"props":670,"children":671},{"style":203},[672],{"type":84,"value":673}," -e ",{"type":78,"tag":191,"props":675,"children":676},{"style":289},[677],{"type":84,"value":678},"\"",{"type":78,"tag":191,"props":680,"children":681},{"style":203},[682],{"type":84,"value":683},"console.log(require('node:crypto').randomBytes(32).toString('base64url'))",{"type":78,"tag":191,"props":685,"children":686},{"style":289},[687],{"type":84,"value":688},"\")\"\n",{"type":78,"tag":191,"props":690,"children":691},{"class":193,"line":209},[692,698,703,708,712,716,721,725,730,735,739,743,748,753,758],{"type":78,"tag":191,"props":693,"children":695},{"style":694},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[696],{"type":84,"value":697},"printf",{"type":78,"tag":191,"props":699,"children":700},{"style":289},[701],{"type":84,"value":702}," \"",{"type":78,"tag":191,"props":704,"children":705},{"style":203},[706],{"type":84,"value":707},"%s",{"type":78,"tag":191,"props":709,"children":710},{"style":289},[711],{"type":84,"value":678},{"type":78,"tag":191,"props":713,"children":714},{"style":289},[715],{"type":84,"value":702},{"type":78,"tag":191,"props":717,"children":718},{"style":300},[719],{"type":84,"value":720},"$AUTH_SECRET",{"type":78,"tag":191,"props":722,"children":723},{"style":289},[724],{"type":84,"value":678},{"type":78,"tag":191,"props":726,"children":727},{"style":289},[728],{"type":84,"value":729}," |",{"type":78,"tag":191,"props":731,"children":732},{"style":198},[733],{"type":84,"value":734}," vercel",{"type":78,"tag":191,"props":736,"children":737},{"style":203},[738],{"type":84,"value":560},{"type":78,"tag":191,"props":740,"children":741},{"style":203},[742],{"type":84,"value":508},{"type":78,"tag":191,"props":744,"children":745},{"style":203},[746],{"type":84,"value":747}," AUTH_SECRET",{"type":78,"tag":191,"props":749,"children":750},{"style":203},[751],{"type":84,"value":752}," development",{"type":78,"tag":191,"props":754,"children":755},{"style":203},[756],{"type":84,"value":757}," preview",{"type":78,"tag":191,"props":759,"children":760},{"style":203},[761],{"type":84,"value":762}," production\n",{"type":78,"tag":191,"props":764,"children":765},{"class":193,"line":311},[766,771],{"type":78,"tag":191,"props":767,"children":768},{"style":694},[769],{"type":84,"value":770},"unset",{"type":78,"tag":191,"props":772,"children":773},{"style":203},[774],{"type":84,"value":775}," AUTH_SECRET\n",{"type":78,"tag":191,"props":777,"children":778},{"class":193,"line":373},[779,783,787,791,795],{"type":78,"tag":191,"props":780,"children":781},{"style":198},[782],{"type":84,"value":18},{"type":78,"tag":191,"props":784,"children":785},{"style":203},[786],{"type":84,"value":560},{"type":78,"tag":191,"props":788,"children":789},{"style":203},[790],{"type":84,"value":580},{"type":78,"tag":191,"props":792,"children":793},{"style":203},[794],{"type":84,"value":585},{"type":78,"tag":191,"props":796,"children":797},{"style":203},[798],{"type":84,"value":590},{"type":78,"tag":93,"props":800,"children":802},{"id":801},"env-verification",[803],{"type":84,"value":804},"Env Verification",{"type":78,"tag":87,"props":806,"children":807},{},[808,810,816],{"type":84,"value":809},"Compare required keys from template file against ",{"type":78,"tag":110,"props":811,"children":813},{"className":812},[],[814],{"type":84,"value":815},".env.local",{"type":84,"value":817}," keys (names only, never values):",{"type":78,"tag":180,"props":819,"children":821},{"className":182,"code":820,"language":184,"meta":185,"style":185},"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",[822],{"type":78,"tag":110,"props":823,"children":824},{"__ignoreMap":185},[825,842,885,926,951,960,969,978,987,1006,1112],{"type":78,"tag":191,"props":826,"children":827},{"class":193,"line":194},[828,833,837],{"type":78,"tag":191,"props":829,"children":830},{"style":300},[831],{"type":84,"value":832},"template_file",{"type":78,"tag":191,"props":834,"children":835},{"style":289},[836],{"type":84,"value":658},{"type":78,"tag":191,"props":838,"children":839},{"style":289},[840],{"type":84,"value":841},"\"\"\n",{"type":78,"tag":191,"props":843,"children":844},{"class":193,"line":209},[845,851,856,861,865,870,875,880],{"type":78,"tag":191,"props":846,"children":848},{"style":847},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[849],{"type":84,"value":850},"for",{"type":78,"tag":191,"props":852,"children":853},{"style":300},[854],{"type":84,"value":855}," candidate ",{"type":78,"tag":191,"props":857,"children":858},{"style":847},[859],{"type":84,"value":860},"in",{"type":78,"tag":191,"props":862,"children":863},{"style":203},[864],{"type":84,"value":422},{"type":78,"tag":191,"props":866,"children":867},{"style":203},[868],{"type":84,"value":869}," .env.sample",{"type":78,"tag":191,"props":871,"children":872},{"style":203},[873],{"type":84,"value":874}," .env.template",{"type":78,"tag":191,"props":876,"children":877},{"style":289},[878],{"type":84,"value":879},";",{"type":78,"tag":191,"props":881,"children":882},{"style":847},[883],{"type":84,"value":884}," do\n",{"type":78,"tag":191,"props":886,"children":887},{"class":193,"line":311},[888,893,898,903,907,912,916,921],{"type":78,"tag":191,"props":889,"children":890},{"style":847},[891],{"type":84,"value":892},"  if",{"type":78,"tag":191,"props":894,"children":895},{"style":289},[896],{"type":84,"value":897}," [",{"type":78,"tag":191,"props":899,"children":900},{"style":289},[901],{"type":84,"value":902}," -f",{"type":78,"tag":191,"props":904,"children":905},{"style":289},[906],{"type":84,"value":702},{"type":78,"tag":191,"props":908,"children":909},{"style":300},[910],{"type":84,"value":911},"$candidate",{"type":78,"tag":191,"props":913,"children":914},{"style":289},[915],{"type":84,"value":678},{"type":78,"tag":191,"props":917,"children":918},{"style":289},[919],{"type":84,"value":920}," ];",{"type":78,"tag":191,"props":922,"children":923},{"style":847},[924],{"type":84,"value":925}," then\n",{"type":78,"tag":191,"props":927,"children":928},{"class":193,"line":373},[929,934,938,942,946],{"type":78,"tag":191,"props":930,"children":931},{"style":300},[932],{"type":84,"value":933},"    template_file",{"type":78,"tag":191,"props":935,"children":936},{"style":289},[937],{"type":84,"value":658},{"type":78,"tag":191,"props":939,"children":940},{"style":289},[941],{"type":84,"value":678},{"type":78,"tag":191,"props":943,"children":944},{"style":300},[945],{"type":84,"value":911},{"type":78,"tag":191,"props":947,"children":948},{"style":289},[949],{"type":84,"value":950},"\"\n",{"type":78,"tag":191,"props":952,"children":954},{"class":193,"line":953},5,[955],{"type":78,"tag":191,"props":956,"children":957},{"style":847},[958],{"type":84,"value":959},"    break\n",{"type":78,"tag":191,"props":961,"children":963},{"class":193,"line":962},6,[964],{"type":78,"tag":191,"props":965,"children":966},{"style":847},[967],{"type":84,"value":968},"  fi\n",{"type":78,"tag":191,"props":970,"children":972},{"class":193,"line":971},7,[973],{"type":78,"tag":191,"props":974,"children":975},{"style":847},[976],{"type":84,"value":977},"done\n",{"type":78,"tag":191,"props":979,"children":980},{"class":193,"line":42},[981],{"type":78,"tag":191,"props":982,"children":984},{"emptyLinePlaceholder":983},true,[985],{"type":84,"value":986},"\n",{"type":78,"tag":191,"props":988,"children":990},{"class":193,"line":989},9,[991,996,1001],{"type":78,"tag":191,"props":992,"children":993},{"style":198},[994],{"type":84,"value":995},"comm",{"type":78,"tag":191,"props":997,"children":998},{"style":203},[999],{"type":84,"value":1000}," -23",{"type":78,"tag":191,"props":1002,"children":1003},{"style":300},[1004],{"type":84,"value":1005}," \\\n",{"type":78,"tag":191,"props":1007,"children":1009},{"class":193,"line":1008},10,[1010,1015,1020,1025,1030,1035,1039,1043,1048,1052,1056,1061,1066,1070,1074,1078,1083,1089,1093,1098,1103,1108],{"type":78,"tag":191,"props":1011,"children":1012},{"style":289},[1013],{"type":84,"value":1014},"  \u003C(",{"type":78,"tag":191,"props":1016,"children":1017},{"style":198},[1018],{"type":84,"value":1019},"grep",{"type":78,"tag":191,"props":1021,"children":1022},{"style":203},[1023],{"type":84,"value":1024}," -E ",{"type":78,"tag":191,"props":1026,"children":1027},{"style":289},[1028],{"type":84,"value":1029},"'",{"type":78,"tag":191,"props":1031,"children":1032},{"style":203},[1033],{"type":84,"value":1034},"^[A-Za-z_][A-Za-z0-9_]*=",{"type":78,"tag":191,"props":1036,"children":1037},{"style":289},[1038],{"type":84,"value":1029},{"type":78,"tag":191,"props":1040,"children":1041},{"style":289},[1042],{"type":84,"value":702},{"type":78,"tag":191,"props":1044,"children":1045},{"style":300},[1046],{"type":84,"value":1047},"$template_file",{"type":78,"tag":191,"props":1049,"children":1050},{"style":289},[1051],{"type":84,"value":678},{"type":78,"tag":191,"props":1053,"children":1054},{"style":289},[1055],{"type":84,"value":729},{"type":78,"tag":191,"props":1057,"children":1058},{"style":198},[1059],{"type":84,"value":1060}," cut",{"type":78,"tag":191,"props":1062,"children":1063},{"style":203},[1064],{"type":84,"value":1065}," -d ",{"type":78,"tag":191,"props":1067,"children":1068},{"style":289},[1069],{"type":84,"value":1029},{"type":78,"tag":191,"props":1071,"children":1072},{"style":203},[1073],{"type":84,"value":658},{"type":78,"tag":191,"props":1075,"children":1076},{"style":289},[1077],{"type":84,"value":1029},{"type":78,"tag":191,"props":1079,"children":1080},{"style":203},[1081],{"type":84,"value":1082}," -f ",{"type":78,"tag":191,"props":1084,"children":1086},{"style":1085},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1087],{"type":84,"value":1088},"1",{"type":78,"tag":191,"props":1090,"children":1091},{"style":289},[1092],{"type":84,"value":729},{"type":78,"tag":191,"props":1094,"children":1095},{"style":198},[1096],{"type":84,"value":1097}," sort",{"type":78,"tag":191,"props":1099,"children":1100},{"style":203},[1101],{"type":84,"value":1102}," -u",{"type":78,"tag":191,"props":1104,"children":1105},{"style":289},[1106],{"type":84,"value":1107},")",{"type":78,"tag":191,"props":1109,"children":1110},{"style":300},[1111],{"type":84,"value":1005},{"type":78,"tag":191,"props":1113,"children":1115},{"class":193,"line":1114},11,[1116,1120,1124,1128,1132,1136,1140,1145,1150,1154,1158,1162,1166,1170,1174,1178,1182,1186,1190],{"type":78,"tag":191,"props":1117,"children":1118},{"style":289},[1119],{"type":84,"value":1014},{"type":78,"tag":191,"props":1121,"children":1122},{"style":198},[1123],{"type":84,"value":1019},{"type":78,"tag":191,"props":1125,"children":1126},{"style":203},[1127],{"type":84,"value":1024},{"type":78,"tag":191,"props":1129,"children":1130},{"style":289},[1131],{"type":84,"value":1029},{"type":78,"tag":191,"props":1133,"children":1134},{"style":203},[1135],{"type":84,"value":1034},{"type":78,"tag":191,"props":1137,"children":1138},{"style":289},[1139],{"type":84,"value":1029},{"type":78,"tag":191,"props":1141,"children":1142},{"style":203},[1143],{"type":84,"value":1144}," .env.local ",{"type":78,"tag":191,"props":1146,"children":1147},{"style":289},[1148],{"type":84,"value":1149},"|",{"type":78,"tag":191,"props":1151,"children":1152},{"style":198},[1153],{"type":84,"value":1060},{"type":78,"tag":191,"props":1155,"children":1156},{"style":203},[1157],{"type":84,"value":1065},{"type":78,"tag":191,"props":1159,"children":1160},{"style":289},[1161],{"type":84,"value":1029},{"type":78,"tag":191,"props":1163,"children":1164},{"style":203},[1165],{"type":84,"value":658},{"type":78,"tag":191,"props":1167,"children":1168},{"style":289},[1169],{"type":84,"value":1029},{"type":78,"tag":191,"props":1171,"children":1172},{"style":203},[1173],{"type":84,"value":1082},{"type":78,"tag":191,"props":1175,"children":1176},{"style":1085},[1177],{"type":84,"value":1088},{"type":78,"tag":191,"props":1179,"children":1180},{"style":289},[1181],{"type":84,"value":729},{"type":78,"tag":191,"props":1183,"children":1184},{"style":198},[1185],{"type":84,"value":1097},{"type":78,"tag":191,"props":1187,"children":1188},{"style":203},[1189],{"type":84,"value":1102},{"type":78,"tag":191,"props":1191,"children":1192},{"style":289},[1193],{"type":84,"value":1194},")\n",{"type":78,"tag":87,"props":1196,"children":1197},{},[1198],{"type":84,"value":1199},"Proceed only when missing key list is empty.",{"type":78,"tag":93,"props":1201,"children":1203},{"id":1202},"app-setup",[1204],{"type":84,"value":1205},"App Setup",{"type":78,"tag":87,"props":1207,"children":1208},{},[1209],{"type":84,"value":1210},"After linkage + env verification:",{"type":78,"tag":180,"props":1212,"children":1214},{"className":182,"code":1213,"language":184,"meta":185,"style":185},"npm run db:push\nnpm run db:seed\nnpm run dev\n",[1215],{"type":78,"tag":110,"props":1216,"children":1217},{"__ignoreMap":185},[1218,1236,1252],{"type":78,"tag":191,"props":1219,"children":1220},{"class":193,"line":194},[1221,1226,1231],{"type":78,"tag":191,"props":1222,"children":1223},{"style":198},[1224],{"type":84,"value":1225},"npm",{"type":78,"tag":191,"props":1227,"children":1228},{"style":203},[1229],{"type":84,"value":1230}," run",{"type":78,"tag":191,"props":1232,"children":1233},{"style":203},[1234],{"type":84,"value":1235}," db:push\n",{"type":78,"tag":191,"props":1237,"children":1238},{"class":193,"line":209},[1239,1243,1247],{"type":78,"tag":191,"props":1240,"children":1241},{"style":198},[1242],{"type":84,"value":1225},{"type":78,"tag":191,"props":1244,"children":1245},{"style":203},[1246],{"type":84,"value":1230},{"type":78,"tag":191,"props":1248,"children":1249},{"style":203},[1250],{"type":84,"value":1251}," db:seed\n",{"type":78,"tag":191,"props":1253,"children":1254},{"class":193,"line":311},[1255,1259,1263],{"type":78,"tag":191,"props":1256,"children":1257},{"style":198},[1258],{"type":84,"value":1225},{"type":78,"tag":191,"props":1260,"children":1261},{"style":203},[1262],{"type":84,"value":1230},{"type":78,"tag":191,"props":1264,"children":1265},{"style":203},[1266],{"type":84,"value":1267}," dev\n",{"type":78,"tag":87,"props":1269,"children":1270},{},[1271,1273,1278,1279,1285,1286,1292,1293,1299,1301,1306],{"type":84,"value":1272},"Use the repository package manager (",{"type":78,"tag":110,"props":1274,"children":1276},{"className":1275},[],[1277],{"type":84,"value":1225},{"type":84,"value":117},{"type":78,"tag":110,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":84,"value":1284},"pnpm",{"type":84,"value":117},{"type":78,"tag":110,"props":1287,"children":1289},{"className":1288},[],[1290],{"type":84,"value":1291},"bun",{"type":84,"value":132},{"type":78,"tag":110,"props":1294,"children":1296},{"className":1295},[],[1297],{"type":84,"value":1298},"yarn",{"type":84,"value":1300},") and run only scripts that exist in ",{"type":78,"tag":110,"props":1302,"children":1304},{"className":1303},[],[1305],{"type":84,"value":53},{"type":84,"value":235},{"type":78,"tag":93,"props":1308,"children":1310},{"id":1309},"ui-baseline-for-nextjs-shadcn-projects",[1311],{"type":84,"value":1312},"UI Baseline for Next.js + shadcn Projects",{"type":78,"tag":87,"props":1314,"children":1315},{},[1316],{"type":84,"value":1317},"After linkage and env verification, establish the UI foundation before feature work:",{"type":78,"tag":171,"props":1319,"children":1320},{},[1321,1332,1352,1364],{"type":78,"tag":104,"props":1322,"children":1323},{},[1324,1326],{"type":84,"value":1325},"Add a baseline primitive set: ",{"type":78,"tag":110,"props":1327,"children":1329},{"className":1328},[],[1330],{"type":84,"value":1331},"npx shadcn@latest add button card input label textarea select switch tabs dialog alert-dialog sheet dropdown-menu badge separator skeleton table",{"type":78,"tag":104,"props":1333,"children":1334},{},[1335,1337,1343,1345,1351],{"type":84,"value":1336},"Apply the Geist font fix in ",{"type":78,"tag":110,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":84,"value":1342},"layout.tsx",{"type":84,"value":1344}," and ",{"type":78,"tag":110,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":84,"value":1350},"globals.css",{"type":84,"value":235},{"type":78,"tag":104,"props":1353,"children":1354},{},[1355,1357,1363],{"type":84,"value":1356},"Confirm the app shell uses ",{"type":78,"tag":110,"props":1358,"children":1360},{"className":1359},[],[1361],{"type":84,"value":1362},"bg-background text-foreground",{"type":84,"value":235},{"type":78,"tag":104,"props":1365,"children":1366},{},[1367],{"type":84,"value":1368},"Default to dark mode for product, admin, and AI apps unless the repo is clearly marketing-first.",{"type":78,"tag":93,"props":1370,"children":1372},{"id":1371},"bootstrap-verification",[1373],{"type":84,"value":1374},"Bootstrap Verification",{"type":78,"tag":87,"props":1376,"children":1377},{},[1378],{"type":84,"value":1379},"Confirm each checkpoint:",{"type":78,"tag":100,"props":1381,"children":1382},{},[1383,1394,1404,1409,1418,1423,1454],{"type":78,"tag":104,"props":1384,"children":1385},{},[1386,1392],{"type":78,"tag":110,"props":1387,"children":1389},{"className":1388},[],[1390],{"type":84,"value":1391},"vercel whoami",{"type":84,"value":1393}," succeeds.",{"type":78,"tag":104,"props":1395,"children":1396},{},[1397,1402],{"type":78,"tag":110,"props":1398,"children":1400},{"className":1399},[],[1401],{"type":84,"value":233},{"type":84,"value":1403}," exists and matches chosen project.",{"type":78,"tag":104,"props":1405,"children":1406},{},[1407],{"type":84,"value":1408},"Postgres integration path completed (Vercel integration, dashboard, or provider CLI fallback).",{"type":78,"tag":104,"props":1410,"children":1411},{},[1412,1417],{"type":78,"tag":110,"props":1413,"children":1415},{"className":1414},[],[1416],{"type":84,"value":615},{"type":84,"value":1393},{"type":78,"tag":104,"props":1419,"children":1420},{},[1421],{"type":84,"value":1422},"Required env key diff is empty.",{"type":78,"tag":104,"props":1424,"children":1425},{},[1426,1428,1433,1434,1439,1440,1445,1446,1452],{"type":84,"value":1427},"Database command status is recorded (",{"type":78,"tag":110,"props":1429,"children":1431},{"className":1430},[],[1432],{"type":84,"value":115},{"type":84,"value":117},{"type":78,"tag":110,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":84,"value":130},{"type":84,"value":117},{"type":78,"tag":110,"props":1441,"children":1443},{"className":1442},[],[1444],{"type":84,"value":123},{"type":84,"value":117},{"type":78,"tag":110,"props":1447,"children":1449},{"className":1448},[],[1450],{"type":84,"value":1451},"db:generate",{"type":84,"value":1453}," as applicable).",{"type":78,"tag":104,"props":1455,"children":1456},{},[1457,1462],{"type":78,"tag":110,"props":1458,"children":1460},{"className":1459},[],[1461],{"type":84,"value":138},{"type":84,"value":1463}," command starts without immediate config\u002Fauth\u002Fenv failure.",{"type":78,"tag":87,"props":1465,"children":1466},{},[1467],{"type":84,"value":1468},"If verification fails, stop and report exact failing step plus remediation.",{"type":78,"tag":93,"props":1470,"children":1472},{"id":1471},"summary-format",[1473],{"type":84,"value":1474},"Summary Format",{"type":78,"tag":87,"props":1476,"children":1477},{},[1478],{"type":84,"value":1479},"Return a final bootstrap summary in this format:",{"type":78,"tag":180,"props":1481,"children":1485},{"className":1482,"code":1483,"language":1484,"meta":185,"style":185},"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",[1486],{"type":78,"tag":110,"props":1487,"children":1488},{"__ignoreMap":185},[1489,1502,1532,1557,1582,1607,1632],{"type":78,"tag":191,"props":1490,"children":1491},{"class":193,"line":194},[1492,1497],{"type":78,"tag":191,"props":1493,"children":1494},{"style":289},[1495],{"type":84,"value":1496},"## ",{"type":78,"tag":191,"props":1498,"children":1499},{"style":198},[1500],{"type":84,"value":1501},"Bootstrap Result\n",{"type":78,"tag":191,"props":1503,"children":1504},{"class":193,"line":209},[1505,1510,1516,1522,1527],{"type":78,"tag":191,"props":1506,"children":1507},{"style":289},[1508],{"type":84,"value":1509},"-",{"type":78,"tag":191,"props":1511,"children":1513},{"style":1512},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[1514],{"type":84,"value":1515}," **",{"type":78,"tag":191,"props":1517,"children":1519},{"style":1518},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[1520],{"type":84,"value":1521},"Linked Project",{"type":78,"tag":191,"props":1523,"children":1524},{"style":1512},[1525],{"type":84,"value":1526},"**",{"type":78,"tag":191,"props":1528,"children":1529},{"style":300},[1530],{"type":84,"value":1531},": \u003Cteam>\u002F\u003Cproject>\n",{"type":78,"tag":191,"props":1533,"children":1534},{"class":193,"line":311},[1535,1539,1543,1548,1552],{"type":78,"tag":191,"props":1536,"children":1537},{"style":289},[1538],{"type":84,"value":1509},{"type":78,"tag":191,"props":1540,"children":1541},{"style":1512},[1542],{"type":84,"value":1515},{"type":78,"tag":191,"props":1544,"children":1545},{"style":1518},[1546],{"type":84,"value":1547},"Resource Path",{"type":78,"tag":191,"props":1549,"children":1550},{"style":1512},[1551],{"type":84,"value":1526},{"type":78,"tag":191,"props":1553,"children":1554},{"style":300},[1555],{"type":84,"value":1556},": vercel-integration-neon | dashboard-neon | neon-cli\n",{"type":78,"tag":191,"props":1558,"children":1559},{"class":193,"line":373},[1560,1564,1568,1573,1577],{"type":78,"tag":191,"props":1561,"children":1562},{"style":289},[1563],{"type":84,"value":1509},{"type":78,"tag":191,"props":1565,"children":1566},{"style":1512},[1567],{"type":84,"value":1515},{"type":78,"tag":191,"props":1569,"children":1570},{"style":1518},[1571],{"type":84,"value":1572},"Env Keys",{"type":78,"tag":191,"props":1574,"children":1575},{"style":1512},[1576],{"type":84,"value":1526},{"type":78,"tag":191,"props":1578,"children":1579},{"style":300},[1580],{"type":84,"value":1581},": \u003Ccount> required, \u003Ccount> present, \u003Ccount> missing\n",{"type":78,"tag":191,"props":1583,"children":1584},{"class":193,"line":953},[1585,1589,1593,1598,1602],{"type":78,"tag":191,"props":1586,"children":1587},{"style":289},[1588],{"type":84,"value":1509},{"type":78,"tag":191,"props":1590,"children":1591},{"style":1512},[1592],{"type":84,"value":1515},{"type":78,"tag":191,"props":1594,"children":1595},{"style":1518},[1596],{"type":84,"value":1597},"Secrets",{"type":78,"tag":191,"props":1599,"children":1600},{"style":1512},[1601],{"type":84,"value":1526},{"type":78,"tag":191,"props":1603,"children":1604},{"style":300},[1605],{"type":84,"value":1606},": AUTH_SECRET set in Vercel (value never shown)\n",{"type":78,"tag":191,"props":1608,"children":1609},{"class":193,"line":962},[1610,1614,1618,1623,1627],{"type":78,"tag":191,"props":1611,"children":1612},{"style":289},[1613],{"type":84,"value":1509},{"type":78,"tag":191,"props":1615,"children":1616},{"style":1512},[1617],{"type":84,"value":1515},{"type":78,"tag":191,"props":1619,"children":1620},{"style":1518},[1621],{"type":84,"value":1622},"Migration Status",{"type":78,"tag":191,"props":1624,"children":1625},{"style":1512},[1626],{"type":84,"value":1526},{"type":78,"tag":191,"props":1628,"children":1629},{"style":300},[1630],{"type":84,"value":1631},": not-run | success | failed (\u003Cstep>)\n",{"type":78,"tag":191,"props":1633,"children":1634},{"class":193,"line":971},[1635,1639,1643,1648,1652],{"type":78,"tag":191,"props":1636,"children":1637},{"style":289},[1638],{"type":84,"value":1509},{"type":78,"tag":191,"props":1640,"children":1641},{"style":1512},[1642],{"type":84,"value":1515},{"type":78,"tag":191,"props":1644,"children":1645},{"style":1518},[1646],{"type":84,"value":1647},"Dev Result",{"type":78,"tag":191,"props":1649,"children":1650},{"style":1512},[1651],{"type":84,"value":1526},{"type":78,"tag":191,"props":1653,"children":1654},{"style":300},[1655],{"type":84,"value":1656},": not-run | started | failed\n",{"type":78,"tag":93,"props":1658,"children":1660},{"id":1659},"bootstrap-next-steps",[1661],{"type":84,"value":1662},"Bootstrap Next Steps",{"type":78,"tag":100,"props":1664,"children":1665},{},[1666,1677,1682],{"type":78,"tag":104,"props":1667,"children":1668},{},[1669,1671,1676],{"type":84,"value":1670},"If env keys are still missing, add the missing keys in Vercel and re-run ",{"type":78,"tag":110,"props":1672,"children":1674},{"className":1673},[],[1675],{"type":84,"value":615},{"type":84,"value":235},{"type":78,"tag":104,"props":1678,"children":1679},{},[1680],{"type":84,"value":1681},"If DB commands fail, fix connectivity\u002Fschema issues and re-run only the failed db step.",{"type":78,"tag":104,"props":1683,"children":1684},{},[1685,1687,1692,1694,1700],{"type":84,"value":1686},"If ",{"type":78,"tag":110,"props":1688,"children":1690},{"className":1689},[],[1691],{"type":84,"value":138},{"type":84,"value":1693}," fails, resolve runtime errors, then restart with your package manager's ",{"type":78,"tag":110,"props":1695,"children":1697},{"className":1696},[],[1698],{"type":84,"value":1699},"run dev",{"type":84,"value":235},{"type":78,"tag":93,"props":1702,"children":1704},{"id":1703},"next-forge-projects",[1705],{"type":84,"value":1706},"next-forge Projects",{"type":78,"tag":87,"props":1708,"children":1709},{},[1710,1712,1718,1720,1726,1728,1734,1735,1741,1742,1748],{"type":84,"value":1711},"If the project was scaffolded with ",{"type":78,"tag":110,"props":1713,"children":1715},{"className":1714},[],[1716],{"type":84,"value":1717},"npx next-forge init",{"type":84,"value":1719}," (detected by ",{"type":78,"tag":110,"props":1721,"children":1723},{"className":1722},[],[1724],{"type":84,"value":1725},"pnpm-workspace.yaml",{"type":84,"value":1727}," + ",{"type":78,"tag":110,"props":1729,"children":1731},{"className":1730},[],[1732],{"type":84,"value":1733},"packages\u002Fauth",{"type":84,"value":1727},{"type":78,"tag":110,"props":1736,"children":1738},{"className":1737},[],[1739],{"type":84,"value":1740},"packages\u002Fdatabase",{"type":84,"value":1727},{"type":78,"tag":110,"props":1743,"children":1745},{"className":1744},[],[1746],{"type":84,"value":1747},"@repo\u002F*",{"type":84,"value":1749}," imports):",{"type":78,"tag":171,"props":1751,"children":1752},{},[1753,1787,1828,1875,1895],{"type":78,"tag":104,"props":1754,"children":1755},{},[1756,1758,1764,1765,1771,1772,1778,1780,1786],{"type":84,"value":1757},"Env files are per-app (",{"type":78,"tag":110,"props":1759,"children":1761},{"className":1760},[],[1762],{"type":84,"value":1763},"apps\u002Fapp\u002F.env.local",{"type":84,"value":117},{"type":78,"tag":110,"props":1766,"children":1768},{"className":1767},[],[1769],{"type":84,"value":1770},"apps\u002Fweb\u002F.env.local",{"type":84,"value":117},{"type":78,"tag":110,"props":1773,"children":1775},{"className":1774},[],[1776],{"type":84,"value":1777},"apps\u002Fapi\u002F.env.local",{"type":84,"value":1779},") plus ",{"type":78,"tag":110,"props":1781,"children":1783},{"className":1782},[],[1784],{"type":84,"value":1785},"packages\u002Fdatabase\u002F.env",{"type":84,"value":235},{"type":78,"tag":104,"props":1788,"children":1789},{},[1790,1792,1798,1800,1805,1807,1813,1814,1820,1821,1827],{"type":84,"value":1791},"Run ",{"type":78,"tag":110,"props":1793,"children":1795},{"className":1794},[],[1796],{"type":84,"value":1797},"pnpm migrate",{"type":84,"value":1799}," (not ",{"type":78,"tag":110,"props":1801,"children":1803},{"className":1802},[],[1804],{"type":84,"value":115},{"type":84,"value":1806},") — it runs ",{"type":78,"tag":110,"props":1808,"children":1810},{"className":1809},[],[1811],{"type":84,"value":1812},"prisma format",{"type":84,"value":1727},{"type":78,"tag":110,"props":1815,"children":1817},{"className":1816},[],[1818],{"type":84,"value":1819},"prisma generate",{"type":84,"value":1727},{"type":78,"tag":110,"props":1822,"children":1824},{"className":1823},[],[1825],{"type":84,"value":1826},"prisma db push",{"type":84,"value":235},{"type":78,"tag":104,"props":1829,"children":1830},{},[1831,1833,1839,1840,1846,1847,1853,1854,1860,1861,1867,1868,1874],{"type":84,"value":1832},"Minimum env vars: ",{"type":78,"tag":110,"props":1834,"children":1836},{"className":1835},[],[1837],{"type":84,"value":1838},"DATABASE_URL",{"type":84,"value":117},{"type":78,"tag":110,"props":1841,"children":1843},{"className":1842},[],[1844],{"type":84,"value":1845},"CLERK_SECRET_KEY",{"type":84,"value":117},{"type":78,"tag":110,"props":1848,"children":1850},{"className":1849},[],[1851],{"type":84,"value":1852},"NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY",{"type":84,"value":117},{"type":78,"tag":110,"props":1855,"children":1857},{"className":1856},[],[1858],{"type":84,"value":1859},"NEXT_PUBLIC_APP_URL",{"type":84,"value":117},{"type":78,"tag":110,"props":1862,"children":1864},{"className":1863},[],[1865],{"type":84,"value":1866},"NEXT_PUBLIC_WEB_URL",{"type":84,"value":117},{"type":78,"tag":110,"props":1869,"children":1871},{"className":1870},[],[1872],{"type":84,"value":1873},"NEXT_PUBLIC_API_URL",{"type":84,"value":235},{"type":78,"tag":104,"props":1876,"children":1877},{},[1878,1880,1885,1887,1893],{"type":84,"value":1879},"Optional services (Stripe, Resend, PostHog, etc.) can be skipped initially — but remove their ",{"type":78,"tag":110,"props":1881,"children":1883},{"className":1882},[],[1884],{"type":84,"value":1747},{"type":84,"value":1886}," imports from app ",{"type":78,"tag":110,"props":1888,"children":1890},{"className":1889},[],[1891],{"type":84,"value":1892},"env.ts",{"type":84,"value":1894}," files to avoid validation errors.",{"type":78,"tag":104,"props":1896,"children":1897},{},[1898,1900,1906,1907,1913,1914,1920],{"type":84,"value":1899},"Deploy as 3 separate Vercel projects with root directories ",{"type":78,"tag":110,"props":1901,"children":1903},{"className":1902},[],[1904],{"type":84,"value":1905},"apps\u002Fapp",{"type":84,"value":117},{"type":78,"tag":110,"props":1908,"children":1910},{"className":1909},[],[1911],{"type":84,"value":1912},"apps\u002Fapi",{"type":84,"value":117},{"type":78,"tag":110,"props":1915,"children":1917},{"className":1916},[],[1918],{"type":84,"value":1919},"apps\u002Fweb",{"type":84,"value":235},{"type":78,"tag":87,"props":1922,"children":1923},{},[1924],{"type":84,"value":1925},"=> skill: next-forge — Full next-forge monorepo guide",{"type":78,"tag":1927,"props":1928,"children":1929},"style",{},[1930],{"type":84,"value":1931},"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":1933,"total":2136},[1934,1955,1978,1995,2011,2028,2047,2063,2079,2093,2105,2120],{"slug":1935,"name":1935,"fn":1936,"description":1937,"org":1938,"tags":1939,"stars":1952,"repoUrl":1953,"updatedAt":1954},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1940,1943,1946,1949],{"name":1941,"slug":1942,"type":15},"Documents","documents",{"name":1944,"slug":1945,"type":15},"Healthcare","healthcare",{"name":1947,"slug":1948,"type":15},"Insurance","insurance",{"name":1950,"slug":1951,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1956,"name":1956,"fn":1957,"description":1958,"org":1959,"tags":1960,"stars":1975,"repoUrl":1976,"updatedAt":1977},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1961,1964,1966,1969,1972],{"name":1962,"slug":1963,"type":15},".NET","dotnet",{"name":1965,"slug":1956,"type":15},"ASP.NET Core",{"name":1967,"slug":1968,"type":15},"Blazor","blazor",{"name":1970,"slug":1971,"type":15},"C#","csharp",{"name":1973,"slug":1974,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1979,"name":1979,"fn":1980,"description":1981,"org":1982,"tags":1983,"stars":1975,"repoUrl":1976,"updatedAt":1994},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1984,1987,1990,1993],{"name":1985,"slug":1986,"type":15},"Apps SDK","apps-sdk",{"name":1988,"slug":1989,"type":15},"ChatGPT","chatgpt",{"name":1991,"slug":1992,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1996,"name":1996,"fn":1997,"description":1998,"org":1999,"tags":2000,"stars":1975,"repoUrl":1976,"updatedAt":2010},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2001,2004,2007],{"name":2002,"slug":2003,"type":15},"API Development","api-development",{"name":2005,"slug":2006,"type":15},"CLI","cli",{"name":2008,"slug":2009,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2012,"name":2012,"fn":2013,"description":2014,"org":2015,"tags":2016,"stars":1975,"repoUrl":1976,"updatedAt":2027},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2017,2020,2023,2026],{"name":2018,"slug":2019,"type":15},"Cloudflare","cloudflare",{"name":2021,"slug":2022,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2024,"slug":2025,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":23,"slug":24,"type":15},"2026-04-12T05:07:14.275118",{"slug":2029,"name":2029,"fn":2030,"description":2031,"org":2032,"tags":2033,"stars":1975,"repoUrl":1976,"updatedAt":2046},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2034,2037,2040,2043],{"name":2035,"slug":2036,"type":15},"Productivity","productivity",{"name":2038,"slug":2039,"type":15},"Project Management","project-management",{"name":2041,"slug":2042,"type":15},"Strategy","strategy",{"name":2044,"slug":2045,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2048,"name":2048,"fn":2049,"description":2050,"org":2051,"tags":2052,"stars":1975,"repoUrl":1976,"updatedAt":2062},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2053,2056,2058,2061],{"name":2054,"slug":2055,"type":15},"Design","design",{"name":2057,"slug":2048,"type":15},"Figma",{"name":2059,"slug":2060,"type":15},"Frontend","frontend",{"name":1991,"slug":1992,"type":15},"2026-04-12T05:06:47.939943",{"slug":2064,"name":2064,"fn":2065,"description":2066,"org":2067,"tags":2068,"stars":1975,"repoUrl":1976,"updatedAt":2078},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2069,2070,2073,2074,2075],{"name":2054,"slug":2055,"type":15},{"name":2071,"slug":2072,"type":15},"Design System","design-system",{"name":2057,"slug":2048,"type":15},{"name":2059,"slug":2060,"type":15},{"name":2076,"slug":2077,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":2080,"name":2080,"fn":2081,"description":2082,"org":2083,"tags":2084,"stars":1975,"repoUrl":1976,"updatedAt":2092},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2085,2086,2087,2090,2091],{"name":2054,"slug":2055,"type":15},{"name":2071,"slug":2072,"type":15},{"name":2088,"slug":2089,"type":15},"Documentation","documentation",{"name":2057,"slug":2048,"type":15},{"name":2059,"slug":2060,"type":15},"2026-05-16T06:07:47.821474",{"slug":2094,"name":2094,"fn":2095,"description":2096,"org":2097,"tags":2098,"stars":1975,"repoUrl":1976,"updatedAt":2104},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2099,2100,2101,2102,2103],{"name":2054,"slug":2055,"type":15},{"name":2057,"slug":2048,"type":15},{"name":2059,"slug":2060,"type":15},{"name":2076,"slug":2077,"type":15},{"name":1973,"slug":1974,"type":15},"2026-05-16T06:07:40.583615",{"slug":2106,"name":2106,"fn":2107,"description":2108,"org":2109,"tags":2110,"stars":1975,"repoUrl":1976,"updatedAt":2119},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2111,2114,2115,2118],{"name":2112,"slug":2113,"type":15},"Animation","animation",{"name":2008,"slug":2009,"type":15},{"name":2116,"slug":2117,"type":15},"Creative","creative",{"name":2054,"slug":2055,"type":15},"2026-05-02T05:31:48.48485",{"slug":2121,"name":2121,"fn":2122,"description":2123,"org":2124,"tags":2125,"stars":1975,"repoUrl":1976,"updatedAt":2135},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2126,2127,2128,2131,2134],{"name":2116,"slug":2117,"type":15},{"name":2054,"slug":2055,"type":15},{"name":2129,"slug":2130,"type":15},"Image Generation","image-generation",{"name":2132,"slug":2133,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":2138,"total":2248},[2139,2156,2172,2184,2202,2218,2238],{"slug":2140,"name":2140,"fn":2141,"description":2142,"org":2143,"tags":2144,"stars":28,"repoUrl":29,"updatedAt":2155},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2145,2148,2151,2154],{"name":2146,"slug":2147,"type":15},"Accessibility","accessibility",{"name":2149,"slug":2150,"type":15},"Charts","charts",{"name":2152,"slug":2153,"type":15},"Data Visualization","data-visualization",{"name":2054,"slug":2055,"type":15},"2026-06-30T19:00:57.102",{"slug":2157,"name":2157,"fn":2158,"description":2159,"org":2160,"tags":2161,"stars":28,"repoUrl":29,"updatedAt":2171},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2162,2165,2168],{"name":2163,"slug":2164,"type":15},"Agents","agents",{"name":2166,"slug":2167,"type":15},"Browser Automation","browser-automation",{"name":2169,"slug":2170,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2173,"name":2173,"fn":2174,"description":2175,"org":2176,"tags":2177,"stars":28,"repoUrl":29,"updatedAt":2183},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2178,2179,2182],{"name":2166,"slug":2167,"type":15},{"name":2180,"slug":2181,"type":15},"Local Development","local-development",{"name":2169,"slug":2170,"type":15},"2026-04-06T18:41:17.526867",{"slug":2185,"name":2185,"fn":2186,"description":2187,"org":2188,"tags":2189,"stars":28,"repoUrl":29,"updatedAt":2201},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2190,2191,2192,2195,2198],{"name":2163,"slug":2164,"type":15},{"name":2024,"slug":2025,"type":15},{"name":2193,"slug":2194,"type":15},"SDK","sdk",{"name":2196,"slug":2197,"type":15},"Serverless","serverless",{"name":2199,"slug":2200,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2203,"name":2203,"fn":2204,"description":2205,"org":2206,"tags":2207,"stars":28,"repoUrl":29,"updatedAt":2217},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2208,2209,2212,2215,2216],{"name":2059,"slug":2060,"type":15},{"name":2210,"slug":2211,"type":15},"React","react",{"name":2213,"slug":2214,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2076,"slug":2077,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:40:59.619419",{"slug":2219,"name":2219,"fn":2220,"description":2221,"org":2222,"tags":2223,"stars":28,"repoUrl":29,"updatedAt":2237},"ai-gateway","configure 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},[2224,2227,2230,2233,2236],{"name":2225,"slug":2226,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2228,"slug":2229,"type":15},"Cost Optimization","cost-optimization",{"name":2231,"slug":2232,"type":15},"LLM","llm",{"name":2234,"slug":2235,"type":15},"Performance","performance",{"name":17,"slug":18,"type":15},"2026-04-06T18:40:44.377464",{"slug":2239,"name":2239,"fn":2240,"description":2241,"org":2242,"tags":2243,"stars":28,"repoUrl":29,"updatedAt":2247},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2244,2245,2246],{"name":2228,"slug":2229,"type":15},{"name":20,"slug":21,"type":15},{"name":2231,"slug":2232,"type":15},"2026-04-06T18:41:08.513425",600]