What problem does it solve? Writing C# scripts for the Windmill platform requires following specific conventions—a public static Main method, #r nuget directives for dependencies—and knowing which wmill CLI command to use for previewing versus deploying. This Skill encodes those rules so generated scripts run correctly on the first attempt. ## Core Features & Use Cases - C# Script Authoring: Generates Windmill-compatible C# scripts with a public static Main method inside a class, with correct parameter and return type conventions. - NuGet Package Integration: Adds third-party libraries via #r "nuget: PackageName, Version" directives at the top of the script. - CLI Workflow Guidance: Distinguishes between wmill script preview for local iteration, wmill script run for deployed scripts, and wmill sync push for explicit deployments. - Use Case: A developer asks for a C# script that calls a REST API using RestSharp and parses the JSON response with Newtonsoft.Json; the Skill produces a valid script and offers to preview it with sample arguments. ## Quick Start Write a C# script that fetches data from a REST API using RestSharp and preview it with sample arguments.