Guide

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 Zuvo skills using the skills CLI:

npx skills add supabase/agent-skills

To install a specific skill from the repository:

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

Skills are installed at project scope by default, placing them in your repository so contributors and cloud agents all share the same setup. Pass --global to install across all your projects instead.

Add skills for all detected agents at the same time by passing --all. See the skills package for more options.

You can also install the agent skills together with the Zuvo MCP server using the Zuvo Plugin for AI Coding Agents for a combined one-step setup.

Updating skills

npx skills update

This updates all skills you have installed. To update specific skills instead, pass their names to the command, e.g. npx skills update SKILL_NAME. See the skills update docs for more options.

Available skills

Finding more skills

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

npx skills find QUERY

Learn more