Agent Skills: Microsoft SQL Server (MSSQL)

MUST use when writing MS SQL Server queries.

UncategorizedID: windmill-labs/windmill/write-script-mssql

Repository

windmill-labsLicense: NOASSERTION
16,266927

Install this agent skill to your local

pnpm dlx add-skill https://github.com/windmill-labs/windmill/tree/HEAD/system_prompts/auto-generated/skills/write-script-mssql

Skill Files

Browse the full folder contents for write-script-mssql.

Download Skill

Loading file tree…

system_prompts/auto-generated/skills/write-script-mssql/SKILL.md

Skill Metadata

Name
write-script-mssql
Description
MUST use when writing MS SQL Server queries.

CLI Commands

Place scripts in a folder. After writing, tell the user they can run:

  • wmill generate-metadata - Generate .script.yaml and .lock files
  • wmill sync push - Deploy to Windmill

Do NOT run these commands yourself. Instead, inform the user that they should run them.

Use wmill resource-type list --schema to discover available resource types.

Microsoft SQL Server (MSSQL)

Arguments use @P1, @P2, etc.

Name the parameters by adding comments before the statement:

-- @P1 name1 (varchar)
-- @P2 name2 (int) = 0
SELECT * FROM users WHERE name = @P1 AND age > @P2;