Convex Skills for Agents
npx skills add https://github.com/get-convex/agent-skills --skill convex-setup-authInstala esta habilidad con la CLI y comienza a usar el flujo de trabajo SKILL.md en tu espacio de trabajo.
Agent skills for common Convex workflows.
# Choose which skills you want
npx skills add get-convex/agent-skills
# OR Install all skills
npx skills add get-convex/agent-skills --all
Skills are applied automatically when the agent determines they're relevant. How
you manually invoke them depends on your tool:
| Tool | Manual invocation |
|---|---|
| Cursor | /skill-name |
| VS Code (GitHub Copilot) | /skill-name |
| Claude Code | /skill-name |
| Windsurf | @skill-name |
| Codex (OpenAI) | $skill-name |
For example, to kick off auth setup in Cursor or Claude Code:
/convex-setup-auth
In Windsurf:
@convex-setup-auth
convex - Top-level entry point for Convex work. Recommends installing Convex AI files, then routes to a more specific Convex skill.convex-quickstart - Start a new Convex project or add Convex to an existing app.convex-setup-auth - Set up authentication for a Convex app.convex-create-component - Build a reusable Convex component with clear boundaries.convex-migration-helper - Plan and run Convex migrations safely.convex-performance-audit - Investigate Convex performance problems and bottlenecks.Skills in this repo should be laser-focused on a specific task or workflow.
A good skill helps an agent take action, for example:
A skill should not exist just to provide generic background information. If content is mostly reference material, it should usually live in documentation, not as a standalone skill.
Reference material is still useful inside a skill, but only when it helps the agent complete a concrete task.
Before contributing, review the core Agent Skills docs:
If your skill bundles scripts, also read Using scripts in skills.
Install dependencies once with npm install, then use:
npm run format to rewrite filesnpm run format-check to verify formatting before opening a PRValidate skills by trying to use them in a realistic temp project, not just by reading them.
For a more rigorous approach, use Anthropic's skill-creator skill. It provides a structured loop for testing and iterating on skills:
It also includes a description optimizer that tunes the skill's frontmatter description for better triggering accuracy across different phrasings.
Install it in Claude Code:
/install-skill https://github.com/anthropics/skills/tree/main/skills/skill-creator
This is especially useful when a skill is complex enough that reading it alone won't tell you if it actually works well in practice.
Each skill follows the Agent Skills open standard:
skills/ with the skill nameSKILL.md file with YAML frontmatter:---
name: skill-name
description: Brief description
---
README.md whenever skills are added, removed, renamed, or substantially repositioned