返回 Skill 列表
extension
分类: 开发与工程无需 API Key

validating-database-integrity

该技能利用数据验证引擎插件来确保数据库完整性。它会自动验证数据类型、范围、格式、引用完整性以及业务规则。当您需要实现数据验证、强制约束或提高数据库中的数据质量时,请使用此技能。它可以通过“数据验证”、“数据库完整性”或“验证规则”的请求触发。该插件支持多数据库环境和生产就绪的实现。

person作者: jakexiaohubgithub

Overview

This skill empowers Claude to implement comprehensive data validation at both the database and application levels, ensuring data integrity and adherence to defined rules. It leverages the data-validation-engine plugin to automate the process of defining and enforcing validation rules.

How It Works

  1. Rule Definition: Claude analyzes the request and identifies the specific data validation requirements (e.g., data types, ranges, formats).
  2. Validation Implementation: Claude uses the data-validation-engine plugin to generate and apply the necessary validation rules to the database schema or application logic.
  3. Verification: Claude confirms the successful implementation of the validation rules and reports any errors or conflicts.

When to Use This Skill

This skill activates when you need to:

  • Implement data validation for a new database schema.
  • Enforce data integrity constraints on existing database tables.
  • Validate data input within an application to prevent invalid data from being stored.

Examples

Example 1: Implementing Data Type Validation

User request: "Implement data validation to ensure the 'age' column in the 'users' table is an integer."

The skill will:

  1. Use the data-validation-engine plugin to add a constraint to the 'users' table, enforcing that the 'age' column must contain integer values.
  2. Verify that the constraint is active and prevents non-integer values from being inserted into the 'age' column.

Example 2: Validating Email Format

User request: "Add data validation to ensure the 'email' column in the 'customers' table contains a valid email address format."

The skill will:

  1. Use the data-validation-engine plugin to add a constraint to the 'customers' table, using a regular expression to validate the format of the 'email' column.
  2. Test the constraint with valid and invalid email addresses to ensure it functions correctly.

Best Practices

  • Comprehensive Coverage: Validate all relevant data points to ensure complete data integrity.
  • Clear Error Messages: Provide informative error messages to users when validation fails, guiding them to correct the data.
  • Regular Review: Periodically review and update validation rules to reflect changing business requirements.

Integration

This skill integrates seamlessly with other database management and application development tools within the Claude Code ecosystem. It can be used in conjunction with schema design tools, data migration utilities, and application frameworks to ensure data integrity throughout the entire development lifecycle.