bootstrap

Orchestrate repository setup with Vercel linking, environment provisioning, and database configuration.

Updated May 31, 2026
One-click install
npx skills add https://github.com/ChristineTham/lp --skill bootstrap-christinetham
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bootstrap
Source: https://github.com/ChristineTham/lp/tree/main/.agents/skills/bootstrap
Command: npx skills add https://github.com/ChristineTham/lp --skill bootstrap-christinetham

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Bootstrap orchestrates the end-to-end setup of a repository by coordinating Vercel-linked resources, environment provisioning, and initial database/auth configuration to ensure safe, ordered deployment.

Core Features & Use Cases

  • Preflight checks and validations: ensures Vercel CLI is installed and repo is linked, env templates exist, and required keys are present before starting development server.
  • Resource provisioning orchestration: guides Neon/Postgres provisioning or dashboard setups, and configures environment variables via vercel env pull.
  • Safe run order and automation: enforces a strict sequence so db/dev commands run only after linking and env verification, and provides deterministic commands for first-run.

Quick Start

Follow the bootstrap process to initialize a new repo or repair an existing one, ensuring Vercel linking and env credentials are correctly configured before development.

Frequently Asked Questions about bootstrap

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I bootstrap a Vercel-linked repo with Neon Postgres environment variables?

To bootstrap a Vercel-linked repo, the process runs preflight checks, provisions Neon Postgres resources, pulls environment keys via vercel env pull, and enforces a strict run order before starting the development server.

What steps are required to configure environment variables for a Vercel project setup?

Configuring environment variables requires verifying Vercel CLI installation, linking the repository, provisioning database resources, and executing vercel env pull using env templates to ensure required keys are present before development.

Why does my database or development server fail to start after cloning a Vercel repo?

Database or dev commands fail when run before Vercel linking and environment verification are complete. The bootstrap process enforces strict sequencing so db and dev commands only execute after env credentials are correctly configured.

Do I need the Vercel CLI installed before bootstrapping a new project environment?

Yes, the Vercel CLI is required before bootstrapping. Preflight checks validate that the CLI is installed and the repo is linked to Vercel before orchestrating resource provisioning and environment variable configuration.

Can I use this bootstrap process to repair an existing Vercel-linked repository setup?

Yes, the bootstrap process applies to both new projects and repair scenarios. It guides users through preflight checks, resource provisioning, and env key verification to restore correct Vercel linking and database configuration.

What is the safest run order for provisioning Neon Postgres and pulling Vercel env keys?

The safe run order enforces Vercel linking first, then env template verification, followed by Neon Postgres provisioning, vercel env pull, and finally db or dev commands to satisfy end-to-end provisioning and security requirements.