convex-schema-validator
✓Defining and validating database schemas with proper typing, index configuration, optional fields, unions, and migration strategies for schema changes
Installation
SKILL.md
Define and validate database schemas in Convex with proper typing, index configuration, optional fields, unions, and strategies for schema migrations.
| v.string() | string | "hello" | | v.number() | number | 42, 3.14 | | v.boolean() | boolean | true, false | | v.null() | null | null | | v.int64() | bigint | 9007199254740993n | | v.bytes() | ArrayBuffer | Binary data | | v.id("table") | Id | Document reference | | v.array(v) | T[] | [1, 2, 3] | | v.object({}) | { ... } | { name: "..." } |
| v.optional(v) | T \| undefined | Optional field | | v.union(...) | T1 \| T2 | Multiple types | | v.literal(x) | "x" | Exact value | | v.any() | any | Any value | | v.record(k, v) | Record | Dynamic keys |
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/waynesutton/convexskills --skill convex-schema-validator- Source
- waynesutton/convexskills
- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is convex-schema-validator?
Defining and validating database schemas with proper typing, index configuration, optional fields, unions, and migration strategies for schema changes Source: waynesutton/convexskills.
How do I install convex-schema-validator?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/waynesutton/convexskills --skill convex-schema-validator Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/waynesutton/convexskills
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01