Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete)....
npx skills add rominirani/antigravity-skills --skill "database-schema-validator"
Install specific skill from multi-skill repository
β Awesome Collections
This skill is featured in:
# Description
Validates SQL schema files for compliance with internal safety and naming policies.
# SKILL.md
name: database-schema-validator
description: Validates SQL schema files for compliance with internal safety and naming policies.
Database Schema Validator Skill
This skill ensures that all SQL files provided by the user comply with our strict database standards.
Policies Enforced
- Safety: No
DROP TABLEstatements. - Naming: All tables must use
snake_case. - Structure: Every table must have an
idcolumn as PRIMARY KEY.
Instructions
- Do not read the file manually to check for errors. The rules are complex and easily missed by eye.
- Run the Validation Script:
Use therun_commandtool to execute the python script provided in thescripts/folder against the user's file.
bash
python scripts/validate_schema.py <path_to_user_file>
- Interpret Output:
- If the script returns exit code 0: Tell the user the schema looks good.
- If the script returns exit code 1: Report the specific error messages printed by the script to the user and suggest fixes.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.