Vibe Index
🎯

using-neon

🎯Skill

from neondatabase/agent-skills

VibeIndex|
AI Summary

Provides comprehensive guidance and technical instructions for developers on effectively using Neon Serverless Postgres, covering connection methods, authentication, database drivers, ORMs, and pla...

using-neon

Installation

Install skill:
npx skills add https://github.com/neondatabase/agent-skills --skill using-neon
Stars193
Last UpdatedJan 21, 2026

Skill Details

SKILL.md

Overview

Neon Logo fallback

# Agent Skills

A collection of [Agent Skills](https://agentskills.io/) for Neon Serverless Postgres.

What are Agent Skills?

As per the Agent Skills spec, skills are folders of instructions, scripts, and resources that agents can discover and use to do things more accurately and efficiently. Once installed, skills are automatically invoked by the agent upon detection of relevant tasks.

It all starts with the SKILL.md file in the skill's directory. It's the entry point and allows agents to progressively discover information as needed.

Available Skills

Using Neon

[skills/using-neon](skills/using-neon/SKILL.md)

A comprehensive guide and best practices for working with Neon Serverless Postgres. It covers:

Core Guides:

  • Getting started with Neon
  • Developer tools (VSCode extension, MCP server, neon init CLI)
  • Choosing connection methods (decision tree by language/platform/runtime)
  • Feature overview (branching, autoscaling, scale-to-zero, instant restore)

Database Drivers & ORMs:

  • @neondatabase/serverless - HTTP/WebSocket queries for serverless/edge functions
  • Drizzle ORM integration

Authentication & Full SDK:

  • @neondatabase/auth - Authentication only
  • @neondatabase/neon-js - Auth + Data API (PostgREST-style queries)

Platform API & SDKs:

  • REST API for managing Neon resources
  • TypeScript SDK (@neondatabase/api-client)
  • Python SDK (neon-api)

Installation

```bash

npx add-skill neondatabase/agent-skills

```

Usage

Example prompts:

```

Get started with Neon

```

```

Recommend a connection method for this project

```

```

Set up Drizzle ORM with Neon

```

```

Set up Neon Auth for my Next.js app

```

```

Query the database using neon-js

```

```

Create a new Neon branch using the API

```

```

Use the serverless driver for edge functions

```