什麼是 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