[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-neon-neon-toolkit":3,"mdc-nvbb3m-key":34,"related-repo-neon-neon-toolkit":865,"related-org-neon-neon-toolkit":942},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":32,"mdContent":33},"neon-toolkit","create ephemeral Neon databases for testing","Creates and manages ephemeral Neon databases for testing, CI\u002FCD pipelines, and isolated development environments. Use when building temporary databases for automated tests or rapid prototyping.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"neon","Neon","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fneon.png","neondatabase",[13,15,18,21],{"name":9,"slug":8,"type":14},"tag",{"name":16,"slug":17,"type":14},"CI\u002FCD","cicd",{"name":19,"slug":20,"type":14},"Database","database",{"name":22,"slug":23,"type":14},"Testing","testing",86,"https:\u002F\u002Fgithub.com\u002Fneondatabase\u002Fai-rules","2026-04-06T18:38:57.490782",null,12,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":27},[],"https:\u002F\u002Fgithub.com\u002Fneondatabase\u002Fai-rules\u002Ftree\u002FHEAD\u002Fneon-plugin\u002Fskills\u002Fneon-toolkit","---\nname: neon-toolkit\ndescription: Creates and manages ephemeral Neon databases for testing, CI\u002FCD pipelines, and isolated development environments. Use when building temporary databases for automated tests or rapid prototyping.\nallowed-tools: [\"bash\"]\n---\n\n# Neon Toolkit Skill\n\nAutomates creation, management, and cleanup of temporary Neon databases using the Neon Toolkit.\n\n## When to Use\n\n- Creating fresh databases for each test run\n- Spinning up databases in CI\u002FCD pipelines\n- Building isolated development environments\n- Rapid prototyping without manual setup\n\n**Not recommended for:** Production databases, shared team environments, local-only development (use Docker), or free tier accounts (requires paid projects).\n\n## Code Generation Rules\n\nWhen generating TypeScript\u002FJavaScript code:\n- BEFORE generating import statements, check tsconfig.json for path aliases (compilerOptions.paths)\n- If path aliases exist (e.g., \"@\u002F*\": [\".\u002Fsrc\u002F*\"]), use them (e.g., import { x } from '@\u002Flib\u002Futils')\n- If NO path aliases exist or unsure, ALWAYS use relative imports (e.g., import { x } from '..\u002F..\u002F..\u002Flib\u002Futils')\n- Verify imports match the project's configuration\n- Default to relative imports - they always work regardless of configuration\n\n## Reference Documentation\n\n**Primary Resource:** See `[neon-toolkit.mdc](https:\u002F\u002Fraw.githubusercontent.com\u002Fneondatabase-labs\u002Fai-rules\u002Fmain\u002Fneon-toolkit.mdc)` in project root for comprehensive guidelines including:\n- Core concepts (Organization, Project, Branch, Endpoint)\n- Installation and authentication setup\n- Database lifecycle management patterns\n- API client usage examples\n- Error handling strategies\n\n## Quick Setup\n\n### Installation\n```bash\nnpm install @neondatabase\u002Ftoolkit\n```\n\n### Basic Usage\n```typescript\nimport { NeonToolkit } from '@neondatabase\u002Ftoolkit';\n\nconst neon = new NeonToolkit({ apiKey: process.env.NEON_API_KEY! });\n\n\u002F\u002F Create ephemeral database\nconst db = await neon.createEphemeralDatabase();\nconsole.log(`Database URL: ${db.url}`);\n\n\u002F\u002F Use the database...\n\n\u002F\u002F Cleanup\nawait db.delete();\n```\n\n## Templates & Scripts\n\n- `templates\u002Ftoolkit-workflow.ts` - Complete ephemeral database workflow\n- `scripts\u002Fcreate-ephemeral-db.ts` - Create a temporary database\n- `scripts\u002Fdestroy-ephemeral-db.ts` - Clean up ephemeral database\n\n## Common Use Cases\n\n### Testing\n```typescript\nconst db = await neon.createEphemeralDatabase();\n\u002F\u002F Run tests with fresh database\nawait db.delete();\n```\n\n### CI\u002FCD Integration\n```bash\nexport NEON_API_KEY=${{ secrets.NEON_API_KEY }}\nnpm test  # Uses ephemeral database\n```\n\n## Related Skills\n\n- **neon-serverless** - For connecting to databases\n- **neon-drizzle** - For schema and migrations\n\n---\n\n**Want best practices in your project?** Run `neon-plugin:add-neon-docs` with parameter `SKILL_NAME=\"neon-toolkit\"` to add reference links.\n",{"data":35,"body":38},{"name":4,"description":6,"allowed-tools":36},[37],"bash",{"type":39,"children":40},"root",[41,50,56,63,88,99,105,110,146,152,171,199,205,212,244,250,604,610,646,652,656,737,743,800,806,829,833,859],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"neon-toolkit-skill",[47],{"type":48,"value":49},"text","Neon Toolkit Skill",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Automates creation, management, and cleanup of temporary Neon databases using the Neon Toolkit.",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"when-to-use",[61],{"type":48,"value":62},"When to Use",{"type":42,"tag":64,"props":65,"children":66},"ul",{},[67,73,78,83],{"type":42,"tag":68,"props":69,"children":70},"li",{},[71],{"type":48,"value":72},"Creating fresh databases for each test run",{"type":42,"tag":68,"props":74,"children":75},{},[76],{"type":48,"value":77},"Spinning up databases in CI\u002FCD pipelines",{"type":42,"tag":68,"props":79,"children":80},{},[81],{"type":48,"value":82},"Building isolated development environments",{"type":42,"tag":68,"props":84,"children":85},{},[86],{"type":48,"value":87},"Rapid prototyping without manual setup",{"type":42,"tag":51,"props":89,"children":90},{},[91,97],{"type":42,"tag":92,"props":93,"children":94},"strong",{},[95],{"type":48,"value":96},"Not recommended for:",{"type":48,"value":98}," Production databases, shared team environments, local-only development (use Docker), or free tier accounts (requires paid projects).",{"type":42,"tag":57,"props":100,"children":102},{"id":101},"code-generation-rules",[103],{"type":48,"value":104},"Code Generation Rules",{"type":42,"tag":51,"props":106,"children":107},{},[108],{"type":48,"value":109},"When generating TypeScript\u002FJavaScript code:",{"type":42,"tag":64,"props":111,"children":112},{},[113,118,131,136,141],{"type":42,"tag":68,"props":114,"children":115},{},[116],{"type":48,"value":117},"BEFORE generating import statements, check tsconfig.json for path aliases (compilerOptions.paths)",{"type":42,"tag":68,"props":119,"children":120},{},[121,123,129],{"type":48,"value":122},"If path aliases exist (e.g., \"@\u002F*\": ",{"type":42,"tag":124,"props":125,"children":126},"span",{},[127],{"type":48,"value":128},"\".\u002Fsrc\u002F*\"",{"type":48,"value":130},"), use them (e.g., import { x } from '@\u002Flib\u002Futils')",{"type":42,"tag":68,"props":132,"children":133},{},[134],{"type":48,"value":135},"If NO path aliases exist or unsure, ALWAYS use relative imports (e.g., import { x } from '..\u002F..\u002F..\u002Flib\u002Futils')",{"type":42,"tag":68,"props":137,"children":138},{},[139],{"type":48,"value":140},"Verify imports match the project's configuration",{"type":42,"tag":68,"props":142,"children":143},{},[144],{"type":48,"value":145},"Default to relative imports - they always work regardless of configuration",{"type":42,"tag":57,"props":147,"children":149},{"id":148},"reference-documentation",[150],{"type":48,"value":151},"Reference Documentation",{"type":42,"tag":51,"props":153,"children":154},{},[155,160,162,169],{"type":42,"tag":92,"props":156,"children":157},{},[158],{"type":48,"value":159},"Primary Resource:",{"type":48,"value":161}," See ",{"type":42,"tag":163,"props":164,"children":166},"code",{"className":165},[],[167],{"type":48,"value":168},"[neon-toolkit.mdc](https:\u002F\u002Fraw.githubusercontent.com\u002Fneondatabase-labs\u002Fai-rules\u002Fmain\u002Fneon-toolkit.mdc)",{"type":48,"value":170}," in project root for comprehensive guidelines including:",{"type":42,"tag":64,"props":172,"children":173},{},[174,179,184,189,194],{"type":42,"tag":68,"props":175,"children":176},{},[177],{"type":48,"value":178},"Core concepts (Organization, Project, Branch, Endpoint)",{"type":42,"tag":68,"props":180,"children":181},{},[182],{"type":48,"value":183},"Installation and authentication setup",{"type":42,"tag":68,"props":185,"children":186},{},[187],{"type":48,"value":188},"Database lifecycle management patterns",{"type":42,"tag":68,"props":190,"children":191},{},[192],{"type":48,"value":193},"API client usage examples",{"type":42,"tag":68,"props":195,"children":196},{},[197],{"type":48,"value":198},"Error handling strategies",{"type":42,"tag":57,"props":200,"children":202},{"id":201},"quick-setup",[203],{"type":48,"value":204},"Quick Setup",{"type":42,"tag":206,"props":207,"children":209},"h3",{"id":208},"installation",[210],{"type":48,"value":211},"Installation",{"type":42,"tag":213,"props":214,"children":218},"pre",{"className":215,"code":216,"language":37,"meta":217,"style":217},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @neondatabase\u002Ftoolkit\n","",[219],{"type":42,"tag":163,"props":220,"children":221},{"__ignoreMap":217},[222],{"type":42,"tag":124,"props":223,"children":226},{"class":224,"line":225},"line",1,[227,233,239],{"type":42,"tag":124,"props":228,"children":230},{"style":229},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[231],{"type":48,"value":232},"npm",{"type":42,"tag":124,"props":234,"children":236},{"style":235},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[237],{"type":48,"value":238}," install",{"type":42,"tag":124,"props":240,"children":241},{"style":235},[242],{"type":48,"value":243}," @neondatabase\u002Ftoolkit\n",{"type":42,"tag":206,"props":245,"children":247},{"id":246},"basic-usage",[248],{"type":48,"value":249},"Basic Usage",{"type":42,"tag":213,"props":251,"children":255},{"className":252,"code":253,"language":254,"meta":217,"style":217},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { NeonToolkit } from '@neondatabase\u002Ftoolkit';\n\nconst neon = new NeonToolkit({ apiKey: process.env.NEON_API_KEY! });\n\n\u002F\u002F Create ephemeral database\nconst db = await neon.createEphemeralDatabase();\nconsole.log(`Database URL: ${db.url}`);\n\n\u002F\u002F Use the database...\n\n\u002F\u002F Cleanup\nawait db.delete();\n","typescript",[256],{"type":42,"tag":163,"props":257,"children":258},{"__ignoreMap":217},[259,310,320,413,421,431,476,540,548,557,565,574],{"type":42,"tag":124,"props":260,"children":261},{"class":224,"line":225},[262,268,274,280,285,290,295,300,305],{"type":42,"tag":124,"props":263,"children":265},{"style":264},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[266],{"type":48,"value":267},"import",{"type":42,"tag":124,"props":269,"children":271},{"style":270},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[272],{"type":48,"value":273}," {",{"type":42,"tag":124,"props":275,"children":277},{"style":276},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[278],{"type":48,"value":279}," NeonToolkit",{"type":42,"tag":124,"props":281,"children":282},{"style":270},[283],{"type":48,"value":284}," }",{"type":42,"tag":124,"props":286,"children":287},{"style":264},[288],{"type":48,"value":289}," from",{"type":42,"tag":124,"props":291,"children":292},{"style":270},[293],{"type":48,"value":294}," '",{"type":42,"tag":124,"props":296,"children":297},{"style":235},[298],{"type":48,"value":299},"@neondatabase\u002Ftoolkit",{"type":42,"tag":124,"props":301,"children":302},{"style":270},[303],{"type":48,"value":304},"'",{"type":42,"tag":124,"props":306,"children":307},{"style":270},[308],{"type":48,"value":309},";\n",{"type":42,"tag":124,"props":311,"children":313},{"class":224,"line":312},2,[314],{"type":42,"tag":124,"props":315,"children":317},{"emptyLinePlaceholder":316},true,[318],{"type":48,"value":319},"\n",{"type":42,"tag":124,"props":321,"children":323},{"class":224,"line":322},3,[324,330,335,340,345,350,355,360,366,371,376,381,386,390,395,400,404,409],{"type":42,"tag":124,"props":325,"children":327},{"style":326},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[328],{"type":48,"value":329},"const",{"type":42,"tag":124,"props":331,"children":332},{"style":276},[333],{"type":48,"value":334}," neon ",{"type":42,"tag":124,"props":336,"children":337},{"style":270},[338],{"type":48,"value":339},"=",{"type":42,"tag":124,"props":341,"children":342},{"style":270},[343],{"type":48,"value":344}," new",{"type":42,"tag":124,"props":346,"children":348},{"style":347},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[349],{"type":48,"value":279},{"type":42,"tag":124,"props":351,"children":352},{"style":276},[353],{"type":48,"value":354},"(",{"type":42,"tag":124,"props":356,"children":357},{"style":270},[358],{"type":48,"value":359},"{",{"type":42,"tag":124,"props":361,"children":363},{"style":362},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[364],{"type":48,"value":365}," apiKey",{"type":42,"tag":124,"props":367,"children":368},{"style":270},[369],{"type":48,"value":370},":",{"type":42,"tag":124,"props":372,"children":373},{"style":276},[374],{"type":48,"value":375}," process",{"type":42,"tag":124,"props":377,"children":378},{"style":270},[379],{"type":48,"value":380},".",{"type":42,"tag":124,"props":382,"children":383},{"style":276},[384],{"type":48,"value":385},"env",{"type":42,"tag":124,"props":387,"children":388},{"style":270},[389],{"type":48,"value":380},{"type":42,"tag":124,"props":391,"children":392},{"style":276},[393],{"type":48,"value":394},"NEON_API_KEY",{"type":42,"tag":124,"props":396,"children":397},{"style":270},[398],{"type":48,"value":399},"!",{"type":42,"tag":124,"props":401,"children":402},{"style":270},[403],{"type":48,"value":284},{"type":42,"tag":124,"props":405,"children":406},{"style":276},[407],{"type":48,"value":408},")",{"type":42,"tag":124,"props":410,"children":411},{"style":270},[412],{"type":48,"value":309},{"type":42,"tag":124,"props":414,"children":416},{"class":224,"line":415},4,[417],{"type":42,"tag":124,"props":418,"children":419},{"emptyLinePlaceholder":316},[420],{"type":48,"value":319},{"type":42,"tag":124,"props":422,"children":424},{"class":224,"line":423},5,[425],{"type":42,"tag":124,"props":426,"children":428},{"style":427},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[429],{"type":48,"value":430},"\u002F\u002F Create ephemeral database\n",{"type":42,"tag":124,"props":432,"children":434},{"class":224,"line":433},6,[435,439,444,448,453,458,462,467,472],{"type":42,"tag":124,"props":436,"children":437},{"style":326},[438],{"type":48,"value":329},{"type":42,"tag":124,"props":440,"children":441},{"style":276},[442],{"type":48,"value":443}," db ",{"type":42,"tag":124,"props":445,"children":446},{"style":270},[447],{"type":48,"value":339},{"type":42,"tag":124,"props":449,"children":450},{"style":264},[451],{"type":48,"value":452}," await",{"type":42,"tag":124,"props":454,"children":455},{"style":276},[456],{"type":48,"value":457}," neon",{"type":42,"tag":124,"props":459,"children":460},{"style":270},[461],{"type":48,"value":380},{"type":42,"tag":124,"props":463,"children":464},{"style":347},[465],{"type":48,"value":466},"createEphemeralDatabase",{"type":42,"tag":124,"props":468,"children":469},{"style":276},[470],{"type":48,"value":471},"()",{"type":42,"tag":124,"props":473,"children":474},{"style":270},[475],{"type":48,"value":309},{"type":42,"tag":124,"props":477,"children":479},{"class":224,"line":478},7,[480,485,489,494,498,503,508,513,518,522,527,532,536],{"type":42,"tag":124,"props":481,"children":482},{"style":276},[483],{"type":48,"value":484},"console",{"type":42,"tag":124,"props":486,"children":487},{"style":270},[488],{"type":48,"value":380},{"type":42,"tag":124,"props":490,"children":491},{"style":347},[492],{"type":48,"value":493},"log",{"type":42,"tag":124,"props":495,"children":496},{"style":276},[497],{"type":48,"value":354},{"type":42,"tag":124,"props":499,"children":500},{"style":270},[501],{"type":48,"value":502},"`",{"type":42,"tag":124,"props":504,"children":505},{"style":235},[506],{"type":48,"value":507},"Database URL: ",{"type":42,"tag":124,"props":509,"children":510},{"style":270},[511],{"type":48,"value":512},"${",{"type":42,"tag":124,"props":514,"children":515},{"style":276},[516],{"type":48,"value":517},"db",{"type":42,"tag":124,"props":519,"children":520},{"style":270},[521],{"type":48,"value":380},{"type":42,"tag":124,"props":523,"children":524},{"style":276},[525],{"type":48,"value":526},"url",{"type":42,"tag":124,"props":528,"children":529},{"style":270},[530],{"type":48,"value":531},"}`",{"type":42,"tag":124,"props":533,"children":534},{"style":276},[535],{"type":48,"value":408},{"type":42,"tag":124,"props":537,"children":538},{"style":270},[539],{"type":48,"value":309},{"type":42,"tag":124,"props":541,"children":543},{"class":224,"line":542},8,[544],{"type":42,"tag":124,"props":545,"children":546},{"emptyLinePlaceholder":316},[547],{"type":48,"value":319},{"type":42,"tag":124,"props":549,"children":551},{"class":224,"line":550},9,[552],{"type":42,"tag":124,"props":553,"children":554},{"style":427},[555],{"type":48,"value":556},"\u002F\u002F Use the database...\n",{"type":42,"tag":124,"props":558,"children":560},{"class":224,"line":559},10,[561],{"type":42,"tag":124,"props":562,"children":563},{"emptyLinePlaceholder":316},[564],{"type":48,"value":319},{"type":42,"tag":124,"props":566,"children":568},{"class":224,"line":567},11,[569],{"type":42,"tag":124,"props":570,"children":571},{"style":427},[572],{"type":48,"value":573},"\u002F\u002F Cleanup\n",{"type":42,"tag":124,"props":575,"children":576},{"class":224,"line":28},[577,582,587,591,596,600],{"type":42,"tag":124,"props":578,"children":579},{"style":264},[580],{"type":48,"value":581},"await",{"type":42,"tag":124,"props":583,"children":584},{"style":276},[585],{"type":48,"value":586}," db",{"type":42,"tag":124,"props":588,"children":589},{"style":270},[590],{"type":48,"value":380},{"type":42,"tag":124,"props":592,"children":593},{"style":347},[594],{"type":48,"value":595},"delete",{"type":42,"tag":124,"props":597,"children":598},{"style":276},[599],{"type":48,"value":471},{"type":42,"tag":124,"props":601,"children":602},{"style":270},[603],{"type":48,"value":309},{"type":42,"tag":57,"props":605,"children":607},{"id":606},"templates-scripts",[608],{"type":48,"value":609},"Templates & Scripts",{"type":42,"tag":64,"props":611,"children":612},{},[613,624,635],{"type":42,"tag":68,"props":614,"children":615},{},[616,622],{"type":42,"tag":163,"props":617,"children":619},{"className":618},[],[620],{"type":48,"value":621},"templates\u002Ftoolkit-workflow.ts",{"type":48,"value":623}," - Complete ephemeral database workflow",{"type":42,"tag":68,"props":625,"children":626},{},[627,633],{"type":42,"tag":163,"props":628,"children":630},{"className":629},[],[631],{"type":48,"value":632},"scripts\u002Fcreate-ephemeral-db.ts",{"type":48,"value":634}," - Create a temporary database",{"type":42,"tag":68,"props":636,"children":637},{},[638,644],{"type":42,"tag":163,"props":639,"children":641},{"className":640},[],[642],{"type":48,"value":643},"scripts\u002Fdestroy-ephemeral-db.ts",{"type":48,"value":645}," - Clean up ephemeral database",{"type":42,"tag":57,"props":647,"children":649},{"id":648},"common-use-cases",[650],{"type":48,"value":651},"Common Use Cases",{"type":42,"tag":206,"props":653,"children":654},{"id":23},[655],{"type":48,"value":22},{"type":42,"tag":213,"props":657,"children":659},{"className":252,"code":658,"language":254,"meta":217,"style":217},"const db = await neon.createEphemeralDatabase();\n\u002F\u002F Run tests with fresh database\nawait db.delete();\n",[660],{"type":42,"tag":163,"props":661,"children":662},{"__ignoreMap":217},[663,702,710],{"type":42,"tag":124,"props":664,"children":665},{"class":224,"line":225},[666,670,674,678,682,686,690,694,698],{"type":42,"tag":124,"props":667,"children":668},{"style":326},[669],{"type":48,"value":329},{"type":42,"tag":124,"props":671,"children":672},{"style":276},[673],{"type":48,"value":443},{"type":42,"tag":124,"props":675,"children":676},{"style":270},[677],{"type":48,"value":339},{"type":42,"tag":124,"props":679,"children":680},{"style":264},[681],{"type":48,"value":452},{"type":42,"tag":124,"props":683,"children":684},{"style":276},[685],{"type":48,"value":457},{"type":42,"tag":124,"props":687,"children":688},{"style":270},[689],{"type":48,"value":380},{"type":42,"tag":124,"props":691,"children":692},{"style":347},[693],{"type":48,"value":466},{"type":42,"tag":124,"props":695,"children":696},{"style":276},[697],{"type":48,"value":471},{"type":42,"tag":124,"props":699,"children":700},{"style":270},[701],{"type":48,"value":309},{"type":42,"tag":124,"props":703,"children":704},{"class":224,"line":312},[705],{"type":42,"tag":124,"props":706,"children":707},{"style":427},[708],{"type":48,"value":709},"\u002F\u002F Run tests with fresh database\n",{"type":42,"tag":124,"props":711,"children":712},{"class":224,"line":322},[713,717,721,725,729,733],{"type":42,"tag":124,"props":714,"children":715},{"style":264},[716],{"type":48,"value":581},{"type":42,"tag":124,"props":718,"children":719},{"style":276},[720],{"type":48,"value":586},{"type":42,"tag":124,"props":722,"children":723},{"style":270},[724],{"type":48,"value":380},{"type":42,"tag":124,"props":726,"children":727},{"style":347},[728],{"type":48,"value":595},{"type":42,"tag":124,"props":730,"children":731},{"style":276},[732],{"type":48,"value":471},{"type":42,"tag":124,"props":734,"children":735},{"style":270},[736],{"type":48,"value":309},{"type":42,"tag":206,"props":738,"children":740},{"id":739},"cicd-integration",[741],{"type":48,"value":742},"CI\u002FCD Integration",{"type":42,"tag":213,"props":744,"children":746},{"className":215,"code":745,"language":37,"meta":217,"style":217},"export NEON_API_KEY=${{ secrets.NEON_API_KEY }}\nnpm test  # Uses ephemeral database\n",[747],{"type":42,"tag":163,"props":748,"children":749},{"__ignoreMap":217},[750,783],{"type":42,"tag":124,"props":751,"children":752},{"class":224,"line":225},[753,758,763,768,773,778],{"type":42,"tag":124,"props":754,"children":755},{"style":326},[756],{"type":48,"value":757},"export",{"type":42,"tag":124,"props":759,"children":760},{"style":276},[761],{"type":48,"value":762}," NEON_API_KEY",{"type":42,"tag":124,"props":764,"children":765},{"style":270},[766],{"type":48,"value":767},"=${",{"type":42,"tag":124,"props":769,"children":770},{"style":276},[771],{"type":48,"value":772},"{ secrets.NEON_API_KEY ",{"type":42,"tag":124,"props":774,"children":775},{"style":270},[776],{"type":48,"value":777},"}",{"type":42,"tag":124,"props":779,"children":780},{"style":276},[781],{"type":48,"value":782},"}\n",{"type":42,"tag":124,"props":784,"children":785},{"class":224,"line":312},[786,790,795],{"type":42,"tag":124,"props":787,"children":788},{"style":229},[789],{"type":48,"value":232},{"type":42,"tag":124,"props":791,"children":792},{"style":235},[793],{"type":48,"value":794}," test",{"type":42,"tag":124,"props":796,"children":797},{"style":427},[798],{"type":48,"value":799},"  # Uses ephemeral database\n",{"type":42,"tag":57,"props":801,"children":803},{"id":802},"related-skills",[804],{"type":48,"value":805},"Related Skills",{"type":42,"tag":64,"props":807,"children":808},{},[809,819],{"type":42,"tag":68,"props":810,"children":811},{},[812,817],{"type":42,"tag":92,"props":813,"children":814},{},[815],{"type":48,"value":816},"neon-serverless",{"type":48,"value":818}," - For connecting to databases",{"type":42,"tag":68,"props":820,"children":821},{},[822,827],{"type":42,"tag":92,"props":823,"children":824},{},[825],{"type":48,"value":826},"neon-drizzle",{"type":48,"value":828}," - For schema and migrations",{"type":42,"tag":830,"props":831,"children":832},"hr",{},[],{"type":42,"tag":51,"props":834,"children":835},{},[836,841,843,849,851,857],{"type":42,"tag":92,"props":837,"children":838},{},[839],{"type":48,"value":840},"Want best practices in your project?",{"type":48,"value":842}," Run ",{"type":42,"tag":163,"props":844,"children":846},{"className":845},[],[847],{"type":48,"value":848},"neon-plugin:add-neon-docs",{"type":48,"value":850}," with parameter ",{"type":42,"tag":163,"props":852,"children":854},{"className":853},[],[855],{"type":48,"value":856},"SKILL_NAME=\"neon-toolkit\"",{"type":48,"value":858}," to add reference links.",{"type":42,"tag":860,"props":861,"children":862},"style",{},[863],{"type":48,"value":864},"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":866,"total":433},[867,879,891,908,920,935],{"slug":868,"name":868,"fn":869,"description":870,"org":871,"tags":872,"stars":24,"repoUrl":25,"updatedAt":878},"add-neon-docs","add Neon docs to project AI docs","Use this skill when the user asks to add documentation, add docs, add references, or install documentation about Neon. Adds Neon best practices reference links to project AI documentation (CLAUDE.md, AGENTS.md, or Cursor rules). Does not install packages or modify code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[873,874,877],{"name":19,"slug":20,"type":14},{"name":875,"slug":876,"type":14},"Documentation","documentation",{"name":9,"slug":8,"type":14},"2026-04-06T18:38:53.722898",{"slug":880,"name":880,"fn":881,"description":882,"org":883,"tags":884,"stars":24,"repoUrl":25,"updatedAt":890},"neon-auth","set up Neon Auth for apps","Sets up Neon Auth for your application. Configures authentication, creates auth routes, and generates UI components. Use when adding authentication to Next.js, React SPA, or Node.js projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[885,888,889],{"name":886,"slug":887,"type":14},"Auth","auth",{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},"2026-04-06T18:38:52.386193",{"slug":826,"name":826,"fn":892,"description":893,"org":894,"tags":895,"stars":24,"repoUrl":25,"updatedAt":907},"set up Drizzle ORM with Neon","Creates a fully functional Drizzle ORM setup with a provisioned Neon database. Installs dependencies, provisions database credentials, configures connections, generates schemas, and runs migrations. Results in working code that can immediately connect to and query the database. Use when creating new projects with Drizzle, adding ORM to existing applications, or modifying database schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[896,897,900,901,904],{"name":19,"slug":20,"type":14},{"name":898,"slug":899,"type":14},"Drizzle","drizzle",{"name":9,"slug":8,"type":14},{"name":902,"slug":903,"type":14},"ORM","orm",{"name":905,"slug":906,"type":14},"PostgreSQL","postgresql","2026-04-06T18:38:56.217495",{"slug":909,"name":909,"fn":910,"description":911,"org":912,"tags":913,"stars":24,"repoUrl":25,"updatedAt":919},"neon-js","set up the Neon JS SDK for auth and queries","Sets up the full Neon JS SDK with unified auth and PostgREST-style database queries. Configures auth client, data client, and type generation. Use when building apps that need both authentication and database access in one SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[914,915,916,917],{"name":886,"slug":887,"type":14},{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},{"name":918,"slug":254,"type":14},"TypeScript","2026-04-06T18:38:51.116041",{"slug":816,"name":816,"fn":921,"description":922,"org":923,"tags":924,"stars":24,"repoUrl":25,"updatedAt":934},"configure Neon serverless driver","Configures Neon Serverless Driver for Next.js, Vercel Edge Functions, AWS Lambda, and other serverless environments. Installs @neondatabase\u002Fserverless, sets up environment variables, and creates working API route examples with TypeScript types. Use when users need to connect their application to Neon, fetch or query data from a Neon database, integrate Neon with Next.js or serverless frameworks, or set up database access in edge\u002Fserverless environments where traditional PostgreSQL clients don't work.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[925,926,929,930,931],{"name":19,"slug":20,"type":14},{"name":927,"slug":928,"type":14},"Edge Functions","edge-functions",{"name":9,"slug":8,"type":14},{"name":905,"slug":906,"type":14},{"name":932,"slug":933,"type":14},"Serverless","serverless","2026-04-06T18:38:54.97085",{"slug":4,"name":4,"fn":5,"description":6,"org":936,"tags":937,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[938,939,940,941],{"name":16,"slug":17,"type":14},{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},{"name":22,"slug":23,"type":14},{"items":943,"total":1078},[944,957,963,969,977,984,992,999,1011,1030,1048,1065],{"slug":945,"name":945,"fn":946,"description":947,"org":948,"tags":949,"stars":954,"repoUrl":955,"updatedAt":956},"neon-postgres","build apps with Neon serverless Postgres","Guides and best practices for working with Neon Serverless Postgres. Covers setup, connection methods and drivers, pooled vs direct connections, branching, autoscaling, scale-to-zero, instant restore, read replicas, connection pooling, IP allow lists, and logical replication. Use when users ask about \"Neon setup\", \"connect to Neon\", \"Neon project\", \"DATABASE_URL\", \"serverless Postgres\", \"Neon CLI\", \"neon\", \"Neon MCP\", \"Neon Auth\", \"@neondatabase\u002Fserverless\", \"@neondatabase\u002Fneon-js\", \"scale to zero\", \"Neon autoscaling\", \"Neon read replica\", or \"Neon connection pooling\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[950,951,952,953],{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},{"name":905,"slug":906,"type":14},{"name":932,"slug":933,"type":14},321,"https:\u002F\u002Fgithub.com\u002Fneondatabase\u002Fwebsite","2026-07-27T06:08:14.168734",{"slug":868,"name":868,"fn":869,"description":870,"org":958,"tags":959,"stars":24,"repoUrl":25,"updatedAt":878},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[960,961,962],{"name":19,"slug":20,"type":14},{"name":875,"slug":876,"type":14},{"name":9,"slug":8,"type":14},{"slug":880,"name":880,"fn":881,"description":882,"org":964,"tags":965,"stars":24,"repoUrl":25,"updatedAt":890},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[966,967,968],{"name":886,"slug":887,"type":14},{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},{"slug":826,"name":826,"fn":892,"description":893,"org":970,"tags":971,"stars":24,"repoUrl":25,"updatedAt":907},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[972,973,974,975,976],{"name":19,"slug":20,"type":14},{"name":898,"slug":899,"type":14},{"name":9,"slug":8,"type":14},{"name":902,"slug":903,"type":14},{"name":905,"slug":906,"type":14},{"slug":909,"name":909,"fn":910,"description":911,"org":978,"tags":979,"stars":24,"repoUrl":25,"updatedAt":919},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[980,981,982,983],{"name":886,"slug":887,"type":14},{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},{"name":918,"slug":254,"type":14},{"slug":816,"name":816,"fn":921,"description":922,"org":985,"tags":986,"stars":24,"repoUrl":25,"updatedAt":934},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[987,988,989,990,991],{"name":19,"slug":20,"type":14},{"name":927,"slug":928,"type":14},{"name":9,"slug":8,"type":14},{"name":905,"slug":906,"type":14},{"name":932,"slug":933,"type":14},{"slug":4,"name":4,"fn":5,"description":6,"org":993,"tags":994,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[995,996,997,998],{"name":16,"slug":17,"type":14},{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},{"name":22,"slug":23,"type":14},{"slug":1000,"name":1000,"fn":1001,"description":1002,"org":1003,"tags":1004,"stars":1008,"repoUrl":1009,"updatedAt":1010},"claimable-postgres","provision temporary Postgres databases","Provision instant temporary Postgres databases via Claimable Postgres by Neon (neon.new) with no login, signup, or credit card. Supports REST API, CLI, and SDK. Use when users ask for a quick Postgres environment, a throwaway DATABASE_URL for prototyping\u002Ftests, or \"just give me a DB now\". Triggers include: \"quick postgres\", \"temporary postgres\", \"no signup database\", \"no credit card database\", \"instant DATABASE_URL\", \"npx neon-new\", \"neon.new\", \"neon.new API\", \"claimable postgres API\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1005,1006,1007],{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},{"name":905,"slug":906,"type":14},81,"https:\u002F\u002Fgithub.com\u002Fneondatabase\u002Fagent-skills","2026-07-27T06:07:56.160588",{"slug":8,"name":8,"fn":1012,"description":1013,"org":1014,"tags":1015,"stars":1008,"repoUrl":1009,"updatedAt":1029},"build applications on the Neon platform","Overview of the Neon platform for apps and agents, spanning Postgres, Auth, the Data API, Object Storage, Compute Functions, and the AI Gateway. Start here to route to the right Neon skill, set up the CLI or MCP server, and follow the branch-first workflow. Use when \"Neon\" is mentioned, or when any of its individual capabilities are the trigger: \"object storage\" or \"S3\", \"buckets\", \"serverless functions\", \"AI gateway\", \"call an LLM\", \"postgres\", \"database\", or \"backend\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1016,1019,1022,1023,1024,1025,1026],{"name":1017,"slug":1018,"type":14},"AI Infrastructure","ai-infrastructure",{"name":1020,"slug":1021,"type":14},"Authentication","authentication",{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},{"name":905,"slug":906,"type":14},{"name":932,"slug":933,"type":14},{"name":1027,"slug":1028,"type":14},"Storage","storage","2026-07-27T06:08:01.383115",{"slug":1031,"name":1031,"fn":1032,"description":1033,"org":1034,"tags":1035,"stars":1008,"repoUrl":1009,"updatedAt":1047},"neon-ai-gateway","call LLMs via Neon AI Gateway","One API and one credential for frontier and open-source LLMs, built into your Neon branch and powered by Databricks. Use when a user wants to call an LLM, add AI\u002Fchat\u002Fan agent to their app, route between model providers (OpenAI, Anthropic, Google\u002FGemini, Meta, Alibaba, DeepSeek), or avoid juggling separate provider API keys and accounts — especially when they already use Neon and want AI requests to branch with their project. Works with the OpenAI SDK, Anthropic SDK, google-genai, the Vercel AI SDK, and Mastra by changing only the base URL. Triggers include \"call an LLM\", \"add AI to my app\", \"chat completion\", \"model routing\", \"LLM proxy\u002Fgateway\", \"one API for all models\", \"use Claude\u002FGPT\u002FGemini\", \"AI SDK\", \"Mastra agent\", \"Neon AI Gateway\", and \"log\u002Frate-limit AI calls\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1036,1037,1040,1043,1046],{"name":1017,"slug":1018,"type":14},{"name":1038,"slug":1039,"type":14},"API Development","api-development",{"name":1041,"slug":1042,"type":14},"Databricks","databricks",{"name":1044,"slug":1045,"type":14},"LLM","llm",{"name":9,"slug":8,"type":14},"2026-07-27T06:08:00.288175",{"slug":1049,"name":1049,"fn":1050,"description":1051,"org":1052,"tags":1053,"stars":1008,"repoUrl":1009,"updatedAt":1064},"neon-functions","deploy serverless functions on Neon","Long-running, serverless Node.js HTTP functions deployed onto your Neon branch, with DATABASE_URL injected automatically and compute that runs next to your data. Use when a user wants to host an API, an AI agent with long streaming responses, a WebSocket or server-sent-events (SSE) server, a webhook handler, a Discord bot, an MCP server, or any request\u002Fresponse workload that risks timing out on short, lambda-style serverless functions — and wants it to branch with their database. Triggers include \"serverless function\", \"deploy an API\", \"long-running function\", \"streaming agent\", \"SSE server\", \"WebSocket server\", \"webhook handler\", \"MCP server\", \"run code next to my database\", \"function that won't time out\", \"Neon Functions\", and \"Neon Compute\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1054,1055,1058,1059,1060,1063],{"name":1038,"slug":1039,"type":14},{"name":1056,"slug":1057,"type":14},"Backend","backend",{"name":927,"slug":928,"type":14},{"name":9,"slug":8,"type":14},{"name":1061,"slug":1062,"type":14},"Node.js","node-js",{"name":932,"slug":933,"type":14},"2026-07-27T06:07:59.147675",{"slug":1066,"name":1066,"fn":1067,"description":1068,"org":1069,"tags":1070,"stars":1008,"repoUrl":1009,"updatedAt":1077},"neon-object-storage","manage Neon object storage","S3-compatible object storage that branches with your Neon project, so files and the database stay in sync across every branch. Use when a user wants object storage, a bucket, blob\u002Ffile storage, or somewhere to put uploads, images, documents, avatars, or user-generated files for their app or agent — especially when they already use (or are setting up) Neon Postgres and don't want to add a separate storage provider like AWS S3, Cloudflare R2, or Supabase Storage. Triggers include \"object storage\", \"bucket\", \"blob storage\", \"file storage\", \"store uploads\u002Fimages\u002Ffiles\", \"S3-compatible storage\", \"presigned URL\", \"where do I put files\", \"Neon Object Storage\", \"Neon Storage\", and \"storage that branches with my database\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1071,1072,1075,1076],{"name":19,"slug":20,"type":14},{"name":1073,"slug":1074,"type":14},"File Storage","file-storage",{"name":9,"slug":8,"type":14},{"name":1027,"slug":1028,"type":14},"2026-07-27T06:07:57.150892",19]