What problem does it solve? Writing utility scripts from scratch involves repetitive boilerplate: help documentation, parameter validation, error handling, tests, and usage examples. This Skill automates that scaffolding so every script follows consistent language-specific standards and ships with tests by default. ## Core Features & Use Cases - Multi-language script generation: Creates scripts in PowerShell 7+ (default), Python, Bash, or Perl with proper shebangs, error handling, and cross-platform path handling. - Automatic test scaffolding: Generates Pester, pytest, or bats-core test files with happy-path, edge-case, and error-handling coverage. - Documentation and examples: Produces comment-based help, usage examples, output format schemas, and troubleshooting sections for scripts with external dependencies. - Use Case: Ask for a script that analyzes git commits, and receive a complete package: the script file, a test suite, an examples directory with runnable demos, and a README documenting parameters and output format. ## Quick Start Ask the assistant to create a new utility script for your task, for example by saying you want a script that validates JSON files in a directory, and let it propose a name, language, and tests.