ASD

Neon Postgres Branches

Elige y crea el tipo correcto de branch de Neon para testing y desarrollo: pruebas con datos reales, entornos aislados, branches schema-only, reset y lifecycles de CI/CD.

Oficial
Estrellas
82

en todo el repo

Actividad
67

0–100, la ruta de este skill

Actualizado
hace 14 días

último commit aquí

Commits
9

últimos 90 días

Contexto
3.4k tok

130 tok en reposo

Paquete
1 archivo

13 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add neondatabase/agent-skills --skill neon-postgres-branches --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Elige entre branch normal o schema-only según si se necesitan datos reales o solo estructura
  • Crea branches con la Neon CLI (por defecto) o Neon MCP como alternativa cuando la CLI no está disponible
  • Ejecuta reset-from-parent para refrescar un branch hijo con el estado más reciente del padre
  • Sugiere patrones de flujo de trabajo: branch por PR, por test run, por desarrollador, o con anonimización PII
  • Configura ciclo de vida y perfil de cómputo de branches de forma declarativa vía neon.ts

Úsalo cuando

  • El usuario pregunta sobre branching de Neon o quiere probar migraciones con datos reales
  • Se necesita un entorno de prueba aislado o un branch schema-only para datos sensibles
  • Se quiere resetear un branch desde su padre o gestionar expiración/lifecycle en CI/CD
  • Se pide crear branches vía Neon CLI o Neon MCP

No lo uses cuando

    Qué lo activa

    Di cualquiera de estas frases y el agente debería cargar este skill.

    • Necesito probar una migración riesgosa contra datos reales de producción
    • No podemos copiar datos de producción por compliance, ¿cómo creo un branch schema-only?
    • Quiero resetear mi branch de staging desde main
    • Crea un branch de Neon por cada PR y bórralo al cerrarse

    SKILL.md

    En inglés

    FIRST: Use the parent neon skill for a Neon overview, getting started with Neon, Neon development best practices, and more.

    If the neon skill is not installed, fetch it from https://neon.com/docs/ai/skills/neon/SKILL.md or install it with:

    npx skills add neondatabase/agent-skills --skill neon
    

    Lakebase Postgres Branching

    Outcome: a created Neon branch — or a clear, actionable next step if creation cannot proceed. Choose the correct branch type, then execute branch creation with the CLI (or MCP where the CLI isn't usable).

    • Normal branch for realistic migration and query testing with real data.
    • Schema-only branch (Beta) for sensitive data workflows where structure is needed without copying rows.

    Branch Type Decision

    Use this decision rule first:

    1. If the user wants to test complex migrations, performance, or behavior against production-like data, choose a normal branch.
    2. If the user needs to avoid copying sensitive data, choose a schema-only branch.

    If the request is ambiguous, ask one clarifying question: "Do you need realistic data for testing, or only schema structure because the data is sensitive?"

    Tool Selection: CLI or MCP

    Support both the Neon CLI and the Neon MCP server, but default to the CLI. Use MCP only when the CLI is unavailable or blocked in your environment, cannot be authenticated, or the user explicitly asks for MCP.

    Selection order

    1. Check the CLI first:
      • Run neon --version to confirm the CLI is installed.
      • Run neon projects list to confirm auth/context.
    2. If the CLI is missing, direct installation via quickstart.
    3. If the CLI is installed but not authenticated, guide the user through neon auth (or API key auth), then continue.
    4. Switch to MCP when the CLI cannot be used — no CLI access in the environment, execution blocked, or authentication not possible — or when the user explicitly asks for MCP. Confirm Neon MCP tools are available and authenticated (for example, listing projects works), then follow the MCP branch flow below.
    5. If neither path is successful, use the Neon REST API:

    MCP branch flow

    1. Choose normal vs schema-only based on data sensitivity and migration-testing goals.
    2. Use branch tools (for example, create_branch) to create the branch.
    3. Validate with read tools (for example, describe_branch).
    4. For migration workflows, prefer branch-based migration flows before applying to main.

    Create a Normal Branch (Preferred for Real-Data Migration Testing)

    Use this when the user needs realistic testing conditions. Real production-like data can expose edge cases your seed or data migration scripts miss, which helps catch migration issues before going live.

    Link: https://neon.com/docs/introduction/branching.md

    Steps

    1. Settle the tool path first (see Selection order): verify the CLI with neon --version, and fall back to MCP only if the CLI isn't usable.

    2. Ensure project context is set (neon set-context --project-id <your-project-id>) or include --project-id on commands.

    3. Create the branch:

      neon branches create \
        --name <branch-name> \
        --parent <parent-branch-id-or-name> \
        --expires-at 2026-12-15T18:02:16Z
      
    4. Optionally fetch a connection string for the new branch:

      neon connection-string <branch-name>
      

    Create a Schema-Only Branch (Beta, Sensitive Data)

    Use this when users must not copy production rows into the test branch.

    Link: https://neon.com/docs/guides/branching-schema-only.md

    Steps

    1. Settle the tool path first (see Selection order): verify the CLI with neon --version, and fall back to MCP only if the CLI isn't usable.

    2. Create the schema-only branch:

      neon branches create \
        --name <schema-only-branch-name> \
        --parent <parent-branch-id-or-name> \
        --schema-only \
        --expires-at 2026-12-15T18:02:16Z
      

      If multiple projects exist, include --project-id:

      neon branches create \
        --name <schema-only-branch-name> \
        --parent <parent-branch-id-or-name> \
        --schema-only \
        --project-id <your-project-id> \
        --expires-at 2026-12-15T18:02:16Z
      

    Beta Support Guidance (Mandatory)

    Schema-only branching is in Beta. If users report unexpected behavior, errors, or missing capabilities:

    1. Ask them to share feedback in the Neon Console:
    2. Recommend opening a support conversation in the Neon Discord:

    Reset from Parent

    Use this when a child branch has drifted and the user wants a clean refresh from the parent branch's latest schema and data.

    Link: https://neon.com/docs/guides/reset-from-parent.md

    What it does

    • Fully replaces the child branch schema and data with the parent's latest state.
    • Does not merge; local changes on the child branch are lost.
    • Keeps the same connection details, but active connections are briefly interrupted during reset.

    When to recommend it

    • Development or staging branch is too far behind production.
    • User wants to start a new feature from a clean parent-aligned state.
    • Team wants to refresh staging from production for consistent testing baselines.

    Hard constraints and blockers

    • Only child branches can be reset (root branches and schema-only root branches cannot be reset from parent).
    • If the target branch has children, reset is blocked until those child branches are removed.
    • After a parent branch is restored from snapshot, reset-from-parent may be unavailable for up to 24 hours.
    • Reset-from-parent always uses the current parent state; use Instant restore for point-in-time recovery needs.

    CLI usage

    neon branches reset <id|name> --parent --preserve-under-name <backup-branch-name>
    

    If project context is not already set, include the project ID:

    neon branches reset <id|name> --parent --preserve-under-name <backup-branch-name> --project-id <project-id>
    

    --preserve-under-name keeps the pre-reset state as a backup branch for rollback, but adds one extra branch to clean up later.

    Optional context setup to avoid repeating --project-id:

    neon set-context --project-id <project-id>
    

    Console and API usage

    • Console: Open the target child branch, then select Reset from parent from Actions.
    • API: Use the restore endpoint for the branch and set source_branch_id to the parent branch ID.

    Notes and Caveats

    • Schema-only branches are for structure-only cloning and sensitive/compliant data controls.
    • Schema-only branches are independent root branches (no parent branch and no shared history), so reset-from-parent does not apply.
    • For migration testing that depends on real-world row shapes, volumes, and edge cases, prefer normal branches.
    • Root branch allowances and per-branch storage limits can cap how many schema-only branches users can create.
    • If a user is unsure, default recommendation is:
      • Normal branch for migration validation.
      • Schema-only branch for compliance and privacy constraints.

    Useful Workflow Patterns

    If the user asks for process recommendations (not just a single command), suggest these:

    • One branch per PR: Create branch when PR opens, delete when merged/closed, keep migration tests isolated.
    • One branch per test run: Create branch at pipeline start, run migrations/tests, delete at end for deterministic CI.
    • One branch per developer: Isolated dev environments with production-like shape; avoid team collisions on shared test data.
    • PII-aware branching: If production has sensitive data, derive dev/PR branches from an anonymized branch or use schema-only branches.
    • Ephemeral lifecycle hygiene: Set branch expiration and automate cleanup so old branches do not accumulate avoidable storage/history cost.

    Post-creation environment update prompt

    After branch creation, ask whether the user wants to update local environment credentials to point at the new branch.

    • Ask: "Do you want me to update your .env DATABASE_URL to this new branch connection string?"
    • If yes, write the new branch connection string to the requested env file/key.
    • If no, leave credentials unchanged and share the connection string for manual use.
    • Never overwrite an existing env key without explicit confirmation.

    Neon Infrastructure as Code (neon.ts)

    Beyond creating branches imperatively (CLI / MCP / API above), you can program what configuration new branches receive declaratively in neon.ts — Neon's infrastructure-as-code file (see the neon skill for the full reference). The branch property is a function of the branch being evaluated that returns its settings, so every branch born from your project gets a consistent lifecycle and compute profile without per-branch flags.

    npm i @neon/config
    
    // neon.ts
    import { defineConfig } from "@neon/config/v1";
    
    export default defineConfig({
      branch: (branch) => {
        if (branch.exists) return {}; // never reconcile existing branches
        if (branch.isDefault) return { protected: true };
        if (branch.name.startsWith("preview/") || branch.name.startsWith("dev")) {
          return {
            parent: "main",
            ttl: "7d", // ephemeral: auto-expire 7 days after creation (max 30d)
            postgres: {
              computeSettings: {
                autoscalingLimitMinCu: 0.25, // scale to zero
                autoscalingLimitMaxCu: 1, // keep throwaway branches cheap
                suspendTimeout: "5m",
              },
            },
          };
        }
        return {};
      },
    });
    

    The closure receives a read-only descriptor of the target branch — name, exists, isDefault, parentId, and more — and returns the tuning to apply: parent, ttl (auto-expiry), protected, and postgres.computeSettings. This is the declarative complement to the Ephemeral lifecycle hygiene and per-PR / per-test patterns above: instead of remembering --expires-at on every neon branches create, the TTL and compute profile live in version control and apply to every matching branch.

    Because neon checkout applies this policy when it creates a branch, a fresh preview/* or dev-* branch comes up already expiring and scaled-to-zero. Checking out an existing branch doesn't reconcile it — run neon deploy (alias for neon config apply) to apply changes to a branch that already exists.

    Branching in CI/CD

    Common CI/CD use cases for Neon branches:

    • Per-PR preview deployments: Branch on PR open, deploy the preview against it, delete on close. Each PR gets an isolated database branch. Injecting the branch's DATABASE_URL into the deployed app is hosting-provider-specific — see preview-branches-with-cloudflare, preview-branches-with-vercel, or preview-branches-with-fly for tested patterns.
    • Migration testing in CI: Run risky schema changes against a branch with production-like data before merge.
    • Schema diff visibility: Use the schema-diff GitHub Action to auto-comment a DB-layer diff on the PR.

    Examples

    Example 1: Migration testing with realistic data

    User input: "I need to test a risky migration against production-like data."

    Agent output shape:

    1. Recommend a normal branch and explain why.
    2. Share docs link: https://neon.com/docs/introduction/branching
    3. Check the tool path first (CLI with neon --version; MCP only if the CLI isn't usable).
    4. Provide commands:
      • neon branches create --name migration-test --parent main --expires-at 2026-12-15T18:02:16Z
      • neon connection-string migration-test

    Example 2: Sensitive data development workflow

    User input: "We cannot copy production data because of compliance."

    Agent output shape:

    1. Recommend schema-only branch and explain why.
    2. Share docs link: https://neon.com/docs/guides/branching-schema-only
    3. Check the tool path first (CLI with neon --version; MCP only if the CLI isn't usable).
    4. Provide command:
      • neon branches create --name compliance-dev --parent main --schema-only --project-id <your-project-id> --expires-at 2026-12-15T18:02:16Z
    5. Mention Beta support path:

    Further Reading

    Reproducido de neondatabase/agent-skills bajo licencia Apache-2.0. Leer esta página en markdown.

    Archivos

    1 archivo en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

    Antes de instalar

    Requiere la Neon CLI instalada y autenticada (o el Neon MCP server como alternativa), y opcionalmente la skill padre 'neon'.

    Necesita en el PATH:npmnpx

    Detalles

    Categoría
    Bases de datos
    Licencia
    Apache-2.0
    Recursos incluidos
    Solo SKILL.md
    Código fuente
    Ver SKILL.md

    Más de neondatabase/agent-skills

    Este repo incluye 9 skills. Si instalas uno, normalmente ya tienes los demás.

    Funciones HTTP de Node.js long-running y serverless desplegadas en tu rama de Neon, con DATABASE_URL inyectado automáticamente y compute que corre junto a tus datos.

    Costo de contexto al activarse
    9.6k tok
    Tamaño del paquete
    6 archivos
    Última actualización
    hace 4 días
    Oficialdevops infraestructura

    Visión general de Neon: primitivas de backend en la nube (Lakebase Postgres, Auth, Data API, Object Storage, Functions, AI Gateway), CLI/MCP y flujo branch-first.

    Costo de contexto al activarse
    7.1k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 4 días
    Oficialbases de datos

    Una sola API y una sola credencial para modelos LLM frontera y de código abierto, integrada en tu rama de Neon y con tecnología de Databricks.

    Costo de contexto al activarse
    5k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 8 días
    Oficialdesarrollo apis

    Guías y buenas prácticas para trabajar con Lakebase Postgres, la base de datos detrás de Neon: setup, drivers, pooling, branching, migraciones, autoscaling, scale-to-zero y más.

    Costo de contexto al activarse
    2.3k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 6 días
    Oficialbases de datos

    Almacenamiento de objetos compatible con S3 que se ramifica junto a tu proyecto Neon, para que archivos y base de datos se mantengan sincronizados en cada branch.

    Costo de contexto al activarse
    3.1k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 4 días
    Oficialbases de datos

    Diagnostica y corrige el egress excesivo de Postgres (transferencia de datos por red) en un código, cuando suben las facturas o hay picos de transferencia.

    Costo de contexto al activarse
    2.5k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 14 días
    Oficialbases de datos

    Skills relacionados

    Domina la optimización de consultas SQL, estrategias de indexado y análisis EXPLAIN para mejorar drásticamente el rendimiento de la base de datos y eliminar consultas lentas.

    Costo de contexto al activarse
    1.5k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 2 meses
    bases de datos

    Ejecuta migraciones de bases de datos entre ORMs y plataformas con estrategias zero-downtime, transformación de datos y procedimientos de rollback.

    Costo de contexto al activarse
    2k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 2 meses
    bases de datos

    Diseña e implementa event stores para sistemas de event sourcing: infraestructura, elección de tecnología y patrones de persistencia de eventos.

    Costo de contexto al activarse
    1k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 2 meses
    bases de datos