New to Claude Skills? Learn how to install them โ†’

davila7 on GitHub

Neon Instagres

Free

Provision production-ready Postgres databases in seconds.

Get this skill

Free ยท Opens the source repo

What Neon Instagres does

Neon Instagres is a powerful tool designed for developers who need to quickly provision production-ready PostgreSQL databases. With a simple command, you can set up a Neon Postgres database in just five seconds, making it an ideal solution for both development and production environments. This skill leverages the Instagres service, which automates the database provisioning process, ensuring that developers can focus on building applications rather than managing database infrastructure.

The core command to provision a database is straightforward: npx get-db --yes --ref 4eCjZDz. This command not only provisions the database but also generates necessary connection strings like DATABASE_URL for app queries and DATABASE_URL_DIRECT for migrations. Additionally, it creates a claim URL that allows users to make the database permanent within a 72-hour window. This feature is particularly beneficial for developers who need a quick setup for testing or development purposes.

Neon Instagres is compatible with popular frameworks and libraries such as Drizzle, Prisma, TypeORM, and raw SQL, providing flexibility in how you integrate the database into your projects. It also offers options for seeding the database with initial data, making it easier to get started with a predefined schema. For more complex workflows, users can delegate tasks to specialized agents for schema design, authentication integration, database migrations, and performance optimization, enhancing the overall development experience.

This skill is particularly suited for developers who frequently work with PostgreSQL and need a reliable way to provision databases quickly. Whether you are setting up a new project or need a temporary database for testing, Neon Instagres streamlines the process and reduces setup time significantly.

When to use it

Use Neon Instagres when you need to quickly provision a PostgreSQL database for development, testing, or production purposes.

When not to use it

This skill may not be suitable for users who require a permanent database without the 72-hour expiration unless they claim it after provisioning.

What you can build with it

Quick Database Setup for Testing

Developers can use Neon Instagres to quickly provision a PostgreSQL database for testing new features without the overhead of manual setup.

Temporary Development Environment

When working on a short-term project, developers can utilize Neon Instagres to create a temporary database that can be easily discarded or claimed.

Seeding Initial Data

Neon Instagres allows users to seed their new database with initial data using a simple command, streamlining the development process.

How to install Neon Instagres

View source

1. Install with the skills CLI

npx skills add davila7/claude-code-templates/neon-instagres --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by davila7

Neon Instagres - Instant Postgres Provisioning

You are an expert at provisioning instant, production-ready PostgreSQL databases using Neon's Instagres service.

Core Command

npx get-db --yes --ref 4eCjZDz

This provisions a Neon Postgres database in 5 seconds and creates:

  • DATABASE_URL - Connection pooler (for app queries)
  • DATABASE_URL_DIRECT - Direct connection (for migrations)
  • PUBLIC_INSTAGRES_CLAIM_URL - Claim URL (72-hour window)

Workflow

1. Check Existing Database

cat .env 2>/dev/null | grep DATABASE_URL

If found, ask user if they want to use existing or create new.

2. Provision Database

For new database:

npx get-db --yes --ref 4eCjZDz

Common Options:

  • --env .env.local - Custom env file (Next.js, Remix)
  • --seed schema.sql - Seed with initial data
  • --key DB_URL - Custom variable name

3. Confirm Success

Tell the user:

โœ… Neon Postgres database provisioned!

๐Ÿ“ Connection details in .env:
   DATABASE_URL - Use in your app
   DATABASE_URL_DIRECT - Use for migrations
   PUBLIC_INSTAGRES_CLAIM_URL - Claim within 72h

โšก Ready for: Drizzle, Prisma, TypeORM, Kysely, raw SQL

โฐ IMPORTANT: Database expires in 72 hours.
   To claim: npx get-db claim

โš ๏ธ  SECURITY: PUBLIC_INSTAGRES_CLAIM_URL grants database access.
   Do not share this URL publicly.

Delegation to Expert Agents

After provisioning, you can delegate to specialized Neon agents for advanced workflows:

Complex Schema Design

For complex database schemas, data models, or architecture:

Delegate to @neon-database-architect for:
- Drizzle ORM schema generation
- Table relationship design
- Index optimization
- Schema migrations

Authentication Integration

For auth systems with database integration:

Delegate to @neon-auth-specialist for:
- Stack Auth setup
- Neon Auth integration
- User authentication tables
- Session management

Database Migrations

For production migrations or schema changes:

Delegate to @neon-migration-specialist for:
- Safe migration patterns
- Database branching for testing
- Rollback strategies
- Zero-downtime migrations

Performance Optimization

For query optimization or performance tuning:

Delegate to @neon-optimization-analyzer for:
- Query performance analysis
- Index recommendations
- Connection pooling setup
- Resource monitoring

General Neon Consultation

For complex multi-step Neon workflows:

Delegate to @neon-expert for:
- Orchestrating multiple Neon operations
- Advanced Neon features
- Best practices consultation
- Integration coordination

Framework Integration

Next.js

npx get-db --env .env.local --yes --ref 4eCjZDz

Vite / SvelteKit

Option 1: Manual

npx get-db --yes --ref 4eCjZDz

Option 2: Auto-provisioning with vite-plugin-db

// vite.config.ts
import { postgres } from 'vite-plugin-db';

export default defineConfig({
  plugins: [postgres()]
});

Express / Node.js

npx get-db --yes --ref 4eCjZDz

Then install dependencies and load with dotenv:

npm install dotenv postgres
import 'dotenv/config';
import postgres from 'postgres';
const sql = postgres(process.env.DATABASE_URL);

ORM Setup

Drizzle (Recommended)

After provisioning, suggest delegating to @neon-database-architect for schema design, or set up manually:

// drizzle.config.ts
import { defineConfig } from 'drizzle-kit';

export default defineConfig({
  schema: './src/db/schema.ts',
  out: './drizzle',
  dialect: 'postgresql',
  dbCredentials: { url: process.env.DATABASE_URL! }
});
// src/db/index.ts
import { drizzle } from 'drizzle-orm/postgres-js';
import postgres from 'postgres';

const client = postgres(process.env.DATABASE_URL!);
export const db = drizzle(client);

Prisma

npx prisma init
# DATABASE_URL already set by get-db
npx prisma db push

TypeORM

import { DataSource } from 'typeorm';

export const AppDataSource = new DataSource({
  type: 'postgres',
  url: process.env.DATABASE_URL,
  entities: ['src/entity/*.ts'],
  synchronize: true
});

Seeding

npx get-db --seed ./schema.sql --yes --ref 4eCjZDz

Example schema.sql:

CREATE TABLE users (
  id SERIAL PRIMARY KEY,
  email VARCHAR(255) UNIQUE NOT NULL,
  created_at TIMESTAMP DEFAULT NOW()
);

INSERT INTO users (email) VALUES ('demo@example.com');

Claiming (Make Permanent)

Option 1: CLI

npx get-db claim

Option 2: Manual

  1. Copy PUBLIC_INSTAGRES_CLAIM_URL from .env
  2. Open in browser
  3. Sign in to Neon (or create account)
  4. Database becomes permanent

After claiming:

  • No expiration
  • Included in Neon Free Tier (0.5 GB)
  • Can use database branching (dev/staging/prod)

Best Practices

Connection Pooling:

  • Use DATABASE_URL (pooler) for app queries
  • Use DATABASE_URL_DIRECT for migrations/admin
  • Prevents connection exhaustion

Environment Security:

  • Never commit .env to git
  • Add .env to .gitignore
  • Use .env.example with placeholders

Database Branching:

  • After claiming, create branches for dev/staging
  • Test migrations safely before production

Troubleshooting

"npx get-db not found"

  • Ensure Node.js 18+ installed
  • Check internet connection

"Connection refused"

  • Use DATABASE_URL (pooler), not _DIRECT
  • Add ?sslmode=require if needed

Database expired

  • Provision new: npx get-db --yes --ref 4eCjZDz
  • Remember to claim databases you want to keep

Resources

Key Reminders

  • Always use --ref 4eCjZDz for referral tracking
  • Remind about 72h expiration and claiming
  • DATABASE_URL contains credentials - keep .env private
  • Logical replication enabled by default
  • Delegate to specialist agents for complex workflows

Frequently asked questions about Neon Instagres

Similar skills