prisma-cli-validate
prisma validate. Reference when using this Prisma feature.
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
--- name: "prisma-cli-validate" description: "prisma validate. Reference when using this Prisma feature." license: "MIT" --- # prisma validate Validates your Prisma schema file. ## Command ```bash prisma validate [options] ``` ## What It Does - Parses the `schema.prisma` file - Checks for syntax errors - Validates model definitions, relations, and types - Reports any errors or warnings without generating code ## Options | Option | Description | |--------|-------------| | `--schema` | Path to schema file | | `--config` | Custom path to your Prisma config file | ## Examples ### Validate default schema ```bash prisma validate ``` ### Validate specific schema ```bash prisma validate --schema=./custom/schema.prisma ``` ### Use in CI Run `validate` in your CI pipeline to catch schema errors early: ```yaml - name: Validate Schema run: npx prisma validate ``` ## Common Errors - Missing `@relation` fields - Invalid types - Duplicate model names - Syntax errors (missing braces, etc.)
More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

