From db-sqlserver
Use when scaffolding or reviewing SQL Server project layout — SSDT project structure, migration folder conventions, seed data organization, and schema separation patterns
How this skill is triggered — by the user, by Claude, or both
Slash command
/db-sqlserver:sqlserver-project-structureThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
database/
├── database.sqlproj # SSDT project file
├── dbo/
│ ├── Tables/
│ │ ├── Orders.sql
│ │ ├── OrderItems.sql
│ │ └── Customers.sql
│ ├── Views/
│ │ └── vw_ActiveCustomers.sql
│ ├── StoredProcedures/
│ │ ├── usp_GetOrderById.sql
│ │ └── usp_CreateOrder.sql
│ ├── Functions/
│ │ └── fn_CalculateTotal.sql
│ └── Indexes/
│ ├── IX_Orders_CustomerId.sql
│ └── IX_OrderItems_OrderId.sql
├── auth/
│ ├── Tables/
│ │ ├── Users.sql
│ │ └── Roles.sql
│ └── StoredProcedures/
│ └── usp_AuthenticateUser.sql
├── Security/
│ ├── Roles/
│ │ ├── AppReadRole.sql
│ │ └── AppWriteRole.sql
│ └── RLS/
│ └── TenantPolicy.sql
├── migrations/
│ ├── V001__Create_Orders_Table.sql
│ ├── V002__Add_Customer_Email.sql
│ └── V003__Create_Auth_Schema.sql
├── seed/
│ ├── lookup/
│ │ ├── OrderStatuses.sql
│ │ └── Countries.sql
│ └── dev/
│ └── SampleOrders.sql
└── tests/
└── tSQLt/
├── OrderTests.sql
└── AuthTests.sql
migrations/ for versioned change scripts (V001, V002, ...)seed/lookup/ for reference/lookup data (always applied)seed/dev/ for development-only sample data (never in production)tests/tSQLt/ for in-database unit testsdbo for core domain, auth for authentication, audit for loggingnpx claudepluginhub gagandeepp/software-agent-teams --plugin db-sqlserverGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.