Supabase turns its docs into installable AI agent skill packs
Curated instruction packs that teach AI agents to handle Supabase and Postgres correctly.

What it does
This repo packages Supabase documentation and best practices into “Agent Skills” — structured bundles of instructions, scripts, and reference files that AI agents consume to answer questions and write code more accurately. Instead of hoping your copilot remembers Supabase auth edge cases or Postgres indexing rules, you install these packs so the agent has the context upfront. The bundles follow the open Agent Skills standard, so they work across Claude Code, GitHub Copilot, Cursor, Cline, and roughly eighteen other tools.
The interesting bit
The project treats domain expertise like a software dependency: versioned, discoverable via a .well-known URI spec, and packaged for one-shot installation. Supabase auto-publishes a release index to supabase.com/.well-known/agent-skills/ so agents can theoretically fetch the latest knowledge without manual updates. It is essentially a package manager for prompts—elegant if you are tired of repeating yourself to an LLM.
Key highlights
- Two skills currently: a comprehensive Supabase development guide and a Postgres best-practices pack prioritized by impact (query performance, connection management, RLS, etc.).
- Compatible with 18+ agents including Claude Code, Copilot, Cursor, and Cline via the Agent Skills open standard.
- Each skill is a folder containing a
SKILL.mdmanifest and optional reference docs—no complex runtime, just structured context. - Releases are automated with Release Please and publish a
dist/index.jsonconforming to the.well-knownagent-skills discovery spec. - Skills activate automatically once installed; the agent detects relevant tasks like schema optimization or auth troubleshooting.
Caveats
- The catalog is still narrow: only two skills are available at the moment.
- The custom release-build script is slated to be replaced by an official GitHub Action that has not yet been transferred to the
agentskillsorg or published to the Marketplace. - The README explains how to install the skills but stays vague on how they actually modify agent behavior under the hood.
Verdict
Worth a look if you spend your day correcting an AI agent’s Supabase assumptions and want curated, versioned expertise instead of ad-hoc prompting. Skip it if you were hoping for a TypeScript SDK—this repo is structured knowledge, not executable code.
Frequently asked
- What is supabase/agent-skills?
- Curated instruction packs that teach AI agents to handle Supabase and Postgres correctly.
- Is agent-skills open source?
- Yes — supabase/agent-skills is open source, released under the MIT license.
- What language is agent-skills written in?
- supabase/agent-skills is primarily written in TypeScript.
- How popular is agent-skills?
- supabase/agent-skills has 2.6k stars on GitHub.
- Where can I find agent-skills?
- supabase/agent-skills is on GitHub at https://github.com/supabase/agent-skills.