skills.vishalvoidskills/vishalvoid
Technical & DevelopmentIntermediate

claimable-postgres

Claimable Postgres database provisioning with Neon

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/neondatabase/agent-skills --skill claimable-postgres

Overview

What This Skill Does

Provisions temporary Postgres databases instantly via Neon's Claimable Postgres service. No account, login, or credit card needed. Databases expire after 72 hours unless claimed to a Neon account.

Application

When to use this Skill

Documentation

Show Skills.md file

Claimable Postgres

Instant Postgres databases for local development, demos, prototyping, and test environments. No account required. Databases expire after 72 hours unless claimed to a Neon account.

Quick Start

curl -s -X POST "https://neon.new/api/v1/database" \
  -H "Content-Type: application/json" \
  -d '{"ref": "agent-skills"}'

Parse connection_string and claim_url from the JSON response. Write connection_string to the project's .env as DATABASE_URL.

For other methods (CLI, SDK, Vite plugin), see Which Method? below.

Which Method?

  • REST API: Returns structured JSON. No runtime dependency beyond curl. Preferred when the agent needs predictable output and error handling.
  • CLI (npx neon-new@latest --yes): Provisions and writes .env in one command. Convenient when Node.js is available and the user wants a simple setup.
  • SDK (neon-new/sdk): Scripts or programmatic provisioning in Node.js.
  • Vite plugin (vite-plugin-neon-new): Auto-provisions on vite dev if DATABASE_URL is missing. Use when the user has a Vite project.
  • Browser: User cannot run CLI or API. Direct to https://neon.new.

REST API

Lines 1 - 25 of 212

Recommendations

Explore other random skills

All skillsMy patterns