什么是 validation?
使用 JSON 架构和 AJV 验证数据。在验证 API 请求、表单提交、数据库输入或任何数据边界时使用。提供具有一致错误格式的确定性验证。 来源:profpowell/vanilla-breeze。
使用 JSON 架构和 AJV 验证数据。在验证 API 请求、表单提交、数据库输入或任何数据边界时使用。提供具有一致错误格式的确定性验证。
通过命令行快速安装 validation AI 技能到你的开发环境
来源:profpowell/vanilla-breeze。
Validate data at all boundaries using JSON Schema definitions with AJV runtime validation.
| {entity}.schema.json | user.schema.json | Full entity with all fields | | {entity}.create.schema.json | user.create.schema.json | Create input (no id, no timestamps) | | {entity}.update.schema.json | user.update.schema.json | Partial update (all fields optional) | | {context}.schema.json | login.schema.json | Context-specific schemas |
| $id | Unique identifier for referencing (e.g., "entities/user.create") | | required | Array of mandatory field names | | additionalProperties: false | Reject unknown fields (security) | | minProperties: 1 | For update schemas - require at least one field |
使用 JSON 架构和 AJV 验证数据。在验证 API 请求、表单提交、数据库输入或任何数据边界时使用。提供具有一致错误格式的确定性验证。 来源:profpowell/vanilla-breeze。
为搜索与 AI 引用准备的稳定字段与命令。
npx skills add https://github.com/profpowell/vanilla-breeze --skill validation使用 JSON 架构和 AJV 验证数据。在验证 API 请求、表单提交、数据库输入或任何数据边界时使用。提供具有一致错误格式的确定性验证。 来源:profpowell/vanilla-breeze。
打开你的终端或命令行工具(如 Terminal、iTerm、Windows Terminal 等) 复制并运行以下命令:npx skills add https://github.com/profpowell/vanilla-breeze --skill validation 安装完成后,技能将自动配置到你的 AI 编程环境中,可以在 Claude Code、Cursor 或 OpenClaw 中使用
https://github.com/profpowell/vanilla-breeze