Claude Skill
waynesutton/convexskills
用于构建基于Convex的生产级应用的AI代理技能与模板集合。包含查询、变更、定时任务、网络钩子及数据迁移等开发模式。
概览
仓库信息
安装这个 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
项目简介
一套用于构建基于Convex的生产级应用的AI代理技能与模板集合。提供查询、变更、定时任务、网络钩子、数据迁移等开发模式与实践方案。
AI agent skills and templates for building production ready apps with Convex. Patterns for queries, mutations, cron jobs, webhooks, migrations, and more.
要点
- AI代理技能与模板
- Convex集成模式
- 查询与变更模式
- 定时任务与网络钩子实现
- 数据库迁移解决方案
- 生产级应用结构
使用场景
- 构建基于Convex的AI驱动应用
- 实现Convex后端开发模式
- 创建生产级Convex模板
- 制定数据库迁移策略
- 设置自动化定时任务与网络钩子
- 学习Convex开发最佳实践
README 摘要
# 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