Getting Started

Agent Skills


Agent Skills are folders of instructions, scripts, and resources that agents can discover and use to do things more accurately and efficiently. Agents are increasingly capable, but often don't have the context they need to do real work reliably. Skills solve this by giving agents access to procedural knowledge and company-, team-, and user-specific context they can load on demand. Agents with access to a set of skills can extend their capabilities based on the task they're working on.

Installing skills#

Install all Supabase skills using the skills CLI:

1
npx skills add supabase/agent-skills

To install a specific skill from the repository:

1
npx skills add supabase/agent-skills --skill SKILL_NAME

Claude Code plugin#

You can also install the skills as Claude Code plugins:

1
/plugin marketplace add supabase/agent-skills
2
/plugin install postgres-best-practices@supabase-agent-skills

Skills work with 18+ AI agents including Claude Code, GitHub Copilot, Cursor, Cline, and many others.

Available skills#

SkillDescriptionInstall command
supabase-postgres-best-practicesPostgres performance optimization and best practices from Supabase. Use this skill when writing, reviewing, or optimizing Postgres queries, schema designs, or database configurations.
npx skills add supabase/agent-skills --skill supabase-postgres-best-practices

Finding more skills#

Browse the skills.sh directory to discover skills from the community. You can also search for skills using the CLI:

1
npx skills find QUERY

Learn more#