windmill-labs / write-script-mssql
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/write-script-mssql && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/1893" && unzip -o skill.zip -d .claude/skills/write-script-mssql && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/write-script-mssql/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
MUST use when writing MS SQL Server queries.
0 views
0 installs
Skill Content
--- name: write-script-mssql description: MUST use when writing MS SQL Server queries. --- ## CLI Commands Place scripts in a folder. After writing, run: - `wmill script generate-metadata` - Generate .script.yaml and .lock files - `wmill sync push` - Deploy to Windmill 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: ```sql -- @P1 name1 (varchar) -- @P2 name2 (int) = 0 SELECT * FROM users WHERE name = @P1 AND age > @P2; ```