Claude Skill
waynesutton/convexskills
Collection of AI agent skills and templates for building production-ready applications with Convex. Includes patterns for queries, mutations, cron jobs, webhooks, and migrations.
Overview
Repository
Install this Skill
npm install -g @waynesutton/convex-skillsRegistry
npm install -g @waynesutton/convex-skillsnpx @waynesutton/convex-skills listnpx @waynesutton/convex-skills install-allnpm install @waynesutton/convex-skillsgit clone https://github.com/waynesutton/convexskills.git
Summary
A collection of AI agent skills and templates for building production-ready applications with Convex. Provides patterns for queries, mutations, cron jobs, webhooks, migrations, and other development practices.
AI代理技能与模板,用于构建基于Convex的生产级应用。涵盖查询、变更、定时任务、网络钩子、数据迁移等开发模式与实践方案。
Key features
- AI agent skills and templates
- Convex integration patterns
- Query and mutation patterns
- Cron job and webhook implementations
- Database migration solutions
- Production-ready application structures
Use cases
- Building AI-powered applications with Convex
- Implementing backend patterns for Convex
- Creating production-ready Convex templates
- Developing database migration strategies
- Setting up automated cron jobs and webhooks
- Learning Convex development best practices
README excerpt
# For official Convex Skills use Convex Agent Plugins Official Convex plugins for AI coding agents, providing development tools for building reactive backends with TypeScript. https://github.com/get-convex/convex-agent-plugins ## Convex (unofficial) Skills [](https://www.npmjs.com/package/@waynesutton/convex-skills) [](LICENSE) A collection of AI-consumable skills for building production-ready applications with [Convex](https://convex.dev), following the Agent Skills open format. ## Overview This repository contains skills that help AI assistants understand and implement Convex best practices. Each skill provides structured guidance for specific aspects of Convex development. ## Code Quality All skills are designed to produce code that passes @convex-dev/eslint-plugin by default. This creates a complementary workflow: - **Skills** prevent mistakes at generation time - **ESLint** catches anything that slips through at build time See the Code Quality section in [convex-best-practices](/skills/convex-best-practices/SKILL.md) for setup instructions. ## Installation ### npm (recommended) ```bash # Install globally for CLI access npm install -g @waynesutton/convex-skills # List available skills convex-skills list # Install a specific skill to your project convex-skills install convex-best-practices # Install all skills convex-skills install-all # Install all skills to .agents/skills convex-skills install-all --target agents # Symlink SKILL.md files instead of copying convex-skills install-all --target agents --link # Install templates (CLAUDE.md + skill templates) convex-skills install-templates ``` Or use npx w