supabase

Automate Supabase project linking, migration creation, and database pushes.

Updated Feb 21, 2026
One-click install
npx skills add https://github.com/aquarius-wing/polymarket-dev-tools --skill supabase-aquarius-wing
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: supabase
Source: https://github.com/aquarius-wing/polymarket-dev-tools/tree/main/.cursor/skills/supabase-deploy
Command: npx skills add https://github.com/aquarius-wing/polymarket-dev-tools --skill supabase-aquarius-wing

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Supabase production database maintenance can be error-prone and manual. This skill automates linking projects, creating migrations, and applying migrations to keep production schemas up to date.

Core Features & Use Cases

  • Link a Supabase project to a local workflow with a single command.
  • Create a new migration and push changes to the production database.
  • Use in CI/CD pipelines to ensure migrations run consistently across environments.

Quick Start

Run the following commands to link the project, create a new migration named new-migration, and push migrations: supabase link --project-ref zmsdtvoaqkuathnrllii; supabase migration new new-migration; supabase db push.

Frequently Asked Questions about supabase

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

FAQPage Schema
How do I automate Supabase database migrations in a CI/CD pipeline?

You can automate Supabase database migrations by running CLI commands to link your project, create new migrations, and push schema updates directly within your CI/CD pipeline for consistent deployment.

What is the process to link a local workflow to a Supabase production database?

Linking a local workflow to a Supabase production database requires executing a single link command with your specific project reference to connect the local environment to the remote database.

Do I need the Supabase CLI installed to automate production database schema updates?

Yes, automating production database schema updates requires the Supabase CLI to be available in your environment to validate project references, create migrations, and successfully push operations.

How do I create and apply a new migration to a Supabase staging environment?

To create and apply a new migration to a Supabase staging environment, use the CLI to generate the migration file and execute a database push command to update the schema.

Can I use this approach to keep development and staging Supabase schemas up to date?

Yes, you can use these automated linking and migration push commands across development and staging environments to ensure production schemas remain consistently up to date.