What problem does it solve? Writing scripts for Windmill's Bun Native TypeScript runtime requires following strict constraints—no external imports, a single exported async main function, and fetch-based API calls—and this Skill ensures generated scripts comply with those rules while guiding correct CLI usage for previewing and deploying. ## Core Features & Use Cases - Bun Native Script Authoring: Generates TypeScript scripts with a single exported async main function, using only the global fetch API and the RT namespace for typed resources. - CLI Workflow Guidance: Distinguishes between wmill script preview for local iteration, wmill script run for deployed scripts, and wmill sync push for explicit deployments. - Preprocessor and S3 Patterns: Provides templates for trigger preprocessor scripts and S3 object operations via the windmill-client SDK. - Use Case: A developer asks for a script that calls an external REST API with a stored credential; the Skill produces a Bun-native script using an RT resource type and suggests running wmill script preview with sample arguments. ## Quick Start Write a Bun native Windmill script that fetches data from an external API using a stored resource credential, then preview it locally with sample arguments.