
Supabase Agent Skills
- 135 installs
- 40 repo stars
- Updated August 4, 2026
- akillness/oh-my-skills
Equip coding agents with Supabase patterns for auth, Postgres queries, RLS, storage, and edge functions during app implementation.
About
supabase-agent-skills packages Supabase-specific agent instructions for implementing authentication, relational data access, row-level security, file storage, and serverless endpoints so agents can scaffold and extend Supabase-backed applications correctly.
- Supabase auth and RLS guidance
- Postgres schema and query helpers
- Storage and edge function patterns
- Agent-oriented API recipes
- SaaS backend bootstrap
Supabase Agent Skills by the numbers
- 135 all-time installs (skills.sh)
- Ranked #2,688 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/akillness/oh-my-skills --skill supabase-agent-skillsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 135 |
|---|---|
| repo stars | ★ 40 |
| Last updated | August 4, 2026 |
| Repository | akillness/oh-my-skills ↗ |
What it does
Equip coding agents with Supabase patterns for auth, Postgres queries, RLS, storage, and edge functions during app implementation.
Files
supabase-agent-skills
Use this skill when the task involves enabling Supabase workflows for AI agents using the open-source supabase/agent-skills package.
When to use
- Install Supabase skill packs for Claude/Codex/Copilot/Cursor style agents
- Select only specific Supabase skills instead of bulk install
- Verify that skill installation succeeded before relying on generated code
- Route to direct SQL/CLI checks when skill loading is unavailable
Instructions
Step 1: Verify prerequisites
- Confirm Node.js and npm/npx are available.
- Confirm project actually uses Supabase/Postgres before installing extra skills.
node -v
npm -vStep 2: Install skill package
Use one of these paths:
# Install all Supabase skills
npx skills add supabase/agent-skills
# Install specific skill only
npx skills add supabase/agent-skills --skill supabase
npx skills add supabase/agent-skills --skill supabase-postgres-best-practicesStep 3: Optional Claude plugin path
If using Claude plugin workflow:
claude plugin marketplace add supabase/agent-skills
claude plugin install supabase@supabase-agent-skillsStep 4: Verify and smoke test
- Confirm installed skill list includes Supabase entries.
- Run one bounded task (schema introspection or query review) and inspect output quality.
- If results are weak, fall back to direct commands and SQL inspection.
Step 5: Fallback strategy
When agent skill loading is unavailable:
- Use direct Supabase CLI and SQL workflow.
- Keep migration/review steps explicit; do not rely on hidden agent assumptions.
Guardrails
- Do not run destructive SQL/migrations without explicit confirmation.
- Prefer read-only verification first (
SELECT, schema introspection, dry-run if available). - Keep credentials in environment/secret manager; never hardcode tokens in repo files.
Evidence
- direct page retrieval: https://github.com/supabase/agent-skills
- direct page retrieval: https://supabase.com/docs/guides/getting-started/ai-skills
{
"skill_name": "supabase-agent-skills",
"evals": [
{
"id": 1,
"prompt": "Supabase 기반 프로젝트에 AI 에이전트용 스킬을 붙이고 싶어. 최소 설치 명령 알려줘",
"expected_output": "The response provides `npx skills add supabase/agent-skills` and explains when to use selective install.",
"assertions": [
"Includes the exact install command for all skills",
"Mentions selective `--skill` install as an option"
]
},
{
"id": 2,
"prompt": "Claude plugin 방식으로 Supabase 스킬 쓰려면?",
"expected_output": "The response includes marketplace add and plugin install commands.",
"assertions": [
"Mentions `claude plugin marketplace add supabase/agent-skills`",
"Mentions explicit plugin install command"
]
},
{
"id": 3,
"prompt": "스킬 로딩이 안 돼. 그냥 DB 작업 진행해도 될까?",
"expected_output": "The response recommends fallback to direct CLI/SQL with read-first safety checks.",
"assertions": [
"Recommends direct Supabase CLI or SQL fallback",
"Includes a safety guard against destructive operations"
]
}
]
}
N:supabase-agent-skills
D:[supabase-agent-skills] Install and use Supabase Agent Skills from supabase/agent-skills for AI coding agents. Covers full install, selective skill install, Claude plugin path, verification checks, and fallback to direct Supabase CLI and SQL workflows.
G:supabase postgres agent-skills ai-agent database backend cli
U[6]:
Install Supabase skill packs for AI coding agents
Selectively install only needed Supabase skills to reduce noise
Verify installation before relying on generated database changes
Use Claude plugin installation path when plugin workflow is enabled
Fall back to direct Supabase CLI and SQL checks when skill loading fails
Keep migration and credential handling safe and explicit
S[5]{n,action,details}:
1,Check prerequisites,Confirm Node and npm are available and the project actually uses Supabase or Postgres
2,Install skills,Run npx skills add supabase/agent-skills for full install or --skill for selective install
3,Plugin path optional,If Claude plugin mode is used add marketplace entry and install the plugin name explicitly
4,Verify quality,Check installed skills and run one bounded smoke task before broader use
5,Fallback safely,If agent skill loading is unavailable use direct Supabase CLI and SQL with read-first validation
R[6]:
Prefer selective skill install in mixed stacks to avoid over-broad agent behavior
Do not execute destructive migrations without explicit confirmation
Keep credential material out of repository files
Validate generated SQL or migration output with direct inspection before apply
Use direct CLI or SQL fallback when skill/plugin state is uncertain
Keep evidence links to repo and docs for reproducible onboarding
E[3]{type,command}:
Install all,npx skills add supabase/agent-skills
Install one,npx skills add supabase/agent-skills --skill supabase-postgres-best-practices
Claude plugin,claude plugin marketplace add supabase/agent-skills