What problem does it solve? Writing and testing MS SQL Server scripts for Windmill requires knowing the correct parameter syntax, CLI commands, and deployment workflow, which this Skill provides so scripts run correctly the first time. ## Core Features & Use Cases - MSSQL Parameter Syntax: Declares named script arguments using @P1, @P2 placeholders with typed comments like -- @P1 name1 (varchar). - CLI Workflow Guidance: Distinguishes wmill script preview for local iteration from wmill script run for deployed scripts and wmill sync push for explicit deployment. - S3 Integration: Receives S3Object parameters decoded via OPENJSON and streams large query results to S3 with the -- s3 directive in JSON, Parquet, or CSV format. - Use Case: Write a query filtering users by name and age, preview it locally with sample arguments, then deploy it to the workspace only after validation. ## Quick Start Write a Windmill MSSQL script that selects users by name and age, then preview it locally with sample arguments.