supabase-database

Runs on-premise or in the cloudUTE!

Updated Nov 16, 2025
One-click install
npx skills add https://github.com/mhintz1980/ptl-lova --skill supabase-database-mhintz1980
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: supabase-database
Source: https://github.com/mhintz1980/ptl-lova/tree/main/claude-code-supabase-skills/skills/supabase-database
Command: npx skills add https://github.com/mhintz1980/ptl-lova --skill supabase-database-mhintz1980

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill enables developers to perform CRUD operations against a Supabase database via the REST API, enabling app data access and integration with frontend apps without bespoke server-side endpoints.

Core Features & Use Cases

  • SELECT queries with server-side filtering to read data from tables
  • INSERT, UPDATE, DELETE operations to modify records
  • RPC function calls for server-side logic and workflows
  • Use case: Build admin dashboards to list users, update profiles, and trigger server-side calculations via REST endpoints.

Quick Start

Query and modify your Supabase data via REST using the included helper script.

Frequently Asked Questions about supabase-database

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

FAQPage Schema
How do I perform CRUD operations on a Supabase database via REST API?

To perform CRUD operations on a Supabase database via REST API, you use a shared helper script that targets REST endpoints for SELECT, INSERT, UPDATE, and DELETE commands. This enables direct app data integration without server-side endpoints.

What environment variables do I need to call the Supabase REST API?

You need to set the SUPABASE_URL and SUPABASE_KEY environment variables to authenticate and call the Supabase REST API. These provide the project address and access key required by the helper script.

Can I execute Supabase RPC function calls through the REST API?

Yes, you can execute Supabase RPC function calls through the REST API to trigger server-side logic and workflows. The skill directly supports RPC calls alongside standard data modification operations.

Does the Supabase REST API support server-side filtering for SELECT queries?

Yes, the Supabase REST API supports server-side filtering for SELECT queries to read data from tables. This allows you to retrieve specific records directly without fetching the entire table.

What is the best way to build an admin dashboard with Supabase data?

The best way to build an admin dashboard with Supabase data is using REST-based CRUD operations to list users, update profiles, and trigger server-side calculations. This approach removes the need for bespoke server-side endpoints.