supabase
v0.1.10Access your Supabase projects and perform tasks like managing tables, fetching config, and querying data.
by SupabaseMIT5kupdated 3 weeks ago
Source
git clone https://github.com/openai/pluginsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/supabase/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── skills/supabase/SKILL.md└── skills/supabase-postgres-best-practices/SKILL.md
Skills2
Use when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues); client libraries and SSR integrations (supabase-js, @supabase/ssr) in Next.js, React, SvelteKit, Astro, Remix; auth issues (login, logout, sessions, JWT, cookies, getSession, getUser, getClaims, RLS); Supabase CLI or MCP server; schema changes, migrations, security audits, Postgres extensions (pg_graphql, pg_cron, pg_vector).
Postgres performance optimization and best practices from Supabase. Use this skill when writing, reviewing, or optimizing Postgres queries, schema designs, or database configurations.
Manifests1
{
"name": "supabase",
"version": "0.1.10",
"description": "Access your Supabase projects and perform tasks like managing tables, fetching config, and querying data.",
"author": {
"name": "Supabase",
"email": "support@supabase.io",
"url": "https://supabase.com"
},
"homepage": "https://supabase.com",
"repository": "https://github.com/supabase-community/supabase-plugin",
"license": "MIT",
"keywords": [
"supabase",
"postgres",
"database",
"backend",
"mcp"
],
"skills": "./skills/",
"apps": "./.app.json",
"interface": {
"displayName": "Supabase",
"shortDescription": "Supabase skills and MCP tools for Codex",
"longDescription": "Official Supabase plugin for Codex. Includes agent skills for Supabase development and Postgres best practices, plus MCP server integration for managing your Supabase projects directly from Codex.",
"developerName": "Supabase",
"category": "Developer Tools",
"capabilities": [
"Read",
"Write"
],
"websiteURL": "https://supabase.com",
"privacyPolicyURL": "https://supabase.com/privacy",
"termsOfServiceURL": "https://supabase.com/terms",
"defaultPrompt": [
"Use Supabase to set up Auth and protected routes for my app.",
"Review my Supabase schema and RLS policies for security issues.",
"Optimize my Postgres queries and indexes using Supabase best practices."
],
"brandColor": "#3ECF8E",
"logo": "./assets/logo.png"
}
}