What problem does it solve? Writing production-grade SQL Server tables by hand leads to inconsistent constraint names, missing audit columns, and non-conforming triggers that break EF Core scaffolding and complicate maintenance. This Skill standardizes table creation and legacy-table migration against a fixed set of enterprise conventions. ## Core Features & Use Cases - CREATE Mode: Generates complete CREATE TABLE scripts with standard audit columns (RowGuid, RowVersion, CreatedAt, ModifiedAt, ModifiedBy), deterministic constraint/index/trigger naming, and extended properties. - ANALYZE/MIGRATE Mode: Produces ordered migration scripts (sp_rename, ALTER TABLE, constraints, indexes, triggers) to standardize existing legacy tables. - Feature Matrix: Optional feature blocks for Soft Delete, Delete Logging, Locking, Hierarchy, Temporal tables, Full-Text search, Lookup tables, Enablement, Processing Order, and Dedupe Hash, applied via a subtraction rule. - Use Case: Ask to standardize a legacy tblCust table and receive a full migration script that renames objects to conventions, adds missing audit columns, and fixes constraints and indexes. ## Quick Start Ask the agent to create a Customer table in the dbo schema with Name and Email columns plus Soft Delete and Locking features.